From 26fe0292c47b6ec712b046998b0263bae3f7f681 Mon Sep 17 00:00:00 2001 From: juliangiebel Date: Thu, 23 Jan 2025 01:16:07 +0100 Subject: [PATCH 001/155] Update da packages --- Directory.Packages.props | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index eee8c65f9a..69b5ad1945 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -6,14 +6,16 @@ --> - - + - - - + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + - + \ No newline at end of file From 3668e55ebf450d1d3902a89537538f92045cd8d9 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 16 Feb 2025 15:12:54 +1100 Subject: [PATCH 002/155] Update submodule to 245.1.0 (#35198) Reh --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 55571ef5b1..bcb5c2d35d 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 55571ef5b131dfa6f00a38e71a356ded34ca5911 +Subproject commit bcb5c2d35d9e3597650337ae9cef3d1aff9ddd27 From bc3517f84847763587cf9443eb331d2d5108c0d2 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 17 Feb 2025 02:35:24 +1100 Subject: [PATCH 003/155] Uncomment blur (#35213) Was used for debug but stable now. --- Content.Client/Light/BeforeLightTargetOverlay.cs | 2 +- Content.Client/Light/LightBlurOverlay.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/Light/BeforeLightTargetOverlay.cs b/Content.Client/Light/BeforeLightTargetOverlay.cs index add172c6f3..8f1bd0e527 100644 --- a/Content.Client/Light/BeforeLightTargetOverlay.cs +++ b/Content.Client/Light/BeforeLightTargetOverlay.cs @@ -19,7 +19,7 @@ public sealed class BeforeLightTargetOverlay : Overlay /// /// In metres /// - private float _skirting = 1.5f; + private float _skirting = 2f; public const int ContentZIndex = -10; diff --git a/Content.Client/Light/LightBlurOverlay.cs b/Content.Client/Light/LightBlurOverlay.cs index 684f5a9452..4ce80946aa 100644 --- a/Content.Client/Light/LightBlurOverlay.cs +++ b/Content.Client/Light/LightBlurOverlay.cs @@ -39,6 +39,6 @@ public sealed class LightBlurOverlay : Overlay var target = beforeOverlay.EnlargedLightTarget; // Yeah that's all this does keep walkin. - //_clyde.BlurRenderTarget(args.Viewport, target, _blurTarget, args.Viewport.Eye, 14f * 2f); + _clyde.BlurRenderTarget(args.Viewport, target, _blurTarget, args.Viewport.Eye, 14f * 5f); } } From 7eebb96e1e5498fefc5ae91b99998ec24e8d308f Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 16 Feb 2025 15:36:31 +0000 Subject: [PATCH 004/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 82ee42fc6f..62233d077e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: BramvanZijp - changes: - - message: The Engineering Cyborg's Advanced Tool Module now has jaws of life and - a power drill instead of an omnitool, with a multitool replacing the network - configurator. - type: Tweak - id: 7460 - time: '2024-09-30T17:38:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32487 - author: pofitlo-Git changes: - message: Added a camera bug in the syndicate uplink that cost 4 TC and allow you @@ -3901,3 +3892,10 @@ id: 7959 time: '2025-02-16T13:29:03.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35207 +- author: metalgearsloth + changes: + - message: Re-enable blur for rooves and increase amount of blur. + type: Tweak + id: 7960 + time: '2025-02-16T15:35:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35213 From 1984235f0f1dfc31652e6a2ed982c8d74e318482 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 17 Feb 2025 02:55:41 +1100 Subject: [PATCH 005/155] Ignore weather on rooved tiles (#35214) Might want more flexibility in future but weather needs some polish and this is fine for now. --- Content.Shared/Weather/SharedWeatherSystem.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Shared/Weather/SharedWeatherSystem.cs b/Content.Shared/Weather/SharedWeatherSystem.cs index acd4305538..ca870afc9e 100644 --- a/Content.Shared/Weather/SharedWeatherSystem.cs +++ b/Content.Shared/Weather/SharedWeatherSystem.cs @@ -43,6 +43,9 @@ public abstract class SharedWeatherSystem : EntitySystem if (tileRef.Tile.IsEmpty) return true; + if ((tileRef.Tile.Flags & (byte) TileFlag.Roof) == (byte) TileFlag.Roof) + return false; + var tileDef = (ContentTileDefinition) _tileDefManager[tileRef.Tile.TypeId]; if (!tileDef.Weather) From 4f148710450101c8d9404e8b3056e7e8d9dbc673 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 16 Feb 2025 15:56:47 +0000 Subject: [PATCH 006/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 62233d077e..65f2954bfc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: pofitlo-Git - changes: - - message: Added a camera bug in the syndicate uplink that cost 4 TC and allow you - watch all cameras on station. - type: Add - id: 7461 - time: '2024-09-30T22:24:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30250 - author: kosticia changes: - message: The maximum number of ID cards required to complete a thief's objective @@ -3899,3 +3891,10 @@ id: 7960 time: '2025-02-16T15:35:24.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35213 +- author: metalgearsloth + changes: + - message: Rooves now block weather. + type: Tweak + id: 7961 + time: '2025-02-16T15:55:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35214 From ca9479fe697a3bd0877111383bb5faca9c5ba4fd Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 17 Feb 2025 03:14:04 +1100 Subject: [PATCH 007/155] Fix hitscan visuals (#34515) * Fix hitscan visuals * remove unnecessary changes * rename `mapDirection` --- .../Weapons/Ranged/Systems/GunSystem.cs | 16 ++++++++++++-- .../Weapons/Ranged/Systems/GunSystem.cs | 22 +++++++++---------- 2 files changed, 25 insertions(+), 13 deletions(-) diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs index 0ad22bf1d8..e9b20bc874 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs @@ -37,6 +37,7 @@ public sealed partial class GunSystem : SharedGunSystem [Dependency] private readonly InputSystem _inputSystem = default!; [Dependency] private readonly SharedCameraRecoilSystem _recoil = default!; [Dependency] private readonly SharedMapSystem _maps = default!; + [Dependency] private readonly SharedTransformSystem _xform = default!; [ValidatePrototypeId] public const string HitscanProto = "HitscanEffect"; @@ -102,6 +103,13 @@ public sealed partial class GunSystem : SharedGunSystem private void OnHitscan(HitscanEvent ev) { // ALL I WANT IS AN ANIMATED EFFECT + + // TODO EFFECTS + // This is very jank + // because the effect consists of three unrelatd entities, the hitscan beam can be split appart. + // E.g., if a grid rotates while part of the beam is parented to the grid, and part of it is parented to the map. + // Ideally, there should only be one entity, with one sprite that has multiple layers + // Or at the very least, have the other entities parented to the same entity to make sure they stick together. foreach (var a in ev.Sprites) { if (a.Sprite is not SpriteSpecifier.Rsi rsi) @@ -109,13 +117,17 @@ public sealed partial class GunSystem : SharedGunSystem var coords = GetCoordinates(a.coordinates); - if (Deleted(coords.EntityId)) + if (!TryComp(coords.EntityId, out TransformComponent? relativeXform)) continue; var ent = Spawn(HitscanProto, coords); var sprite = Comp(ent); + var xform = Transform(ent); - xform.LocalRotation = a.angle; + var targetWorldRot = a.angle + _xform.GetWorldRotation(relativeXform); + var delta = targetWorldRot - _xform.GetWorldRotation(xform); + _xform.SetLocalRotationNoLerp(ent, xform.LocalRotation + delta, xform); + sprite[EffectLayers.Unshaded].AutoAnimated = false; sprite.LayerSetSprite(EffectLayers.Unshaded, rsi); sprite.LayerSetState(EffectLayers.Unshaded, rsi.RsiState); diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index d22b5ec2af..fe0447c4c7 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -390,29 +390,29 @@ public sealed partial class GunSystem : SharedGunSystem // TODO: Pseudo RNG so the client can predict these. #region Hitscan effects - private void FireEffects(EntityCoordinates fromCoordinates, float distance, Angle mapDirection, HitscanPrototype hitscan, EntityUid? hitEntity = null) + private void FireEffects(EntityCoordinates fromCoordinates, float distance, Angle angle, HitscanPrototype hitscan, EntityUid? hitEntity = null) { // Lord // Forgive me for the shitcode I am about to do // Effects tempt me not var sprites = new List<(NetCoordinates coordinates, Angle angle, SpriteSpecifier sprite, float scale)>(); - var gridUid = fromCoordinates.GetGridUid(EntityManager); - var angle = mapDirection; + var fromXform = Transform(fromCoordinates.EntityId); // We'll get the effects relative to the grid / map of the firer // Look you could probably optimise this a bit with redundant transforms at this point. - var xformQuery = GetEntityQuery(); - if (xformQuery.TryGetComponent(gridUid, out var gridXform)) + var gridUid = fromXform.GridUid; + if (gridUid != fromCoordinates.EntityId && TryComp(gridUid, out TransformComponent? gridXform)) { - var (_, gridRot, gridInvMatrix) = TransformSystem.GetWorldPositionRotationInvMatrix(gridXform, xformQuery); - - fromCoordinates = new EntityCoordinates(gridUid.Value, - Vector2.Transform(fromCoordinates.ToMapPos(EntityManager, TransformSystem), gridInvMatrix)); - - // Use the fallback angle I guess? + var (_, gridRot, gridInvMatrix) = TransformSystem.GetWorldPositionRotationInvMatrix(gridXform); + var map = _transform.ToMapCoordinates(fromCoordinates); + fromCoordinates = new EntityCoordinates(gridUid.Value, Vector2.Transform(map.Position, gridInvMatrix)); angle -= gridRot; } + else + { + angle -= _transform.GetWorldRotation(fromXform); + } if (distance >= 1f) { From 3d5943a947e007fe874f6edb166b241f8540e105 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 16 Feb 2025 16:15:10 +0000 Subject: [PATCH 008/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 65f2954bfc..419c521b72 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: kosticia - changes: - - message: The maximum number of ID cards required to complete a thief's objective - has been changed from 15 to 10. - type: Tweak - id: 7462 - time: '2024-09-30T22:40:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32411 - author: Golinth changes: - message: Firebots can now be constructed by scientists - the bots wander the station @@ -3898,3 +3890,11 @@ id: 7961 time: '2025-02-16T15:55:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35214 +- author: n00kii + changes: + - message: Fixed laser weapon visuals being broken when shooting across grids or + into space. + type: Fix + id: 7962 + time: '2025-02-16T16:14:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34515 From 5fb60f3fd8c89d705cb8f18cdf05d65c4f1fbe1b Mon Sep 17 00:00:00 2001 From: Velken <8467292+Velken@users.noreply.github.com> Date: Sun, 16 Feb 2025 15:43:20 -0300 Subject: [PATCH 009/155] fix sync issue with paramed siren (#35203) fix sync issue with paramed siren Co-authored-by: ElectroJr --- .../Prototypes/Entities/Clothing/OuterClothing/softsuits.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml index 40f88540f2..e6b12f336d 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -146,7 +146,6 @@ radius: 2 energy: 2 color: blue - netsync: false mask: /Textures/Effects/LightMasks/double_cone.png - type: RotatingLight speed: 360 From 904c933f09d2ca1e7bb497589a47060b35f83741 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 16 Feb 2025 18:44:28 +0000 Subject: [PATCH 010/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 419c521b72..4a12a4c4d6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Golinth - changes: - - message: Firebots can now be constructed by scientists - the bots wander the station - looking for fires to put out with their built-in extinguisher. - type: Add - id: 7463 - time: '2024-10-01T03:13:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32482 - author: ScarKy0 changes: - message: Binary encryption key now uses an AI icon @@ -3898,3 +3890,10 @@ id: 7962 time: '2025-02-16T16:14:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34515 +- author: Velken + changes: + - message: ': Paramedic Siren''s light is now visible to all and not just the wearer.' + type: Fix + id: 7963 + time: '2025-02-16T18:43:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35203 From a82b234d0e6ad39e2807ca68a1386dd410bf1283 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sun, 16 Feb 2025 19:47:41 +0100 Subject: [PATCH 011/155] fix use in hand for uplink items (#35218) --- Content.Server/Store/Systems/StoreSystem.Refund.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Content.Server/Store/Systems/StoreSystem.Refund.cs b/Content.Server/Store/Systems/StoreSystem.Refund.cs index e9d801f9e1..cb92a42c10 100644 --- a/Content.Server/Store/Systems/StoreSystem.Refund.cs +++ b/Content.Server/Store/Systems/StoreSystem.Refund.cs @@ -38,7 +38,6 @@ public sealed partial class StoreSystem private void OnUseInHand(Entity ent, ref UseInHandEvent args) { - args.Handled = true; CheckDisableRefund(ent); } From a6956162b181d82b65568a94d8f95de63a5bd05e Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 16 Feb 2025 18:48:47 +0000 Subject: [PATCH 012/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4a12a4c4d6..919df0c370 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ScarKy0 - changes: - - message: Binary encryption key now uses an AI icon - type: Tweak - id: 7464 - time: '2024-10-01T04:03:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32327 - author: BramvanZijp changes: - message: Fixed borgs being able to be briefly disabled by others. @@ -3897,3 +3890,10 @@ id: 7963 time: '2025-02-16T18:43:20.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35203 +- author: slarticodefast + changes: + - message: Fixed uplink items not being able to be used in your hand. + type: Fix + id: 7964 + time: '2025-02-16T18:47:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35218 From 489876af8b0ecd2d7bccfd312d9779cf174f484a Mon Sep 17 00:00:00 2001 From: Simon <63975668+Simyon264@users.noreply.github.com> Date: Sun, 16 Feb 2025 20:06:53 +0100 Subject: [PATCH 013/155] Change `visualize` command perms to VarEdit instead of Admin (#35221) People with VarEdit can use VV but can't use visualize, makes no sense. Has headmin approval here: https://canary.discord.com/channels/310555209753690112/1193403928096821358/1340756276371787827 --- Content.Server/Toolshed/Commands/VisualizeCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Toolshed/Commands/VisualizeCommand.cs b/Content.Server/Toolshed/Commands/VisualizeCommand.cs index 41613cab86..9b0892befa 100644 --- a/Content.Server/Toolshed/Commands/VisualizeCommand.cs +++ b/Content.Server/Toolshed/Commands/VisualizeCommand.cs @@ -9,7 +9,7 @@ using Robust.Shared.Toolshed.Errors; namespace Content.Server.Toolshed.Commands; -[ToolshedCommand, AdminCommand(AdminFlags.Admin)] +[ToolshedCommand, AdminCommand(AdminFlags.VarEdit)] public sealed class VisualizeCommand : ToolshedCommand { [Dependency] private readonly EuiManager _euiManager = default!; From 7bf33ffaa9e33f962046cb95198f05bbf910b043 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Sun, 16 Feb 2025 15:29:10 -0500 Subject: [PATCH 014/155] Wizard Fix - Summon Ghost Event no longer shows Admin Ghosts or Revenants (#34994) * Prevents admin ghosts from being shown with ghost event * Changes summon ghost tooltip to permanently visible * Adds AllowGhostShownByEvent tag, adds it to regular observers, removes ghost hands check & revenant check and replaces it with a tag check. --- Content.Server/Ghost/GhostSystem.cs | 7 ++++++- Resources/Prototypes/Entities/Mobs/Player/observer.yml | 3 +++ Resources/Prototypes/Magic/event_spells.yml | 2 +- Resources/Prototypes/tags.yml | 3 +++ 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index 4220f1231e..b5e9894ee3 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -26,6 +26,7 @@ using Content.Shared.Movement.Events; using Content.Shared.Movement.Systems; using Content.Shared.Popups; using Content.Shared.Storage.Components; +using Content.Shared.Tag; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Configuration; @@ -64,6 +65,7 @@ namespace Content.Server.Ghost [Dependency] private readonly DamageableSystem _damageable = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly TagSystem _tag = default!; private EntityQuery _ghostQuery; private EntityQuery _physicsQuery; @@ -398,8 +400,11 @@ namespace Content.Server.Ghost public void MakeVisible(bool visible) { var entityQuery = EntityQueryEnumerator(); - while (entityQuery.MoveNext(out var uid, out _, out var vis)) + while (entityQuery.MoveNext(out var uid, out var _, out var vis)) { + if (!_tag.HasTag(uid, "AllowGhostShownByEvent")) + continue; + if (visible) { _visibilitySystem.AddLayer((uid, vis), (int) VisibilityFlags.Normal, false); diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 351fab6efe..7fe4fbed9b 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -73,6 +73,9 @@ id: MobObserver components: - type: Spectral + - type: Tag + tags: + - AllowGhostShownByEvent - type: entity id: ActionGhostBoo diff --git a/Resources/Prototypes/Magic/event_spells.yml b/Resources/Prototypes/Magic/event_spells.yml index 5aad8925a6..87b3a57107 100644 --- a/Resources/Prototypes/Magic/event_spells.yml +++ b/Resources/Prototypes/Magic/event_spells.yml @@ -1,7 +1,7 @@ - type: entity id: ActionSummonGhosts name: Summon Ghosts - description: Makes all current ghosts permanently invisible + description: Makes all current ghosts permanently visible components: - type: InstantAction useDelay: 120 diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 968805a7b6..958caccfe7 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -15,6 +15,9 @@ - type: Tag id: AirSensor +- type: Tag + id: AllowGhostShownByEvent + - type: Tag id: Ambrosia From 5ecb623e4567fe4b711a0d16b23da762d61a1c8a Mon Sep 17 00:00:00 2001 From: Kyle Tyo Date: Sun, 16 Feb 2025 15:35:44 -0500 Subject: [PATCH 015/155] Update ContentLocalizationManager.cs --- Content.Shared/Localizations/ContentLocalizationManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index d20d8a3134..8275ed0c40 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -148,7 +148,8 @@ namespace Content.Shared.Localizations public static string FormatPlaytime(TimeSpan time) { var hours = (int)time.TotalHours; - var minutes = (int)Math.Ceiling(time.TotalMinutes); + var rounded = (int)Math.Ceiling(time.TotalMinutes); + var minutes = rounded - hours * 60; return Loc.GetString($"zzzz-fmt-playtime", ("hours", hours), ("minutes", minutes)); } From f6fda97b7213f5fae644f8f2a5f1514aea6b9d6d Mon Sep 17 00:00:00 2001 From: Kyle Tyo Date: Sun, 16 Feb 2025 15:40:30 -0500 Subject: [PATCH 016/155] I'm gonna do something drastic I swear. --- Content.Shared/Localizations/ContentLocalizationManager.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index 8275ed0c40..c2055d0f49 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -148,8 +148,9 @@ namespace Content.Shared.Localizations public static string FormatPlaytime(TimeSpan time) { var hours = (int)time.TotalHours; - var rounded = (int)Math.Ceiling(time.TotalMinutes); - var minutes = rounded - hours * 60; + var minutes = time.Minutes; + if (hours == 0 && minutes == 0) + minutes = 1; return Loc.GetString($"zzzz-fmt-playtime", ("hours", hours), ("minutes", minutes)); } From 36281617167e56f7afcd3229b45a5ed227beebea Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sun, 16 Feb 2025 22:51:03 +0100 Subject: [PATCH 017/155] [ADMIN] Adds missing accesses to universal access config (#35229) init --- Resources/Locale/en-US/prototypes/access/accesses.ftl | 1 + Resources/Prototypes/Access/command.yml | 1 + .../Prototypes/Entities/Objects/Tools/access_configurator.yml | 2 ++ 3 files changed, 4 insertions(+) diff --git a/Resources/Locale/en-US/prototypes/access/accesses.ftl b/Resources/Locale/en-US/prototypes/access/accesses.ftl index 5e54fcad22..1f867447ef 100644 --- a/Resources/Locale/en-US/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/prototypes/access/accesses.ftl @@ -2,6 +2,7 @@ id-card-access-level-command = Command id-card-access-level-captain = Captain id-card-access-level-head-of-personnel = Head of Personnel id-card-access-level-cryogenics = Cryogenics +id-card-access-level-emergency-shuttle-repeal = E.Shuttle Repeal All id-card-access-level-head-of-security = Head of Security id-card-access-level-security = Security diff --git a/Resources/Prototypes/Access/command.yml b/Resources/Prototypes/Access/command.yml index 62193d5ffe..b74b4bb3b1 100644 --- a/Resources/Prototypes/Access/command.yml +++ b/Resources/Prototypes/Access/command.yml @@ -20,6 +20,7 @@ - type: accessLevel id: EmergencyShuttleRepealAll + name: id-card-access-level-emergency-shuttle-repeal - type: accessLevel id: Cryogenics diff --git a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml index d55437696a..257ec06c91 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml @@ -99,6 +99,8 @@ - ChiefEngineer - ChiefMedicalOfficer - Command + - Cryogenics + - EmergencyShuttleRepealAll - Engineering - External - HeadOfPersonnel From 732bd20980b10d81bbc09e1964945381328370fa Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 16 Feb 2025 21:52:10 +0000 Subject: [PATCH 018/155] Automatic changelog update --- Resources/Changelog/Admin.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 180d6c03ae..fca63ed1a3 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -759,5 +759,12 @@ Entries: id: 94 time: '2025-02-13T22:03:55.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35131 +- author: ScarKy0 + changes: + - message: universal access config has additional accesses added + type: Add + id: 95 + time: '2025-02-16T21:51:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35229 Name: Admin Order: 1 From a9809229f66f74658c9f0b4bfacd08dadfeeeffb Mon Sep 17 00:00:00 2001 From: PicklOH <62030853+semensponge@users.noreply.github.com> Date: Sun, 16 Feb 2025 17:30:46 -0500 Subject: [PATCH 019/155] Replaced Bulldog beanbag drum with lethals drum (#34945) * Replaced Bulldog beanbag drum with lethals drum * Update Resources/Locale/en-US/store/uplink-catalog.ftl Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> * Update duffelbag.yml bulldog bundle description. --------- Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> --- Resources/Locale/en-US/store/uplink-catalog.ftl | 2 +- Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 2ff6c16f5a..4d618d45dc 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -238,7 +238,7 @@ uplink-c20r-bundle-name = C-20r Bundle uplink-c20r-bundle-desc = Old faithful: The classic C-20r Submachine Gun, bundled with three magazines. uplink-buldog-bundle-name = Bulldog Bundle -uplink-buldog-bundle-desc = Lean and mean: Contains the popular Bulldog Shotgun, a 12g beanbag drum and three 12g buckshot drums. +uplink-buldog-bundle-desc = Lean and mean: Contains the popular Bulldog Shotgun and four 12g buckshot drums. uplink-grenade-launcher-bundle-name = China-Lake Bundle uplink-grenade-launcher-bundle-desc = An old China-Lake grenade launcher bundled with 11 rounds of varying destructive capability. diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index 0b7025afb8..4db627bdae 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -34,14 +34,14 @@ parent: ClothingBackpackDuffelSyndicateBundle id: ClothingBackpackDuffelSyndicateFilledShotgun name: Bulldog bundle - description: "Lean and mean: Contains the popular Bulldog Shotgun, a 12g beanbag drum and 3 12g buckshot drums." #, and a pair of Thermal Imaging Goggles. + description: "Lean and mean: Contains the popular Bulldog Shotgun and four 12g buckshot drums." #, and a pair of Thermal Imaging Goggles. components: - type: StorageFill contents: - id: WeaponShotgunBulldog - id: MagazineShotgun - id: MagazineShotgun - - id: MagazineShotgunBeanbag + - id: MagazineShotgun # - id: ThermalImagingGoggles - type: entity From a7bebeffb3d6cb1166da6c8dc98619a50d3ce56c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 16 Feb 2025 22:31:52 +0000 Subject: [PATCH 020/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 919df0c370..170ba55e6b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: BramvanZijp - changes: - - message: Fixed borgs being able to be briefly disabled by others. - type: Fix - id: 7465 - time: '2024-10-01T15:13:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32485 - author: BackeTako changes: - message: Gay Pin @@ -3897,3 +3890,12 @@ id: 7964 time: '2025-02-16T18:47:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35218 +- author: PicklOH + changes: + - message: Added a lethals drum to the Bulldog bundle. + type: Add + - message: Removed a beanbag drum from the Bulldog bundle. + type: Remove + id: 7965 + time: '2025-02-16T22:30:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34945 From 04c88e86b322308eb7cd9d04828a0ad753c93ea4 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Sun, 16 Feb 2025 19:29:30 -0500 Subject: [PATCH 021/155] Fix debug assert in ScoopableSolution (#35225) * Fix debug assert in ScoopableSolution * Don't stomp the old Handled value --- .../Chemistry/EntitySystems/ScoopableSolutionSystem.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Chemistry/EntitySystems/ScoopableSolutionSystem.cs b/Content.Shared/Chemistry/EntitySystems/ScoopableSolutionSystem.cs index 84f1e45616..86f9ffa390 100644 --- a/Content.Shared/Chemistry/EntitySystems/ScoopableSolutionSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/ScoopableSolutionSystem.cs @@ -24,7 +24,10 @@ public sealed class ScoopableSolutionSystem : EntitySystem private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) { - TryScoop(ent, args.Used, args.User); + if (args.Handled) + return; + + args.Handled = TryScoop(ent, args.Used, args.User); } public bool TryScoop(Entity ent, EntityUid beaker, EntityUid user) From 0fbacd7dcbe9bb9c678d4e6611f3291501dac74f Mon Sep 17 00:00:00 2001 From: Kyle Tyo Date: Sun, 16 Feb 2025 23:06:28 -0500 Subject: [PATCH 022/155] Update ContentLocalizationManager.cs --- Content.Shared/Localizations/ContentLocalizationManager.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index c2055d0f49..0ff4352ef5 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -147,10 +147,9 @@ namespace Content.Shared.Localizations /// public static string FormatPlaytime(TimeSpan time) { + time = TimeSpan.FromSeconds(Math.Ceiling(time.TotalSeconds)); var hours = (int)time.TotalHours; var minutes = time.Minutes; - if (hours == 0 && minutes == 0) - minutes = 1; return Loc.GetString($"zzzz-fmt-playtime", ("hours", hours), ("minutes", minutes)); } From 1c05108ce116b77044c172db534485c52da414f7 Mon Sep 17 00:00:00 2001 From: psykana <36602558+psykana@users.noreply.github.com> Date: Mon, 17 Feb 2025 06:16:54 +0000 Subject: [PATCH 023/155] ConfirmableAction for DNA Scrambler implant (#35232) --- Resources/Locale/en-US/actions/actions/dna-scrambler.ftl | 1 + Resources/Prototypes/Actions/types.yml | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 Resources/Locale/en-US/actions/actions/dna-scrambler.ftl diff --git a/Resources/Locale/en-US/actions/actions/dna-scrambler.ftl b/Resources/Locale/en-US/actions/actions/dna-scrambler.ftl new file mode 100644 index 0000000000..3b4fb17ab3 --- /dev/null +++ b/Resources/Locale/en-US/actions/actions/dna-scrambler.ftl @@ -0,0 +1 @@ +dna-scrambler-action-popup = THIS ACTION WILL IRREVERSIBLY CHANGE YOUR APPEARANCE! Use it again to confirm. diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index cfff380380..aa378d8861 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -153,6 +153,8 @@ name: Scramble DNA description: Randomly changes your name and appearance. components: + - type: ConfirmableAction + popup: dna-scrambler-action-popup - type: InstantAction charges: 1 itemIconStyle: BigAction From b55ef7dd56525ea09297db3489a3720bf3be72b8 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 17 Feb 2025 06:18:03 +0000 Subject: [PATCH 024/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 170ba55e6b..840024caa0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: BackeTako - changes: - - message: Gay Pin - type: Add - id: 7466 - time: '2024-10-01T21:07:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32584 - author: BackeTako changes: - message: Reinforced walls sprite see throu top @@ -3899,3 +3892,10 @@ id: 7965 time: '2025-02-16T22:30:46.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34945 +- author: psykana + changes: + - message: DNA Scrambler implant now requires confirmation to activate + type: Add + id: 7966 + time: '2025-02-17T06:16:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35232 From 1d360956a78512be0a3cebd215c7bdc35591aed3 Mon Sep 17 00:00:00 2001 From: Kyle Tyo Date: Mon, 17 Feb 2025 01:58:40 -0500 Subject: [PATCH 025/155] made requested changes. --- Content.Shared/Localizations/ContentLocalizationManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index 0ff4352ef5..8ed2ef086f 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -147,7 +147,7 @@ namespace Content.Shared.Localizations /// public static string FormatPlaytime(TimeSpan time) { - time = TimeSpan.FromSeconds(Math.Ceiling(time.TotalSeconds)); + time = TimeSpan.FromMinutes(Math.Ceiling(time.TotalMinutes)); var hours = (int)time.TotalHours; var minutes = time.Minutes; return Loc.GetString($"zzzz-fmt-playtime", ("hours", hours), ("minutes", minutes)); From cf38814515e22afe6b8b9352155f167fec0e20ee Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 17 Feb 2025 19:24:34 +1100 Subject: [PATCH 026/155] General storage fixes (#34845) * Fix storage stars * Fix some more storage bugs - Fix positions not saving. - Fix the 1-tick delay between parent and child storage UIs opening / closing. - Fix BackButton being visible sometimes when it shouldn't be. * milon is a furry --- Content.Client/PDA/PdaBoundUserInterface.cs | 3 +- .../Storage/StorageBoundUserInterface.cs | 27 +++++++++- .../Storage/Systems/StorageSystem.cs | 34 +++++++++++-- .../Systems/Storage/Controls/StorageWindow.cs | 51 +++++++++++++++---- .../Systems/Storage/StorageUIController.cs | 22 +++++++- .../EntitySystems/SharedStorageSystem.cs | 43 +++++++++------- 6 files changed, 143 insertions(+), 37 deletions(-) diff --git a/Content.Client/PDA/PdaBoundUserInterface.cs b/Content.Client/PDA/PdaBoundUserInterface.cs index 2d4033390c..2f7ebc37f7 100644 --- a/Content.Client/PDA/PdaBoundUserInterface.cs +++ b/Content.Client/PDA/PdaBoundUserInterface.cs @@ -30,8 +30,7 @@ namespace Content.Client.PDA private void CreateMenu() { - _menu = this.CreateWindow(); - _menu.OpenCenteredLeft(); + _menu = this.CreateWindowCenteredLeft(); _menu.FlashLightToggleButton.OnToggled += _ => { diff --git a/Content.Client/Storage/StorageBoundUserInterface.cs b/Content.Client/Storage/StorageBoundUserInterface.cs index bacc90eabf..16545c3578 100644 --- a/Content.Client/Storage/StorageBoundUserInterface.cs +++ b/Content.Client/Storage/StorageBoundUserInterface.cs @@ -1,8 +1,10 @@ +using System.Numerics; using Content.Client.UserInterface.Systems.Storage; using Content.Client.UserInterface.Systems.Storage.Controls; using Content.Shared.Storage; using JetBrains.Annotations; using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; namespace Content.Client.Storage; @@ -11,6 +13,8 @@ public sealed class StorageBoundUserInterface : BoundUserInterface { private StorageWindow? _window; + public Vector2? Position => _window?.Position; + public StorageBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -21,7 +25,7 @@ public sealed class StorageBoundUserInterface : BoundUserInterface _window = IoCManager.Resolve() .GetUIController() - .CreateStorageWindow(Owner); + .CreateStorageWindow(this); if (EntMan.TryGetComponent(Owner, out StorageComponent? storage)) { @@ -50,10 +54,20 @@ public sealed class StorageBoundUserInterface : BoundUserInterface protected override void Dispose(bool disposing) { base.Dispose(disposing); - Reclaim(); } + public void CloseWindow(Vector2 position) + { + if (_window == null) + return; + + // Update its position before potentially saving. + // Listen it makes sense okay. + LayoutContainer.SetPosition(_window, position); + _window?.Close(); + } + public void Hide() { if (_window == null) @@ -70,6 +84,15 @@ public sealed class StorageBoundUserInterface : BoundUserInterface _window.Visible = true; } + public void Show(Vector2 position) + { + if (_window == null) + return; + + Show(); + LayoutContainer.SetPosition(_window, position); + } + public void ReOpen() { _window?.Orphan(); diff --git a/Content.Client/Storage/Systems/StorageSystem.cs b/Content.Client/Storage/Systems/StorageSystem.cs index 70e02c4693..8eab2d8249 100644 --- a/Content.Client/Storage/Systems/StorageSystem.cs +++ b/Content.Client/Storage/Systems/StorageSystem.cs @@ -19,6 +19,8 @@ public sealed class StorageSystem : SharedStorageSystem private Dictionary _oldStoredItems = new(); + private List<(StorageBoundUserInterface Bui, bool Value)> _queuedBuis = new(); + public override void Initialize() { base.Initialize(); @@ -72,7 +74,7 @@ public sealed class StorageSystem : SharedStorageSystem if (NestedStorage && player != null && ContainerSystem.TryGetContainingContainer((uid, null, null), out var container) && UI.TryGetOpenUi(container.Owner, StorageComponent.StorageUiKey.Key, out var containerBui)) { - containerBui.Hide(); + _queuedBuis.Add((containerBui, false)); } } } @@ -89,7 +91,7 @@ public sealed class StorageSystem : SharedStorageSystem { if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui)) { - storageBui.Hide(); + _queuedBuis.Add((storageBui, false)); } } @@ -97,7 +99,7 @@ public sealed class StorageSystem : SharedStorageSystem { if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui)) { - storageBui.Show(); + _queuedBuis.Add((storageBui, true)); } } @@ -152,4 +154,30 @@ public sealed class StorageSystem : SharedStorageSystem } } } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + if (!_timing.IsFirstTimePredicted) + { + return; + } + + // This update loop exists just to synchronize with UISystem and avoid 1-tick delays. + // If deferred opens / closes ever get removed you can dump this. + foreach (var (bui, open) in _queuedBuis) + { + if (open) + { + bui.Show(); + } + else + { + bui.Hide(); + } + } + + _queuedBuis.Clear(); + } } diff --git a/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs index 88b4c06d72..a4afebc217 100644 --- a/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs +++ b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs @@ -9,6 +9,7 @@ using Content.Shared.IdentityManagement; using Content.Shared.Input; using Content.Shared.Item; using Content.Shared.Storage; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; @@ -190,6 +191,26 @@ public sealed class StorageWindow : BaseWindow BuildGridRepresentation(); } + private void CloseParent() + { + if (StorageEntity == null) + return; + + var containerSystem = _entity.System(); + var uiSystem = _entity.System(); + + if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && + _entity.TryGetComponent(container.Owner, out StorageComponent? storage) && + storage.Container.Contains(StorageEntity.Value) && + uiSystem + .TryGetOpenUi(container.Owner, + StorageComponent.StorageUiKey.Key, + out var parentBui)) + { + parentBui.CloseWindow(Position); + } + } + private void BuildGridRepresentation() { if (!_entity.TryGetComponent(StorageEntity, out var comp) || comp.Grid.Count == 0) @@ -212,7 +233,9 @@ public sealed class StorageWindow : BaseWindow }; exitButton.OnPressed += _ => { + // Close ourselves and all parent BUIs. Close(); + CloseParent(); }; exitButton.OnKeyBindDown += args => { @@ -220,6 +243,7 @@ public sealed class StorageWindow : BaseWindow if (!args.Handled && args.Function == ContentKeyFunctions.ActivateItemInWorld) { Close(); + CloseParent(); args.Handle(); } }; @@ -258,7 +282,8 @@ public sealed class StorageWindow : BaseWindow var containerSystem = _entity.System(); if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && - _entity.TryGetComponent(container.Owner, out StorageComponent? storage)) + _entity.TryGetComponent(container.Owner, out StorageComponent? storage) && + storage.Container.Contains(StorageEntity.Value)) { Close(); @@ -267,7 +292,7 @@ public sealed class StorageWindow : BaseWindow StorageComponent.StorageUiKey.Key, out var parentBui)) { - parentBui.Show(); + parentBui.Show(Position); } } }; @@ -412,6 +437,8 @@ public sealed class StorageWindow : BaseWindow { if (storageComp.StoredItems.TryGetValue(ent, out var updated)) { + data.Control.Marked = IsMarked(ent); + if (data.Loc.Equals(updated)) { DebugTools.Assert(data.Control.Location == updated); @@ -450,12 +477,7 @@ public sealed class StorageWindow : BaseWindow var gridPiece = new ItemGridPiece((ent, itemEntComponent), loc, _entity) { MinSize = size, - Marked = _contained.IndexOf(ent) switch - { - 0 => ItemGridPieceMarks.First, - 1 => ItemGridPieceMarks.Second, - _ => null, - } + Marked = IsMarked(ent), }; gridPiece.OnPiecePressed += OnPiecePressed; gridPiece.OnPieceUnpressed += OnPieceUnpressed; @@ -467,6 +489,16 @@ public sealed class StorageWindow : BaseWindow } } + private ItemGridPieceMarks? IsMarked(EntityUid uid) + { + return _contained.IndexOf(uid) switch + { + 0 => ItemGridPieceMarks.First, + 1 => ItemGridPieceMarks.Second, + _ => null, + }; + } + protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); @@ -486,8 +518,9 @@ public sealed class StorageWindow : BaseWindow { if (StorageEntity != null && _entity.System().NestedStorage) { + // If parent container nests us then show back button if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && - _entity.HasComponent(container.Owner)) + _entity.TryGetComponent(container.Owner, out StorageComponent? storageComp) && storageComp.Container.Contains(StorageEntity.Value)) { _backButton.Visible = true; } diff --git a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs index 5c3f047982..dbb16ab24a 100644 --- a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs +++ b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs @@ -11,6 +11,7 @@ using Content.Shared.CCVar; using Content.Shared.Input; using Content.Shared.Interaction; using Content.Shared.Storage; +using Robust.Client.GameObjects; using Robust.Client.Input; using Robust.Client.Player; using Robust.Client.UserInterface; @@ -37,6 +38,7 @@ public sealed class StorageUIController : UIController, IOnSystemChanged _menuDragHelper; @@ -107,7 +109,7 @@ public sealed class StorageUIController : UIController, IOnSystemChanged(EntityManager.GetComponent(sBui.Owner).ParentUid, + StorageComponent.StorageUiKey.Key, out var bui) && bui.Position != null) + { + window.Open(bui.Position.Value); + } + // Open at the saved position if it exists. + else if (_ui.TryGetPosition(sBui.Owner, StorageComponent.StorageUiKey.Key, out var pos)) + { + window.Open(pos); + } + // Open at the default position. + else + { + window.OpenCenteredLeft(); + } } + _ui.RegisterControl(sBui, window); return window; } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 7bf6d74c60..b6228ae779 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -318,11 +318,33 @@ public abstract class SharedStorageSystem : EntitySystem args.Verbs.Add(verb); } + public void OpenStorageUI(EntityUid uid, EntityUid actor, StorageComponent? storageComp = null, bool silent = true) + { + // Handle recursively opening nested storages. + if (ContainerSystem.TryGetContainingContainer(uid, out var container) && + UI.IsUiOpen(container.Owner, StorageComponent.StorageUiKey.Key, actor)) + { + _nestedCheck = true; + HideStorageWindow(container.Owner, actor); + OpenStorageUIInternal(uid, actor, storageComp, silent: true); + _nestedCheck = false; + } + else + { + // If you need something more sophisticated for multi-UI you'll need to code some smarter + // interactions. + if (_openStorageLimit == 1) + UI.CloseUserUis(actor); + + OpenStorageUIInternal(uid, actor, storageComp, silent: silent); + } + } + /// /// Opens the storage UI for an entity /// /// The entity to open the UI for - public void OpenStorageUI(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = true) + private void OpenStorageUIInternal(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = true) { if (!Resolve(uid, ref storageComp, false)) return; @@ -407,24 +429,7 @@ public abstract class SharedStorageSystem : EntitySystem } else { - // Handle recursively opening nested storages. - if (ContainerSystem.TryGetContainingContainer((args.Target, null, null), out var container) && - UI.IsUiOpen(container.Owner, StorageComponent.StorageUiKey.Key, args.User)) - { - _nestedCheck = true; - HideStorageWindow(container.Owner, args.User); - OpenStorageUI(uid, args.User, storageComp, silent: true); - _nestedCheck = false; - } - else - { - // If you need something more sophisticated for multi-UI you'll need to code some smarter - // interactions. - if (_openStorageLimit == 1) - UI.CloseUserUis(args.User); - - OpenStorageUI(uid, args.User, storageComp, silent: false); - } + OpenStorageUI(uid, args.User, storageComp); } args.Handled = true; From 890ad4508aefa582920174cd406d581ebed0117f Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Mon, 17 Feb 2025 09:27:39 +0100 Subject: [PATCH 027/155] Don't count lobby players for latejoin antag ratio (#35209) pass playercount to midround antag calculation --- Content.Server/Antag/AntagSelectionSystem.API.cs | 5 +++-- Content.Server/Antag/AntagSelectionSystem.cs | 5 ++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Content.Server/Antag/AntagSelectionSystem.API.cs b/Content.Server/Antag/AntagSelectionSystem.API.cs index 23e77c2102..a4cb6fd0e5 100644 --- a/Content.Server/Antag/AntagSelectionSystem.API.cs +++ b/Content.Server/Antag/AntagSelectionSystem.API.cs @@ -19,11 +19,12 @@ public sealed partial class AntagSelectionSystem /// Tries to get the next non-filled definition based on the current amount of selected minds and other factors. /// public bool TryGetNextAvailableDefinition(Entity ent, - [NotNullWhen(true)] out AntagSelectionDefinition? definition) + [NotNullWhen(true)] out AntagSelectionDefinition? definition, + int? players = null) { definition = null; - var totalTargetCount = GetTargetAntagCount(ent); + var totalTargetCount = GetTargetAntagCount(ent, players); var mindCount = ent.Comp.SelectedMinds.Count; if (mindCount >= totalTargetCount) return false; diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index 45daa7a312..ce7f3fec4c 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -144,7 +144,10 @@ public sealed partial class AntagSelectionSystem : GameRuleSystem x.AttachedEntity != null); + + if (!TryGetNextAvailableDefinition((uid, antag), out var def, players)) continue; if (TryMakeAntag((uid, antag), args.Player, def.Value)) From 4118e7010ab8aa65f4d2ffe1f6072ca5fa9dcfc4 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Mon, 17 Feb 2025 01:51:44 -0700 Subject: [PATCH 028/155] Centcomm 3: Beyond Thunderdome (#35240) centcomm update --- Resources/Maps/centcomm.yml | 91213 ++++++++++++++++++++-------------- 1 file changed, 54482 insertions(+), 36731 deletions(-) diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index 88df424d9a..e0199552d7 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -4,20 +4,35 @@ meta: tilemap: 0: Space 7: FloorAsteroidSand + 3: FloorAstroAsteroidSand + 15: FloorAstroGrass 14: FloorBar 17: FloorBlueCircuit 29: FloorDark 38: FloorDarkPlastic + 18: FloorEighties + 4: FloorFreezer + 6: FloorGlass + 16: FloorGold 47: FloorGrass 54: FloorGreenCircuit + 2: FloorHydro 60: FloorKitchen 61: FloorLaundry 62: FloorLino + 1: FloorMowedAstroGrass + 11: FloorRedCircuit 77: FloorReinforced + 9: FloorReinforcedHardened 89: FloorSteel + 5: FloorSteelCheckerDark + 12: FloorSteelCheckerLight + 13: FloorSteelLime 104: FloorTechMaint + 10: FloorTechMaint2 108: FloorWhite 118: FloorWood + 8: FloorWoodTile 120: Lattice 121: Plating entities: @@ -33,123 +48,155 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABdgAAAAADPgAAAAAAPgAAAAAA + tiles: eQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACWQAAAAACWQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAHQAAAAACWQAAAAADWQAAAAACCwAAAAAACwAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADNgAAAAAANgAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAABdgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAHQAAAAADdgAAAAABPgAAAAAAPgAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADdgAAAAAAPgAAAAAAPgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: WQAAAAABWQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAbAAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACbAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACbAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAbAAAAAADeQAAAAAAPgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAPgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAPgAAAAAAdgAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAC + tiles: WQAAAAAAHQAAAAADAQAAAAAAHQAAAAACAgAAAAAAAgAAAAAAHQAAAAABHQAAAAABAgAAAAAAAgAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAADHQAAAAADAQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADAgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAbAAAAAADbAAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAADbAAAAAACWQAAAAAAHQAAAAADbAAAAAADbAAAAAAAWQAAAAABWQAAAAABWQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACWQAAAAACHQAAAAABbAAAAAADbAAAAAADWQAAAAADWQAAAAACWQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACWQAAAAAAHQAAAAABbAAAAAAAbAAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAACPgAAAAAAdgAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABPgAAAAAAdgAAAAACHQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADHQAAAAACHQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACPgAAAAAAdgAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAD version: 6 -1,0: ind: -1,0 - tiles: WQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADLwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADPgAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADPgAAAAAAHQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADPgAAAAAAHQAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABHQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAC + tiles: WQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADHQAAAAACWQAAAAACWQAAAAABWQAAAAAAHQAAAAACHQAAAAAAdgAAAAABdgAAAAAAdgAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADPgAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADAQAAAAAAHQAAAAABWQAAAAADWQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADAQAAAAAAHQAAAAABWQAAAAAAWQAAAAABPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACAQAAAAAAHQAAAAAAWQAAAAADWQAAAAABPgAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABAQAAAAAAHQAAAAAAWQAAAAADWQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAA version: 6 0,0: ind: 0,0 - tiles: HQAAAAABHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAALwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAA + tiles: dgAAAAABdgAAAAACHQAAAAADHQAAAAAAWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAACHQAAAAADeQAAAAAAAwAAAAAAAwAAAAAJAwAAAAAAAwAAAAALAwAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAACWQAAAAABHQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAACWQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADWQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAC version: 6 1,-1: ind: 1,-1 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAB + tiles: HQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABWQAAAAAAWQAAAAACWQAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABWQAAAAADWQAAAAABWQAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADWQAAAAADWQAAAAADWQAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAADbAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAACWQAAAAADWQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADbAAAAAACbAAAAAADHQAAAAACHQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABbAAAAAAAWQAAAAACeQAAAAAAHQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAACeQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADHQAAAAADHQAAAAACHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADHQAAAAAAHQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAC version: 6 1,0: ind: 1,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAABwAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAAA - version: 6 - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABdgAAAAAAHQAAAAADHQAAAAACHQAAAAAADgAAAAABDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAdgAAAAABHQAAAAABHQAAAAACHQAAAAADDgAAAAAADgAAAAABHQAAAAAAHQAAAAABdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAABDgAAAAABDgAAAAADHQAAAAAAHQAAAAACdgAAAAAAdgAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAADgAAAAADDgAAAAAAHQAAAAABHQAAAAAAHQAAAAAADgAAAAADHQAAAAACHQAAAAAAdgAAAAABdgAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABDgAAAAAADgAAAAACHQAAAAAAHQAAAAAAHQAAAAAADgAAAAADHQAAAAADHQAAAAAAdgAAAAACdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACHQAAAAABeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABHQAAAAACeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACHQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 1,-2: - ind: 1,-2 - tiles: HQAAAAADHQAAAAABJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAJgAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAATQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACHQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACWQAAAAADWQAAAAAB - version: 6 - -1,-2: - ind: -1,-2 - tiles: eQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAAHQAAAAADHQAAAAACHQAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAADHQAAAAABHQAAAAABHQAAAAABdgAAAAAAdgAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAHQAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAAADgAAAAABDgAAAAABHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAHQAAAAABDgAAAAADDgAAAAADHQAAAAAAHQAAAAAAHQAAAAAADgAAAAACDgAAAAACDgAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADPAAAAAAAPAAAAAAAHQAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAABDgAAAAAADgAAAAADDgAAAAABHQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAADWQAAAAADHQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + tiles: WQAAAAACHQAAAAADHQAAAAABHQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADHQAAAAACeQAAAAAAHQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAACHQAAAAADHQAAAAADHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABWQAAAAACWQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAD version: 6 2,0: ind: 2,0 - tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAADeQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABHQAAAAACTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAABTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADHQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAABHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAACTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABHQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAACTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAACTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -1,1: - ind: -1,1 - tiles: HQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + 1,-2: + ind: 1,-2 + tiles: bAAAAAABbAAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAABbAAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACWQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADBgAAAAAABgAAAAABBgAAAAAAHQAAAAADHQAAAAADWQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAABBgAAAAABBgAAAAACBgAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAABAAAAAAABAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAABgAAAAABBgAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAABAAAAAAABAAAAAAAeQAAAAAAdgAAAAADdgAAAAACHQAAAAABBgAAAAAABgAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAABAAAAAAABAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADHQAAAAABBgAAAAACBgAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADHQAAAAAABgAAAAAABgAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAADBgAAAAADBgAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABBQAAAAACBQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAABgAAAAAABgAAAAADBgAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAABQAAAAACBQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABBgAAAAADBgAAAAABBgAAAAADBgAAAAABBgAAAAADBgAAAAABHQAAAAADBQAAAAACBQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAAABgAAAAACBgAAAAABBgAAAAACHQAAAAAAHQAAAAAC version: 6 - 0,1: - ind: 0,1 - tiles: WQAAAAABWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABTQAAAAAA + 0,-2: + ind: 0,-2 + tiles: HQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAACHQAAAAAAHQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAADHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAADAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAWQAAAAADHQAAAAABAQAAAAAAHQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAADeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAWQAAAAABHQAAAAADAQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAAgAAAAAAHQAAAAABeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAWQAAAAACHQAAAAABAQAAAAAAHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAHQAAAAADHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAACHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAADBQAAAAACBQAAAAACBQAAAAADHQAAAAABWQAAAAAAHQAAAAADHQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAABBQAAAAAABQAAAAAABQAAAAADBQAAAAACWQAAAAABHQAAAAABHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAACHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAACBQAAAAABBQAAAAADBQAAAAADBQAAAAADWQAAAAADHQAAAAADAQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAABeQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: eQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACDAAAAAABDAAAAAADDAAAAAACDAAAAAABeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAABHQAAAAADHQAAAAABDAAAAAAADAAAAAAADAAAAAADDAAAAAABeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHQAAAAACWQAAAAACWQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHQAAAAACWQAAAAAAWQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHQAAAAADWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAACWQAAAAADWQAAAAABeQAAAAAAPAAAAAAAPAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAC version: 6 2,-2: ind: 2,-2 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAABCAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: HQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAaAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,0: - ind: -2,0 - tiles: WQAAAAACWQAAAAAAWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAALwAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABdgAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA - version: 6 - -1,2: - ind: -1,2 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAADHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAdgAAAAABdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAABdgAAAAABdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAAATQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAADTQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAABTQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADTQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACTQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: HQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 0,2: - ind: 0,2 - tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 0,1: + ind: 0,1 + tiles: WQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACTQAAAAAATQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: CgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABDQAAAAABeQAAAAAAWQAAAAABWQAAAAACCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAABHQAAAAABHQAAAAACDQAAAAACDQAAAAAADQAAAAACDQAAAAACAQAAAAAAWQAAAAADWQAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAHQAAAAABHQAAAAADHQAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAABeQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACDQAAAAABDQAAAAADDQAAAAACDQAAAAAAAQAAAAAAWQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACDQAAAAADeQAAAAAAWQAAAAADeQAAAAAADQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAADDQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAACDQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAAADQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAACDQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAAC version: 6 1,2: ind: 1,2 - tiles: TQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: HQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAACgAAAAAACgAAAAAAeQAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAeQAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: WQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAEAAAAAAAHQAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAABHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAADwAAAAACDwAAAAABDwAAAAADDwAAAAACeQAAAAAAHQAAAAACHQAAAAADdgAAAAABdgAAAAACdgAAAAADPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAHQAAAAADHQAAAAABHQAAAAACdgAAAAADdgAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAHQAAAAACHQAAAAADHQAAAAADdgAAAAADdgAAAAACdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABeQAAAAAADwAAAAACDwAAAAADDwAAAAABDwAAAAADeQAAAAAAHQAAAAADHQAAAAACdgAAAAABdgAAAAADdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAACPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAABbAAAAAADeQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAWQAAAAAAHQAAAAABWQAAAAABHQAAAAACWQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAADWQAAAAACHQAAAAADWQAAAAACHQAAAAACWQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACWQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAADHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAABWQAAAAAAHQAAAAACWQAAAAACHQAAAAADWQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABWQAAAAACHQAAAAACWQAAAAADHQAAAAADWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAC + tiles: TQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAACDwAAAAADDwAAAAADDwAAAAAADwAAAAAAdgAAAAACDwAAAAABDwAAAAAADwAAAAACDwAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAADwAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAADwAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAADwAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAADwAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAADwAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAADeQAAAAAADwAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAADwAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAADwAAAAAAeQAAAAAAdgAAAAACdgAAAAADHQAAAAACHQAAAAADHQAAAAABdgAAAAACeQAAAAAADwAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAADwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAADwAAAAABDwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAGAwAAAAAIDwAAAAAADwAAAAABDwAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAA version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADQAAAAACDQAAAAABDQAAAAADTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAADHQAAAAACTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAADHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAAAHQAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAABHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADHQAAAAAAHQAAAAABTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAABHQAAAAACTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -1,-3: - ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAA + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAA + tiles: HQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABWQAAAAADHQAAAAACHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAANgAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAANgAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADDgAAAAADHQAAAAADdgAAAAADdgAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACHQAAAAACdgAAAAADdgAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABdgAAAAACdgAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAD version: 6 - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAC + -1,-3: + ind: -1,-3 + tiles: HQAAAAADWQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABNgAAAAAANgAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACNgAAAAAANgAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADDAAAAAABDAAAAAABHQAAAAACDgAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABDAAAAAADDAAAAAABHQAAAAADDgAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACDgAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACDAAAAAABDAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADDAAAAAABDAAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAABbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAHQAAAAADHQAAAAACEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAHQAAAAABHQAAAAAD version: 6 - 2,-3: - ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAACbAAAAAADWQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAACbAAAAAACWQAAAAAD + version: 6 + 1,-3: + ind: 1,-3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAwAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAwAAAAAKeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAABbAAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABWQAAAAACHQAAAAADHQAAAAAC + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAWQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAAB + version: 6 + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAAC + version: 6 + -3,0: + ind: -3,0 + tiles: WQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAdgAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAACdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABdgAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAAAdgAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACEgAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAAANgAAAAAANgAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADEgAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACEgAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAEgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAB + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAACgAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -170,527 +217,1288 @@ entities: version: 2 nodes: - node: - angle: -1.5707963267948966 rad - color: '#DE3A3A96' - id: Arrows - decals: - 521: 8,28 - - node: - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: Arrows - decals: - 520: 10,28 - - node: - angle: -3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 786: 29,-22 - 787: 33,-27 - 799: 32,-14 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 400: -11,28 - 473: 15,31 - 475: 5,31 - 910: 19,-26 - 976: 3,-43 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 780: 33,-21 - 781: 31,-21 - 785: 29,-26 - 914: 17,-31 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 375: -6,15 - 399: -11,24 - 474: 3,31 - 476: 13,31 - 909: 21,-26 - 977: -5,-43 + 374: 4,-1 + 1162: 4,27 + 1209: 35,8 + 1354: -6,14 + 1365: 0,23 + 2194: -26,-28 + 2195: -22,-28 + 2769: -30,-28 + 2770: -34,-28 + 2771: -38,-28 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 789: 31,-27 - - node: - angle: -3.141592653589793 rad - color: '#52B4E9C3' - id: ArrowsGreyscale - decals: - 307: 11,-15 - - node: - color: '#DE3A3A96' - id: Bot - decals: - 301: 9,6 - 302: 13,4 - 533: 8,31 - 534: 10,31 - 535: 12,31 - 537: 6,31 - 761: 22,-11 - 762: 19,-11 + 1163: 1,27 + 2196: -26,-26 + 2197: -22,-26 + 2198: -18,-26 + 2199: -14,-26 + 2200: -10,-26 + 2201: -6,-26 + 2772: -38,-26 + 2773: -34,-26 + 2774: -30,-26 - node: color: '#FFFFFFFF' id: Bot decals: - 49: 31,-6 - 50: 31,-4 - 51: 30,-6 - 52: 30,-4 - 53: 31,2 - 54: 30,2 - 55: 31,4 - 56: 30,4 - 103: 14,-3 - 104: 12,-3 - 234: -3,-13 - 235: 1,-13 - 236: -1,-12 - 276: 4,0 - 277: -6,0 - 371: -4,10 - 372: -4,15 - 376: -6,16 - 377: -6,17 - 378: -6,14 - 381: -7,28 - 382: -8,28 - 383: -9,28 - 384: -7,26 - 385: -8,26 - 386: -9,26 - 387: -7,24 - 388: -8,24 - 389: -9,24 - 390: -7,22 - 391: -8,22 - 392: -9,22 - 564: 9,15 - 566: 14,13 - 567: 14,11 - 568: 6,11 - 569: 6,13 - 574: 11,25 - 575: 8,22 - 576: -1,13 - 577: -1,11 - 579: -34,1 - 580: -34,-3 - 583: -31,-2 - 584: -30,-2 - 585: -31,0 - 586: -30,0 - 618: -22,0 - 619: -21,-2 - 620: -23,-2 - 621: -14,-1 - 673: -15,-8 - 674: -15,-7 - 675: -15,-6 - 676: -12,-8 - 677: -12,-7 - 678: -12,-6 - 713: 4,25 - 714: 4,28 - 715: 14,28 - 716: 14,25 - 717: 14,22 - 782: 29,-23 - 783: 29,-25 - 790: 32,-12 - 795: 32,-13 - 796: 31,-12 - 797: 32,-11 - 798: 33,-12 - 895: 23,-24 - 896: 23,-23 - 897: 28,-14 - 898: 27,-14 - 899: 34,-19 - 900: 34,-16 - 907: 17,-26 - 908: 23,-26 - 911: 17,-32 - 912: 16,-32 - 931: -20,-27 - 932: -19,-27 - 933: -20,-25 - 934: -19,-25 - 978: -5,-41 - 979: -5,-44 - 986: 3,-41 - 987: 3,-44 - 1222: 21,-27 - 1223: 20,-27 - 1224: 19,-27 + 226: 34,-3 + 227: 34,-4 + 228: 34,-5 + 229: 34,-6 + 230: 34,1 + 231: 34,2 + 232: 34,3 + 233: 34,4 + 295: -6,0 + 296: 4,0 + 476: 13,-3 + 477: 15,-3 + 546: 21,-9 + 1015: 12,23 + 1016: 12,25 + 1017: 14,25 + 1018: 14,23 + 1019: 14,27 + 1020: 12,27 + 1053: 15,18 + 1054: 16,18 + 1080: -7,26 + 1081: -6,27 + 1082: -5,26 + 1083: -6,25 + 1097: -7,21 + 1098: -7,19 + 1099: -5,19 + 1100: -5,21 + 1133: -1,28 + 1144: 7,27 + 1149: -1,27 + 1150: 1,29 + 1151: 1,28 + 1152: 2,28 + 1153: 2,29 + 1154: 3,29 + 1155: 3,28 + 1164: 1,26 + 1165: 2,26 + 1351: -6,12 + 1401: 3,21 + 1402: 4,21 + 1408: 7,19 + 1409: 8,19 + 1410: 7,20 + 1411: 8,20 + 1412: 7,21 + 1413: 8,21 + 1414: -2,32 + 1415: -2,31 + 1446: -16,26 + 1447: -16,23 + 1482: -24,28 + 1483: -24,29 + 1484: -24,30 + 1485: -23,30 + 1486: -23,29 + 1487: -23,28 + 1488: -22,28 + 1489: -21,28 + 1490: -21,29 + 1491: -22,29 + 1492: -22,30 + 1493: -21,30 + 1751: -6,-38 + 1752: -6,-45 + 1753: 4,-45 + 1754: 4,-38 + 2699: -55,1 + 2700: -55,-3 + 2701: -54,-3 + 2806: -40,-26 + 2807: -40,-28 + 2841: -52,-3 + 2842: -41,-11 + 2843: -24,7 + 2844: -4,1 + 2845: -7,12 + 2846: -1,23 + 2847: 17,3 + 2848: 30,14 + 2849: 12,-5 + 2850: 8,-9 + 2851: 4,-15 + 2852: 13,-18 + 2853: 32,-16 + 2854: -26,1 + 2855: -29,1 + 2892: -30,-5 + 2923: -32,1 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 1107: -12,25 + 1108: -13,26 + 1109: -12,27 + 1110: -11,26 + 1130: 13,9 + 1167: 3,31 + 2839: -6,-10 - node: color: '#FFFFFFFF' id: BotLeft decals: - 573: 8,25 - 791: 33,-11 - 792: 31,-13 - 982: -6,-42 - 983: -6,-43 - 984: 4,-43 - 985: 4,-42 + 1076: -5,27 + 1077: -7,25 - node: color: '#FFFFFFFF' id: BotRight decals: - 793: 33,-13 - 794: 31,-11 - 1151: 13,-15 - 1152: 13,-14 + 1078: -5,25 + 1079: -7,27 - node: color: '#FFFFFFFF' id: Box decals: - 1295: -12,4 + 544: 20,-12 + 545: 22,-12 + 1044: -11,5 + 1103: -13,25 + 1104: -13,27 + 1105: -11,27 + 1106: -11,25 + 1448: -16,24 + 1449: -16,25 + 2840: -6,-11 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1093: 19,15 + 570: 29,-17 + 571: 30,-18 + 2679: -43,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1099: 17,15 + 565: 22,-21 + 566: 23,-20 + 567: 24,-19 + 568: 25,-18 + 569: 27,-17 + 2678: -45,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1097: 19,11 + 573: 29,-27 + 574: 30,-26 + 963: 30,15 + 964: 31,16 + 1886: 5,-49 + 1887: -3,-49 + 2681: -43,-10 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1098: 17,11 + 561: 25,-26 + 562: 24,-25 + 563: 23,-24 + 564: 22,-23 + 572: 27,-27 + 961: 21,16 + 962: 22,15 + 1884: -7,-49 + 1885: 1,-49 + 2680: -45,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 580: 29,-18 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 581: 27,-18 + 582: 25,-19 + 583: 24,-20 + 584: 23,-21 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 589: 29,-26 + 970: 27,15 + 971: 30,16 + 972: 31,17 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 585: 23,-23 + 586: 24,-24 + 587: 25,-25 + 588: 27,-26 + 969: 25,15 + 973: 22,16 + 974: 21,17 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1094: 19,14 - 1095: 19,13 - 1096: 19,12 - 1107: 33,21 - 1108: 33,22 + 1876: -3,-47 + 1877: -3,-48 + 1878: 5,-47 + 1879: 5,-48 + 2675: -43,-9 + 2676: -43,-8 + 2677: -43,-7 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1101: 18,15 + 578: 26,-18 + 579: 28,-17 + 2686: -44,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 1100: 18,11 + 575: 28,-27 + 576: 26,-26 + 965: 23,15 + 966: 24,15 + 967: 29,15 + 968: 28,15 + 1888: -6,-49 + 1889: -5,-49 + 1890: -4,-49 + 1891: 2,-49 + 1892: 3,-49 + 1893: 4,-49 + 2682: -44,-10 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1102: 17,12 - 1103: 17,13 - 1104: 17,14 - 1105: 23,21 - 1106: 23,22 + 577: 22,-22 + 1880: -7,-48 + 1881: -7,-47 + 1882: 1,-48 + 1883: 1,-47 + 2683: -45,-9 + 2684: -45,-8 + 2685: -45,-7 - node: - color: '#52B4E996' - id: BrickTileSteelCornerNe - decals: - 1290: 7,-10 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerNw - decals: - 1118: 3,-10 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSe - decals: - 1119: 5,-14 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSw - decals: - 1114: 3,-14 - - node: - color: '#52B4E996' + color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 1294: 7,-12 + 1959: -12,-37 - node: - color: '#52B4E996' + color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 1141: 13,-12 - 1293: 5,-12 + 1960: -12,-30 - node: - color: '#52B4E996' - id: BrickTileSteelInnerSw - decals: - 1134: 9,-12 - - node: - color: '#52B4E996' + color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 1121: 5,-13 - 1138: 13,-15 - 1139: 13,-14 - 1140: 13,-13 - 1289: 7,-11 + 1951: -12,-31 + 1952: -12,-32 + 1953: -12,-33 + 1954: -12,-34 + 1955: -12,-35 + 1956: -12,-36 - node: - color: '#52B4E996' + color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 1125: 15,-12 - 1126: 14,-12 - 1127: 13,-12 - 1128: 12,-12 - 1129: 11,-12 - 1130: 10,-12 - 1131: 9,-12 - 1132: 8,-12 - 1142: 16,-12 - 1291: 6,-10 - 1292: 5,-10 + 1957: -11,-37 + 1958: -10,-37 - node: - color: '#52B4E996' + color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 1120: 4,-14 - 1133: 8,-12 - 1143: 16,-12 - 1144: 15,-12 - 1145: 14,-12 - 1287: 6,-12 - 1288: 7,-12 + 1961: -11,-30 + 1962: -10,-30 + 1963: -9,-30 + 1964: -8,-30 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 619: 34,-16 + 695: 34,-26 + 2689: -43,-6 - node: color: '#52B4E996' - id: BrickTileSteelLineW + id: BrickTileWhiteCornerNe decals: - 1115: 3,-13 - 1116: 3,-12 - 1117: 3,-11 - 1135: 9,-13 - 1136: 9,-14 - 1137: 9,-15 + 832: 23,12 + - node: + color: '#79150096' + id: BrickTileWhiteCornerNe + decals: + 611: 34,-10 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 1157: 1,-16 - 1162: 4,-19 + 1804: 12,-39 + 1861: 17,-40 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 821: 7,12 + 870: 17,12 + 986: 16,20 + 1494: 11,12 + 1763: -10,-39 + 1874: -18,-40 + - node: + color: '#EFD2415D' + id: BrickTileWhiteCornerNe + decals: + 1229: -5,12 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerNe + decals: + 778: 10,-9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 640: 19,-16 + 647: 19,-24 + 2653: -46,-5 + 2688: -45,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 735: 9,-5 + 831: 19,12 + - node: + color: '#79150096' + id: BrickTileWhiteCornerNw + decals: + 610: 33,-10 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 1158: -3,-16 - 1161: -6,-19 + 1805: 8,-39 + 1860: 16,-40 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 820: 3,12 + 859: 9,12 + 985: 10,20 + 1495: 15,12 + 1764: -14,-39 + 1875: -19,-40 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 621: 34,-18 + 693: 34,-28 + 2691: -43,-10 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 834: 23,10 + - node: + color: '#79150096' + id: BrickTileWhiteCornerSe + decals: + 616: 34,-14 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 1159: 4,-20 + 1807: 12,-44 + 1863: 17,-43 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 823: 7,10 + 843: 17,3 + 982: 16,18 + 1766: -10,-44 + 1873: -18,-43 + - node: + color: '#EFCC4163' + id: BrickTileWhiteCornerSe + decals: + 1123: -10,24 + - node: + color: '#EFD2415D' + id: BrickTileWhiteCornerSe + decals: + 1234: -5,7 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerSe + decals: + 782: 10,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 644: 19,-20 + 2659: -46,-11 + 2690: -45,-10 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 733: 9,-7 + 833: 19,10 + - node: + color: '#79150096' + id: BrickTileWhiteCornerSw + decals: + 615: 33,-14 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 1160: -6,-20 + 1806: 8,-44 + 1862: 16,-43 - node: - color: '#9FED5896' + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 822: 3,10 + 848: 12,3 + 981: 10,18 + 1765: -14,-44 + 1872: -19,-43 + - node: + color: '#EFCC4163' + id: BrickTileWhiteCornerSw + decals: + 1122: -14,24 + - node: + color: '#EFD2415D' + id: BrickTileWhiteCornerSw + decals: + 1237: -8,7 + 1241: -10,9 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndN + decals: + 869: 13,12 + - node: + color: '#4399095A' id: BrickTileWhiteInnerNe decals: - 1164: 1,-19 + 2284: -3,-47 + 2287: 5,-47 - node: - color: '#9FED5896' + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 864: 11,11 + 865: 13,11 + - node: + color: '#EFD2415D' + id: BrickTileWhiteInnerNe + decals: + 1266: -9,12 + - node: + color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1163: -3,-19 + 652: 21,-24 + - node: + color: '#4399095A' + id: BrickTileWhiteInnerNw + decals: + 2285: 1,-47 + 2286: -7,-47 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 863: 15,11 + 866: 13,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 662: 26,-16 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 881: 10,7 + - node: + color: '#EFD2415D' + id: BrickTileWhiteInnerSe + decals: + 1260: -17,21 + 1275: -9,18 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 674: 21,-20 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 730: 12,-7 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 852: 12,7 + - node: + color: '#EFD2415D' + id: BrickTileWhiteInnerSw + decals: + 1239: -8,9 + 1253: -10,21 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 620: 34,-17 + 694: 34,-27 + 2693: -43,-9 + 2694: -43,-8 + 2695: -43,-7 + - node: + color: '#43990941' + id: BrickTileWhiteLineE + decals: + 1521: -3,7 + 1522: -3,8 + 1523: -3,9 + 1524: -3,10 + 1525: -3,11 + 1526: -3,12 + 1549: -3,-24 + 1550: -3,-23 + 1551: -3,-22 + 1552: -3,-21 + 1553: -3,-20 + 1554: -3,-19 + 1555: -3,-18 + 1556: -3,-17 + 1557: -3,-16 + 1558: -3,-15 + 1559: -3,-14 + 1560: -3,-13 + 1561: -3,-12 + 1562: -3,-11 + 1563: -3,-10 + 1564: -3,-9 + - node: + color: '#43990947' + id: BrickTileWhiteLineE + decals: + 553: 31,-13 + 554: 31,-12 + 555: 31,-11 + 556: 31,-10 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 830: 23,11 + - node: + color: '#79150096' + id: BrickTileWhiteLineE + decals: + 612: 34,-11 + 613: 34,-12 + 614: 34,-13 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1165: 1,-18 + 1815: 12,-43 + 1816: 12,-42 + 1817: 12,-41 + 1818: 12,-40 + 1864: 17,-42 + 1865: 17,-41 - node: - color: '#79150096' + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 827: 7,11 + 871: 17,11 + 872: 17,9 + 873: 17,8 + 874: 17,7 + 875: 17,6 + 876: 17,5 + 877: 10,6 + 878: 10,5 + 879: 10,4 + 880: 10,3 + 983: 16,19 + 1770: -10,-43 + 1771: -10,-42 + 1772: -10,-41 + 1773: -10,-40 + 1870: -18,-42 + 1871: -18,-41 + - node: + color: '#EFCC4163' + id: BrickTileWhiteLineE + decals: + 1119: -10,25 + 1120: -10,26 + 1121: -10,27 + - node: + color: '#EFD2415D' + id: BrickTileWhiteLineE + decals: + 1230: -5,11 + 1231: -5,10 + 1232: -5,9 + 1233: -5,8 + 1261: -17,20 + 1262: -17,19 + 1264: -9,13 + 1267: -9,14 + 1268: -9,15 + 1269: -9,16 + 1270: -9,17 + - node: + color: '#FA750096' + id: BrickTileWhiteLineE + decals: + 779: 10,-10 + 780: 10,-11 + 781: 10,-12 + - node: + color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1220: 33,-32 + 628: 32,-16 + 629: 31,-16 + 633: 26,-16 + 634: 25,-16 + 635: 24,-16 + 636: 23,-16 + 637: 22,-16 + 638: 21,-16 + 639: 20,-16 + 646: 20,-24 + 675: 27,-16 + 676: 28,-16 + 677: 29,-16 + 696: 32,-26 + 697: 31,-26 + 2646: -45,-5 + 2647: -44,-5 + 2648: -43,-5 + 2649: -42,-5 + 2650: -40,-5 + 2651: -38,-5 + 2652: -37,-5 + 2670: -36,-5 + 2687: -44,-6 + - node: + color: '#43990941' + id: BrickTileWhiteLineN + decals: + 1565: -10,-3 + 1566: -11,-3 + 1567: -12,-3 + 1568: -14,-3 + 1569: -13,-3 + 1570: -15,-3 + 1571: -16,-3 + 1572: -17,-3 + 1573: -18,-3 + 1574: -19,-3 + 1575: -20,-3 + 1576: -21,-3 + 1577: -22,-3 + 1578: -23,-3 + 1579: -24,-3 + 1580: -25,-3 + 1581: -26,-3 + 1582: -27,-3 + 1583: -28,-3 + 1584: -29,-3 + 1585: -30,-3 + - node: + color: '#4399094A' + id: BrickTileWhiteLineN + decals: + 2602: -31,-3 + 2603: -32,-3 + 2604: -33,-3 + 2605: -34,-3 + 2606: -35,-3 + 2607: -36,-3 + 2608: -37,-3 + 2609: -38,-3 + 2610: -39,-3 + 2611: -40,-3 + 2612: -41,-3 + 2613: -42,-3 + 2614: -44,-3 + 2615: -43,-3 + 2616: -45,-3 + 2617: -46,-3 + 2618: -47,-3 + 2619: -48,-3 + 2620: -49,-3 + 2621: -50,-3 + 2622: -51,-3 + 2645: -52,-3 + - node: + color: '#4399095A' + id: BrickTileWhiteLineN + decals: + 2260: 8,-48 + 2261: 9,-48 + 2262: 10,-48 + 2263: 11,-48 + 2264: 12,-48 + 2265: -10,-48 + 2266: -11,-48 + 2267: -12,-48 + 2268: -13,-48 + 2269: -14,-48 + 2282: -2,-47 + 2283: 0,-47 + 2288: 6,-47 + 2289: -8,-47 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 736: 10,-5 + 737: 11,-5 + 738: 12,-5 + 739: 13,-5 + 740: 14,-5 + 741: 15,-5 + 742: 16,-5 + 835: 20,12 + 836: 21,12 + 837: 22,12 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1166: 2,-19 - 1176: 0,-16 - 1177: -2,-16 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 1218: 30,-32 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineN - decals: - 1221: 32,-32 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineN - decals: - 1217: 29,-32 + 1812: 9,-39 + 1813: 10,-39 + 1814: 11,-39 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1219: 31,-32 + 817: 4,12 + 818: 5,12 + 819: 6,12 + 867: 12,11 + 868: 14,11 + 987: 15,20 + 988: 14,20 + 989: 12,20 + 990: 11,20 + 1778: -13,-39 + 1779: -12,-39 + 1780: -11,-39 + - node: + color: '#EFD2415D' + id: BrickTileWhiteLineN + decals: + 1228: -7,12 + 1276: -5,22 + 1277: -7,22 + 1278: -8,22 + 1279: -9,22 + 1280: -10,22 + 1281: -11,22 + 1282: -13,22 + 1283: -14,22 + 1284: -15,22 + - node: + color: '#EFD84147' + id: BrickTileWhiteLineN + decals: + 1607: -8,12 + - node: + color: '#FA750096' + id: BrickTileWhiteLineN + decals: + 775: 6,-9 + 776: 7,-9 + 777: 8,-9 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1212: 29,-29 + 622: 33,-18 + 623: 32,-18 + 645: 20,-20 + 670: 31,-18 + 678: 19,-28 + 679: 20,-28 + 680: 21,-28 + 681: 22,-28 + 682: 23,-28 + 683: 24,-28 + 684: 25,-28 + 685: 26,-28 + 686: 27,-28 + 687: 28,-28 + 688: 29,-28 + 689: 30,-28 + 690: 31,-28 + 691: 32,-28 + 692: 33,-28 + 2660: -45,-11 + 2661: -44,-11 + 2662: -43,-11 + 2663: -42,-11 + 2664: -41,-11 + 2665: -40,-11 + 2666: -39,-11 + 2667: -38,-11 + 2668: -37,-11 + 2669: -36,-11 + 2692: -44,-10 + - node: + color: '#43990941' + id: BrickTileWhiteLineS + decals: + 1586: -30,1 + 1587: -29,1 + 1588: -28,1 + 1589: -27,1 + 1590: -26,1 + 1591: -24,1 + 1592: -25,1 + 1593: -23,1 + 1594: -22,1 + 1595: -21,1 + 1596: -20,1 + 1597: -19,1 + 1598: -18,1 + 1599: -17,1 + 1600: -16,1 + 1601: -14,1 + 1602: -15,1 + 1603: -13,1 + 1604: -12,1 + 1605: -11,1 + 1606: -10,1 + - node: + color: '#4399094A' + id: BrickTileWhiteLineS + decals: + 2623: -51,1 + 2624: -50,1 + 2625: -49,1 + 2626: -48,1 + 2627: -46,1 + 2628: -47,1 + 2629: -45,1 + 2630: -44,1 + 2631: -43,1 + 2632: -42,1 + 2633: -40,1 + 2634: -41,1 + 2635: -39,1 + 2636: -38,1 + 2637: -37,1 + 2638: -36,1 + 2639: -35,1 + 2640: -34,1 + 2641: -33,1 + 2642: -32,1 + 2643: -31,1 + 2644: -52,1 + - node: + color: '#4399095A' + id: BrickTileWhiteLineS + decals: + 2236: -7,-50 + 2237: -6,-50 + 2238: -5,-50 + 2239: -4,-50 + 2240: -3,-50 + 2241: -2,-50 + 2242: -1,-50 + 2243: 0,-50 + 2244: 1,-50 + 2245: 2,-50 + 2246: 3,-50 + 2247: 4,-50 + 2248: 5,-50 + 2249: 6,-50 + 2250: -8,-50 + 2270: -14,-49 + 2271: -13,-49 + 2274: -10,-49 + 2275: -11,-49 + 2276: -12,-49 + 2277: 12,-49 + 2278: 11,-49 + 2279: 9,-49 + 2280: 10,-49 + 2281: 8,-49 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 1216: 33,-29 + 731: 11,-7 + 732: 10,-7 + 838: 20,10 + 839: 21,10 + 840: 22,10 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 1167: 2,-20 - 1168: 1,-20 - 1169: 0,-20 - 1170: -2,-20 - 1171: -3,-20 - 1172: -4,-20 - 1173: -5,-20 - 1184: 3,-20 - 1214: 31,-29 + 1819: 9,-44 + 1820: 10,-44 + 1821: 11,-44 - node: - color: '#D381C996' + color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1213: 30,-29 + 824: 6,10 + 825: 5,10 + 826: 4,10 + 844: 16,3 + 845: 15,3 + 846: 14,3 + 847: 13,3 + 853: 11,7 + 976: 12,18 + 977: 14,18 + 978: 15,18 + 980: 11,18 + 1767: -11,-44 + 1768: -12,-44 + 1769: -13,-44 - node: - color: '#EFB34196' + color: '#EFCC4163' id: BrickTileWhiteLineS decals: - 1215: 32,-29 + 1124: -13,24 + 1125: -11,24 + - node: + color: '#EFD2415D' + id: BrickTileWhiteLineS + decals: + 1235: -6,7 + 1236: -7,7 + 1240: -9,9 + 1254: -11,21 + 1255: -13,21 + 1256: -12,21 + 1257: -14,21 + 1258: -15,21 + 1259: -16,21 + 1271: -8,18 + 1272: -7,18 + 1273: -6,18 + 1274: -5,18 + - node: + color: '#FA750096' + id: BrickTileWhiteLineS + decals: + 783: 9,-13 + 784: 8,-13 + 785: 7,-13 + 786: 6,-13 + 787: 5,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 641: 19,-17 + 642: 19,-18 + 643: 19,-19 + 653: 19,-25 + 671: 21,-23 + 672: 21,-22 + 673: 21,-21 + 2654: -46,-6 + 2655: -46,-7 + 2656: -46,-8 + 2657: -46,-9 + 2658: -46,-10 + 2696: -45,-9 + 2697: -45,-8 + 2698: -45,-7 + - node: + color: '#43990941' + id: BrickTileWhiteLineW + decals: + 1527: 1,7 + 1528: 1,8 + 1529: 1,9 + 1530: 1,10 + 1531: 1,11 + 1532: 1,12 + 1533: 1,-9 + 1534: 1,-10 + 1535: 1,-11 + 1536: 1,-12 + 1537: 1,-14 + 1538: 1,-13 + 1539: 1,-15 + 1540: 1,-16 + 1541: 1,-17 + 1542: 1,-18 + 1543: 1,-24 + 1544: 1,-23 + 1545: 1,-22 + 1546: 1,-21 + 1547: 1,-20 + 1548: 1,-19 + - node: + color: '#43990947' + id: BrickTileWhiteLineW + decals: + 557: 29,-13 + 558: 29,-12 + 559: 29,-11 + 560: 29,-10 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 724: 12,-13 + 725: 12,-12 + 726: 12,-11 + 727: 12,-10 + 728: 12,-9 + 729: 12,-8 + 734: 9,-6 + 829: 19,11 + - node: + color: '#79150096' + id: BrickTileWhiteLineW + decals: + 607: 33,-12 + 608: 33,-11 + 609: 33,-13 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1174: -3,-18 - 1175: -3,-17 + 1808: 8,-43 + 1809: 8,-42 + 1810: 8,-41 + 1811: 8,-40 + 1866: 16,-42 + 1867: 16,-41 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 828: 3,11 + 849: 12,4 + 850: 12,5 + 851: 12,6 + 857: 9,9 + 858: 9,11 + 882: 9,6 + 883: 9,5 + 884: 9,4 + 885: 9,3 + 984: 10,19 + 1774: -14,-43 + 1775: -14,-42 + 1776: -14,-41 + 1777: -14,-40 + 1868: -19,-41 + 1869: -19,-42 + - node: + color: '#EFCC4163' + id: BrickTileWhiteLineW + decals: + 1116: -14,26 + 1117: -14,27 + 1118: -14,25 + - node: + color: '#EFD2415D' + id: BrickTileWhiteLineW + decals: + 1238: -8,8 + 1242: -10,10 + 1243: -10,11 + 1244: -10,12 + 1245: -10,13 + 1246: -10,14 + 1247: -10,15 + 1248: -10,16 + 1249: -10,17 + 1250: -10,18 + 1251: -10,19 + 1252: -10,20 + - node: + color: '#FFFFFFFF' + id: BushAOne + decals: + 1902: -21,-42 + - node: + color: '#FFFFFFFF' + id: BushAThree + decals: + 1896: 19,-37 + - node: + color: '#FFFFFFFF' + id: BushATwo + decals: + 1906: -21,-39 + 2440: -11,3 + - node: + color: '#FFFFFFFF' + id: BushCOne + decals: + 1903: -21,-37 + - node: + color: '#FFFFFFFF' + id: BushCThree + decals: + 2438: -10,-5 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 1899: 19,-46 + 1904: -21,-47 + 2439: -15,3 + - node: + color: '#FFFFFFFF' + id: BushDThree + decals: + 1457: 6.9084163,7.696661 + 1458: 6.4396663,7.352911 + - node: + color: '#FFFFFFFF' + id: BushDTwo + decals: + 1459: 3.2052913,7.727911 + 2185: -24,-21 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 1895: 19,-39 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 1233: -9,6 + 2403: -26.20804,3.5499678 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 2436: -15,-5 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 451: 10,8 - 725: 9.488686,-17.018105 + 1894: 19,-42 + 2402: -28.567415,3.2062178 + 2437: -11,-5 - node: color: '#FFFFFFFF' - id: Bushc1 + id: Bushc2 decals: - 722: -11.564524,-16.986855 + 1905: -21,-44 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 1900: 19,-44 - node: color: '#FFFFFFFF' id: Bushe1 decals: 150: 25.445843,7.7053776 - 179: 11.130266,-9.945588 - 316: -4,18 - 457: 10.845012,7.992337 - node: color: '#FFFFFFFF' id: Bushe2 decals: 149: 26.461468,7.8616276 - 180: 14.583391,-9.976838 - 181: 13.520891,-10.008088 - node: color: '#FFFFFFFF' id: Bushe3 decals: 151: 28.82894,6.877252 152: 23.178217,6.861627 - 315: 2,18 - 458: 9.048137,8.023587 - 1113: 17.154882,7.7859535 - node: color: '#FFFFFFFF' id: Bushe4 decals: 153: 18.801558,6.901756 154: 33.138065,6.979881 + 1456: 3.7990413,7.759161 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 178: 9.755266,-9.992463 - 456: 10.782512,8.007962 + 1455: 4.7990413,7.446661 + 2186: -12,-22 + 2187: -4,-22 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 177: 10.411516,-10.008088 - 314: -4,18 - 455: 9.141887,8.007962 + 2801: -36,-32 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 176: 14.052141,-10.008088 - 313: 2,18 + 1460: 6.898539,6.962286 + 2183: -20,-22 + 2184: -24,-22 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 648: -11.486805,2.0009332 + 2232: 2,-22 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 2229: 2,-15 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 312: -4,18 - 459: 13.141887,8.086087 - 460: 6.0012617,8.086087 - 467: 8.798137,7.961087 - 723: -10.814524,-16.955605 - 727: 8.848061,-16.97123 + 2230: 2,-21 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 724: -12.142649,-17.03373 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 185: 10.099016,-9.945588 - 311: 2,18 - 466: 11.282512,7.929837 - 726: 10.098061,-16.97123 - 1110: 16.470638,7.9648323 + 2804: -32,-33 - node: color: '#FFFFFFFF' id: Bushi1 @@ -700,123 +1508,266 @@ entities: 143: 27.037664,6.330377 144: 29.052135,7.267877 145: 32.06776,8.049128 - 171: 32.98406,-8.985069 - 173: 17.014437,2.9736261 - 174: 16.998812,6.958001 - 175: 17.020891,-5.0002565 - 197: -3.9782841,6.046785 - 200: -8.985234,-13.989886 - 642: -16.924305,2.0790582 - 643: -10.93993,2.0321832 - 711: -5.975403,-22.996408 + 1916: 19,-47 + 1922: -21,-36 + 2414: -27.784859,7.037008 + 2416: -26.581734,7.037008 + 2450: -16,3 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 172: 19.006546,-8.953819 - 195: 6.9877787,-14.02815 - 196: -8.025159,5.99991 - 201: -9.047734,-10.021136 - 712: 3.9464722,-22.996408 + 1453: 3.0802913,6.946661 + 1454: 6.2677913,7.806036 + 1915: 19,-41 + 1978: 4.0082064,-31.102646 + 2179: -4,-21 + 2211: -28,-32 + 2227: 2,-23 + 2228: 2,-16 + 2413: -28.456734,7.005758 + 2417: -25.925484,7.068258 + 2793: -36,-33 + 2794: -40,-32 + 2795: -32,-31 + 2796: -32,-23 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 644: -12.93993,1.9853082 + 1920: -21,-46 + 1977: -5.9761686,-31.14952 + 2176: -28,-21 + 2177: -20,-22 + 2178: -12,-23 + 2212: -24,-32 + 2412: -29.066109,7.037008 + 2447: -10,3 + 2448: -16,-5 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 1914: 19,-36 + 1921: -21,-41 + 2180: -20,-23 + 2181: -28,-23 + 2182: -16,-21 + 2415: -27.128609,7.052633 + 2418: -28.78415,6.990133 + 2449: -10,-5 + 2799: -40,-23 + 2800: -36,-32 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 170: 30.968433,-8.891319 + 2409: -29.004915,3.0343428 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 169: 20.959995,-9.000694 - 461: 13.579387,8.023587 + 2411: -26.27054,4.378093 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 463: 6.5325117,8.164212 + 2410: -25.942415,2.9874678 + 2805: -32,-22 + - node: + color: '#FFFFFFFF' + id: Bushk1 + decals: + 1981: -6.0230436,-30.258896 - node: color: '#FFFFFFFF' id: Bushk2 decals: - 310: 4,16 + 1982: 3.9925814,-30.27452 + 2188: -4,-21 + 2189: -8,-22 + 2191: -28,-22 + 2797: -36,-22 - node: color: '#FFFFFFFF' id: Bushk3 decals: 148: 20.972792,7.5335026 - 646: -16.03368,2.0478082 + 2190: -16,-23 - node: color: '#FFFFFFFF' id: Bushl1 decals: - 190: 7.116846,-5.379048 + 2231: 2,-17 + 2451: -13,3 - node: color: '#FFFFFFFF' - id: Bushl2 + id: Bushl3 decals: - 645: -15.03368,2.0165582 + 2452: -13,-5 - node: color: '#FFFFFFFF' id: Bushl4 decals: - 647: -12.00243,1.9853082 - 710: -6.022278,-23.574533 + 2213: -28,-32 - node: color: '#FFFFFFFF' id: Bushm1 decals: 147: 31.989635,7.5335026 + 2214: -24,-32 + 2802: -40,-31 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 222: 3.9493294,6.054844 - 707: 4.008972,-23.668283 + 1979: -6.0542936,-31.602646 - node: color: '#FFFFFFFF' id: Bushm3 decals: 146: 30.208385,7.5960026 - 223: -9.056177,3.4392257 - 708: 4.008972,-22.558908 + 1980: 4.0238314,-31.74327 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 709: -6.022278,-22.512033 + 2803: -32,-32 - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 199: 34.054134,-1.0223641 - - node: - angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 1286: 23,-27 + 1021: 13,28 - node: - color: '#52B4E996' + color: '#52B4E973' id: CheckerNESW decals: - 68: 12,-5 - 69: 13,-5 - 70: 14,-5 - 71: 15,-5 - 72: 15,-6 - 73: 15,-7 - 74: 15,-8 - 75: 11,-5 - 76: 10,-5 - 77: 9,-5 - 78: 9,-6 - 79: 9,-7 - 80: 9,-8 + 519: 19,-13 + 520: 20,-13 + 521: 21,-13 + 522: 22,-13 + 523: 23,-13 + 524: 23,-12 + 525: 22,-12 + 526: 21,-12 + 527: 20,-12 + 528: 19,-12 + 529: 19,-11 + 530: 20,-11 + 531: 21,-11 + 532: 22,-11 + 533: 23,-11 + 534: 23,-10 + 535: 22,-10 + 536: 21,-10 + 537: 20,-10 + 538: 19,-10 + - node: + color: '#EFD84130' + id: CheckerNESW + decals: + 759: 4,-10 + 760: 3,-10 + 761: 3,-9 + 762: 4,-9 + 763: 4,-11 + 764: 3,-11 + 765: 3,-12 + 766: 4,-12 + 767: 4,-13 + 768: 3,-13 + - node: + color: '#334E6DC8' + id: CheckerNWSE + decals: + 2896: -34,-10 + 2897: -33,-10 + 2898: -32,-10 + 2899: -31,-10 + 2900: -29,-10 + 2901: -30,-10 + 2902: -30,-9 + 2903: -30,-8 + 2904: -30,-7 + 2905: -30,-6 + 2906: -29,-6 + 2907: -31,-9 + 2908: -31,-8 + 2909: -31,-7 + 2910: -31,-6 + 2911: -32,-6 + 2912: -32,-7 + 2913: -32,-8 + 2914: -32,-9 + 2915: -33,-9 + 2916: -33,-8 + 2917: -33,-7 + 2918: -33,-6 + 2919: -34,-6 + 2920: -34,-7 + 2921: -34,-8 + 2922: -34,-9 + - node: + color: '#43990950' + id: CheckerNWSE + decals: + 2507: -21,-14 + 2508: -22,-14 + 2509: -20,-14 + 2510: -19,-14 + 2511: -18,-14 + 2512: -17,-14 + 2513: -16,-14 + 2515: -15,-14 + 2516: -14,-14 + 2517: -13,-14 + 2518: -12,-14 + 2519: -11,-14 + 2520: -10,-14 + 2521: -9,-14 + 2522: -8,-14 + 2523: -7,-14 + 2524: -6,-14 + 2527: -23,-14 + 2528: -24,-14 + 2529: -25,-14 + 2530: -26,-14 + 2531: -27,-14 + 2532: -28,-14 + 2533: -30,-14 + 2534: -29,-14 + 2535: -31,-14 + 2536: -32,-14 + 2537: -33,-14 + 2538: -34,-14 + 2539: -35,-14 + 2540: -37,-14 + 2541: -36,-14 + 2542: -38,-14 + - node: + color: '#D381C95D' + id: CheckerNWSE + decals: + 2862: 20,-30 + 2863: 19,-30 + 2864: 19,-31 + 2865: 20,-31 + 2866: 21,-31 + 2867: 21,-30 + 2868: 22,-30 + 2869: 22,-31 + 2870: 22,-32 + 2871: 21,-32 + 2872: 20,-32 + 2873: 19,-32 + 2874: 19,-33 + 2875: 20,-33 + 2876: 21,-33 + 2877: 22,-33 + 2878: 22,-34 + 2879: 21,-34 + 2880: 20,-34 + 2881: 19,-34 - node: color: '#D4D4D428' id: CheckerNWSE @@ -827,153 +1778,275 @@ entities: 30: 21,1 31: 22,0 32: 23,-1 - 1185: -1,-19 - 1186: -1,-18 - 1187: -1,-17 - 1188: 0,-18 - 1189: -2,-18 - 1190: 0,-17 - 1191: -2,-17 - 1192: -2,-19 - 1193: 0,-19 + - node: + color: '#FA750096' + id: CheckerNWSE + decals: + 744: 5,-12 + 745: 5,-11 + 746: 5,-10 + 747: 6,-10 + 748: 6,-11 + 749: 6,-12 + 750: 7,-12 + 751: 7,-11 + 752: 7,-10 + 753: 8,-10 + 754: 8,-11 + 755: 8,-12 + 756: 9,-12 + 757: 9,-11 + 758: 9,-10 - node: color: '#DE3A3A96' id: Delivery decals: - 524: 13,32 - 525: 12,32 - 526: 6,32 - 527: 5,32 - 528: 3,32 - 529: 3,30 - 530: 15,30 - 532: 15,32 + 617: 33,-15 + - node: + color: '#FA750096' + id: Delivery + decals: + 791: 5,-8 - node: color: '#FFFFFFFF' id: Delivery decals: - 45: 32,4 - 46: 32,2 - 47: 32,-4 - 48: 32,-6 - 99: 12,1 - 100: 14,1 - 379: -8,17 - 380: -8,16 - 393: -10,22 - 394: -10,24 - 395: -10,26 - 396: -10,28 - 401: -14,30 - 402: -14,31 - 405: -14,22 - 406: -14,21 - 407: -14,20 - 581: -32,-2 - 582: -32,0 - 718: 6,-16 - 719: 7,-16 - 720: -9,-16 - 721: -8,-16 - 784: 29,-24 - 904: 32,-15 - 905: 16,-24 - 913: 15,-32 - 929: -21,-27 - 930: -21,-25 - 980: -6,-41 - 981: -6,-44 - 988: 4,-44 - 989: 4,-41 - 1231: 22,-26 - 1232: 18,-26 - 1242: -4,-35 - 1243: -5,-35 - 1244: -6,-35 - 1245: 2,-35 - 1246: 3,-35 - 1247: 4,-35 - 1248: 12,-30 - 1249: 13,-30 - 1250: 12,-21 - 1251: 13,-21 - 1252: -15,-21 - 1253: -14,-21 - 1254: -14,-30 - 1255: -15,-30 - 1256: -5,-6 - 1257: -5,-5 - 1258: -6,-4 - 1259: -7,-4 - 1260: -7,2 - 1261: -6,2 - 1262: -5,3 - 1263: -5,4 - 1264: 3,3 - 1265: 3,4 - 1266: 4,2 - 1267: 5,2 - 1268: 5,-4 - 1269: 4,-4 - 1270: 3,-5 - 1271: 3,-6 - 1272: -9,-12 - 1273: -14,-17 - 1279: -10,33 + 373: 4,-2 + 472: 13,1 + 473: 15,1 + 547: 29,-14 + 548: 30,-14 + 549: 31,-14 + 550: 31,-9 + 551: 30,-9 + 552: 29,-9 + 743: 17,-5 + 792: 7,-2 + 793: 7,-1 + 794: 7,0 + 795: 18,-2 + 796: 18,-1 + 797: 18,0 + 798: 0,-8 + 799: -1,-8 + 800: -2,-8 + 801: -9,-2 + 802: -9,-1 + 803: -9,0 + 804: -2,6 + 805: -1,6 + 806: 0,6 + 893: 15,5 + 894: 15,6 + 895: 8,4 + 995: 12,24 + 996: 14,24 + 997: 14,22 + 998: 12,22 + 999: 12,26 + 1000: 14,26 + 1022: 13,29 + 1023: 16,32 + 1024: 15,32 + 1025: 11,32 + 1026: 10,32 + 1101: -5,20 + 1102: -7,20 + 1128: 15,8 + 1129: 15,9 + 1143: 7,28 + 1145: 5,19 + 1146: 5,20 + 1147: 9,19 + 1148: -1,26 + 1156: 4,28 + 1157: 4,29 + 1158: 5,29 + 1159: 5,28 + 1160: 4,26 + 1161: 5,26 + 1198: -2,13 + 1199: -1,13 + 1200: 0,13 + 1202: -1,17 + 1203: 0,17 + 1204: -2,17 + 1205: 18,14 + 1206: 18,15 + 1207: 18,16 + 1208: 35,7 + 1350: -6,23 + 1352: -6,13 + 1364: 0,22 + 1403: 2,21 + 1480: -22,18 + 1705: -14,-45 + 1706: -13,-45 + 1707: -12,-45 + 1708: -11,-45 + 1709: -10,-45 + 1710: -15,-44 + 1711: -15,-43 + 1712: -15,-42 + 1713: -15,-41 + 1714: -15,-40 + 1715: -15,-39 + 1716: 8,-45 + 1717: 9,-45 + 1718: 10,-45 + 1719: 11,-45 + 1720: 12,-45 + 1721: 13,-44 + 1722: 13,-43 + 1723: 13,-42 + 1724: 13,-41 + 1725: 13,-40 + 1726: 13,-39 + 1727: 7,-44 + 1728: 7,-43 + 1729: 7,-42 + 1730: 7,-41 + 1731: 7,-40 + 1732: 7,-39 + 1733: -9,-44 + 1734: -9,-43 + 1735: -9,-42 + 1736: -9,-41 + 1737: -9,-40 + 1738: -9,-39 + 1739: -6,-39 + 1740: -6,-40 + 1741: -6,-41 + 1742: -6,-42 + 1743: -6,-43 + 1744: -6,-44 + 1745: 4,-44 + 1746: 4,-43 + 1747: 4,-42 + 1748: 4,-41 + 1749: 4,-40 + 1750: 4,-39 + 1755: -11,-43 + 1756: -13,-43 + 1757: -13,-40 + 1758: -11,-40 + 1759: 9,-43 + 1760: 11,-43 + 1761: 11,-40 + 1762: 9,-40 + 1785: -8,-45 + 1786: -8,-38 + 1787: 6,-45 + 1788: 6,-38 + 1923: 17,-45 + 1924: 16,-45 + 1925: 13,-49 + 1926: 13,-48 + 1927: 17,-38 + 1928: 16,-38 + 1929: -18,-38 + 1930: -19,-38 + 1931: -18,-45 + 1932: -19,-45 + 1933: -15,-49 + 1934: -15,-48 + 2004: 13,-29 + 2005: 12,-29 + 2006: -14,-29 + 2007: -15,-29 + 2702: -54,1 + 2808: -10,14 + 2809: -9,14 + 2810: -4,-15 + 2811: -4,-14 + 2812: -4,-13 + 2832: -5,-10 + 2882: -30,-11 + 2883: -29,-11 + 2884: -33,-11 + 2885: -34,-11 + 2886: -33,-5 + 2887: -34,-5 + 2888: -29,-5 + 2889: -29,-9 + 2890: -29,-8 + 2891: -29,-7 + 2893: -35,-9 + 2894: -35,-8 + 2895: -35,-7 - node: color: '#52B4E996' id: DeliveryGreyscale decals: - 1122: 4,-7 - 1123: 17,-7 - 1124: 17,-12 - 1146: 16,-12 - 1147: 8,-12 - 1148: 16,-7 - 1149: 12,-4 - 1150: 14,-4 + 841: 18,10 + 1497: 15,12 + - node: + color: '#DE3A3A96' + id: DeliveryGreyscale + decals: + 842: 8,10 + 891: 10,13 + 892: 16,13 + 1496: 11,12 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 1274: 4,-8 - 1275: -6,-8 - 1276: -6,6 - 1277: 7,3 - 1278: 17,5 + 2673: -41,-4 + 2674: -39,-4 - node: + cleanable: True color: '#FFFFFFFF' - id: DirtLight + id: DirtHeavy decals: - 57: 32,2 - 58: 32,-5 + 2835: -8,-11 + 2836: -6,-9 + 2837: -7,-10 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 59: 31,-6 - 60: 32,3 - 61: 31,4 - 62: 29,4 + 2833: -7,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2834: -6,-11 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 2790: -40,-31 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 2206: -24,-31 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 189: 7.054346,-5.972798 - 217: -8.98181,3.039219 - 218: 4.0382257,5.992344 - 640: -12.455555,2.0009332 - 704: -5.959778,-23.277658 + 1467: -7,6 + 1468: -4,9 + 1974: -6.06651,-30.071396 + 2225: 2,-23 + 2786: -36,-31 + 2787: -32,-33 + 2788: -32,-23 + 2789: -40,-22 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: 140: 25.64704,7.7835026 - 163: 21.006866,-8.969444 - 164: 21.928741,-8.985069 - 165: 32.30374,-9.031944 - 639: -17.09618,2.0009332 + 2171: -28,-22 + 2172: -20,-23 + 2173: -12,-22 + 2174: -8,-21 + 2175: -4,-22 + 2224: 2,-16 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -981,27 +2054,27 @@ entities: 137: 31.017263,7.330377 138: 20.33454,7.330377 139: 26.99079,6.721002 - 188: 6.991846,-5.004048 - 209: -4.0670047,-7.975866 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 166: 31.131866,-9.000694 - 167: 20.241241,-8.953819 - 168: 32.80374,-9.000694 - 219: 7.0694757,4.992344 - 220: 3.9757257,7.992344 - 1156: 7,-8 + 1976: 4.0011315,-31.977646 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 194: 5.962157,-7.9708443 - 206: -7.8673525,-7.959863 - 641: -14.90868,2.0634332 - 705: 4.102722,-23.308908 - 706: -5.991028,-22.152658 + 1471: -4,8 + 1973: -5.988385,-31.05577 + 1975: 4.0323815,-31.165146 + 2167: -8,-23 + 2168: -12,-21 + 2169: -16,-23 + 2170: -24,-23 + 2226: 2,-21 + 2791: -40,-32 + 2792: -36,-23 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 2202: -28,-31 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -1009,25 +2082,37 @@ entities: 134: 21.940147,6.877252 135: 26.987022,7.6116276 136: 32.829765,6.955377 - 207: -8.9611025,-5.006738 - 309: 4,16 - 1155: -9,-8 + 1472: -4,12 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 2203: -24,-33 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 193: 2.0246568,-7.9552193 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 216: -8.91931,3.929844 + 1469: -6,6 + 1470: -4,11 + 2204: -28,-33 + 2222: 2,-17 + 2441: -14,-5 + 2444: -12,3 + 2781: -40,-33 + 2782: -40,-21 + 2783: -36,-22 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 221: 1.9913507,6.023594 - 703: -5.975403,-23.949533 + 1972: -5.988385,-31.977646 + 2205: -24,-32 + 2223: 2,-15 + 2408: -29.08304,3.9874678 + 2442: -12,-5 + 2784: -32,-22 + 2785: -36,-32 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -1037,17 +2122,16 @@ entities: 131: 32.737022,7.9397526 132: 21.674522,8.017878 133: 19.190147,7.174127 - 161: 30.038116,-9.047569 - 162: 18.959991,-8.985069 - 182: 15.052141,-10.039338 - 183: 9.052141,-9.976838 - 184: 13.005266,-9.992463 - 208: -9.0236025,-5.991113 - 462: 6.6731367,7.961087 - 638: -13.12743,2.0009332 - 702: 4.024597,-22.012033 - 1111: 6.9923015,5.882874 - 1112: 6.0391765,5.945374 + 1971: 4.0385942,-30.383896 + 2162: -28,-23 + 2163: -20,-21 + 2164: -16,-22 + 2165: -8,-22 + 2166: -4,-23 + 2221: 2,-22 + 2407: -27.89554,2.9093428 + 2443: -14,3 + 2780: -32,-32 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale @@ -1057,72 +2141,238 @@ entities: 11: 25,-1 12: 27,-2 39: 25,0 - 679: -24,-5 - 680: -22,-5 - 681: -20,-5 - 682: -18,-5 - 683: -19,-6 - 684: -18,-7 - 685: -19,-8 - 686: -18,-9 - 687: -20,-9 - 688: -22,-9 - 689: -21,-8 - 690: -21,-6 - 691: -20,-7 - 692: -23,-8 - 693: -23,-6 - 694: -24,-7 - 695: -24,-9 + 2813: -16,-7 + 2814: -15,-7 + - node: + color: '#52B4E973' + id: FullTileOverlayGreyscale + decals: + 502: 14,-13 + 503: 15,-12 + 504: 16,-13 + 505: 17,-12 + 506: 18,-13 + 507: 18,-11 + 508: 16,-11 + 509: 14,-11 + 510: 15,-10 + 511: 17,-10 + 512: 18,-9 + 513: 16,-9 + 514: 14,-9 + 515: 15,-8 + 516: 17,-8 + 517: 16,-7 + 518: 14,-7 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 63: 10,-7 - 64: 11,-6 - 65: 12,-7 - 66: 13,-6 - 67: 14,-7 + 2823: -13,-9 + 2824: -12,-9 - node: - color: '#DE3A3A96' + color: '#79150096' id: FullTileOverlayGreyscale decals: - 479: 14,28 - 480: 14,25 - 481: 14,22 - 482: 4,25 - 483: 4,28 - 499: 9,27 - 500: 9,28 - 501: 9,29 - 502: 9,30 - 503: 9,31 - 504: 9,32 + 2817: -16,-9 + 2818: -15,-9 + - node: + color: '#8C347F66' + id: FullTileOverlayGreyscale + decals: + 2475: -18,-17 + 2476: -17,-17 + 2477: -17,-18 + 2478: -18,-18 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 2827: -10,-11 + 2828: -10,-10 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 2821: -13,-7 + 2822: -12,-7 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 2825: -13,-11 + 2826: -12,-11 + - node: + color: '#D4D4D428' + id: FullTileOverlayGreyscale + decals: + 2296: -3,-42 + 2297: -3,-41 + 2298: -3,-40 + 2299: -2,-40 + 2300: -1,-40 + 2301: 0,-40 + 2302: 1,-40 + 2303: 1,-41 + 2304: 1,-42 + 2305: 1,-43 + 2306: 0,-43 + 2307: -1,-43 + 2308: -2,-43 + 2309: -3,-43 + 2310: 2,-43 + 2311: 2,-42 + 2312: 2,-41 + 2313: 2,-40 + 2314: -4,-43 + 2315: -4,-42 + 2316: -4,-41 + 2317: -4,-40 + 2318: -4,-39 + 2319: -3,-39 + 2320: -2,-39 + 2321: -1,-39 + 2322: 0,-39 + 2323: 1,-39 + 2324: 2,-39 + 2325: 2,-44 + 2326: 1,-44 + 2327: 0,-44 + 2328: -1,-44 + 2329: -2,-44 + 2330: -3,-44 + 2332: -4,-44 + 2333: 10,-43 + 2334: 10,-42 + 2335: 10,-41 + 2336: 10,-40 + 2337: 11,-42 + 2338: 11,-41 + 2339: 9,-42 + 2340: 9,-41 + 2341: -12,-43 + 2342: -12,-42 + 2343: -12,-41 + 2344: -12,-40 + 2345: -11,-42 + 2346: -11,-41 + 2347: -13,-42 + 2348: -13,-41 + 2545: -42,-9 + 2546: -42,-7 + 2547: -41,-8 + 2548: -40,-7 + 2549: -40,-9 + 2550: -38,-7 + 2551: -38,-9 + 2552: -37,-8 + 2553: -36,-9 + 2554: -36,-7 + 2555: -37,-10 + 2556: -39,-10 + 2557: -41,-10 + 2558: -41,-6 + 2559: -39,-6 + 2560: -37,-6 + 2561: -36,-11 + 2562: -37,-11 + 2563: -38,-11 + 2564: -39,-11 + 2565: -41,-11 + 2566: -40,-11 + 2567: -42,-11 + 2568: -43,-11 + 2569: -44,-11 + 2570: -45,-11 + 2571: -46,-11 + 2572: -46,-10 + 2573: -46,-9 + 2574: -46,-7 + 2575: -46,-8 + 2576: -46,-6 + 2577: -46,-5 + 2578: -45,-5 + 2579: -44,-5 + 2580: -43,-5 + 2581: -42,-5 + 2582: -41,-5 + 2583: -39,-5 + 2584: -40,-5 + 2585: -37,-5 + 2586: -36,-5 + 2587: -38,-5 + 2588: -34,-11 + 2589: -33,-11 + 2590: -32,-11 + 2591: -31,-11 + 2592: -30,-11 + 2593: -29,-11 + 2594: -29,-5 + 2595: -30,-5 + 2596: -31,-5 + 2597: -32,-5 + 2598: -33,-5 + 2599: -34,-5 + - node: + color: '#D4D4D496' + id: FullTileOverlayGreyscale + decals: + 2829: -10,-8 + 2830: -10,-7 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 823: 19,-23 - 824: 20,-23 - 825: 21,-23 + 2819: -16,-11 + 2820: -15,-11 - node: color: '#FFFFFFFF' - id: Grassa4 + id: Grassa1 decals: - 454: 14,8 + 1461: -4,8 + 1897: 19,-36 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 2445: -13,-5 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 2446: -13,3 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 1917: -21,-36 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 452: 9,8 - 464: 11.391887,8.179837 - 465: 7.2825117,8.054837 + 1466: -7,6 + 1898: 19,-41 + 2433: -16,-5 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 1919: -21,-46 + 2404: -26.567415,3.0187178 + 2434: -10,3 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 1901: 19,-47 + 1918: -21,-41 + 2405: -28.27054,3.9562178 + 2435: -16,3 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 453: 13,8 - 1109: 16.017513,8.027332 + 2406: -29.067415,4.049968 - node: color: '#FFFFFFFF' id: Grassd1 @@ -1133,15 +2383,33 @@ entities: 126: 26.85236,8.13236 127: 24.842615,8.147985 128: 19.093754,6.9448605 - 160: 32.92874,-8.891319 - 635: -12.75243,1.9384332 + 1464: -4,12 + 1465: -6,6 + 1969: 4,-32 + 2218: 2,-16 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 2161: -4,-21 + 2401: -27,3 + 2431: -12,3 + 2432: -13,-5 + 2777: -40,-23 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 192: 2.0715318,-7.9395943 - 634: -14.955555,2.0165582 - 701: 3.9620972,-23.215158 + 2158: -24,-21 + 2159: -20,-23 + 2160: -8,-22 + 2209: -24,-31 + 2210: -28,-31 + 2220: 2,-23 + 2429: -11,-5 + 2430: -15,3 + 2778: -32,-23 + 2779: -32,-31 - node: color: '#FFFFFFFF' id: Grasse1 @@ -1152,13 +2420,20 @@ entities: 120: 25.163973,7.1167355 121: 26.195223,6.1636105 122: 29.242098,7.9917355 - 156: 20.2297,-9.031944 - 157: 30.694366,-8.953819 - 203: -8.907109,-5.8244467 - 212: 1.9943819,6.0206404 - 213: 3.947507,8.005015 - 636: -11.986805,1.9696832 - 700: -6.084778,-23.808908 + 1968: -6,-31 + 2153: -4,-22 + 2154: -12,-21 + 2155: -16,-23 + 2156: -24,-22 + 2157: -28,-21 + 2215: 2,-22 + 2219: 2,-15 + 2395: -26,3 + 2396: -27,7 + 2397: -29,4 + 2426: -16,3 + 2427: -10,3 + 2428: -16,-5 - node: color: '#FFFFFFFF' id: Grasse2 @@ -1167,18 +2442,25 @@ entities: 114: 26.992098,6.2724113 115: 21.070223,7.2411613 116: 20.007723,6.9442863 - 187: 7.054346,-5.004048 - 204: -8.985234,-5.0900717 - 205: -3.9383593,-7.9338217 - 210: -8.996265,3.0206404 - 211: -8.965015,3.9112654 - 215: 6.954139,4.9425154 - 633: -15.861805,1.9071832 - 637: -11.049305,1.8915582 - 698: 3.9464722,-22.418283 - 699: -5.928528,-22.652658 - 1153: 7,-8 - 1154: -9,-8 + 1462: -4,9 + 1965: -6,-32 + 1967: -6,-30 + 1970: 4,-30 + 2148: -28,-23 + 2149: -20,-22 + 2150: -16,-21 + 2151: -12,-22 + 2152: -8,-23 + 2207: -28,-32 + 2216: 2,-21 + 2390: -29,3 + 2391: -26,4 + 2392: -28,7 + 2423: -13,3 + 2424: -14,-5 + 2425: -10,-5 + 2775: -36,-23 + 2798: -36,-21 - node: color: '#FFFFFFFF' id: Grasse3 @@ -1191,156 +2473,84 @@ entities: 110: 29.420387,7.0224113 111: 30.092262,7.5849113 112: 32.41404,7.2099113 - 155: 19.2922,-8.953819 - 158: 31.506866,-8.985069 - 159: 21.444366,-8.953819 - 186: 7.023096,-5.941548 - 191: 5.962157,-8.002094 - 198: 34.00726,-1.0379891 - 202: -7.9071093,-7.9963217 - 214: 4.041257,6.0675154 - 308: 4,16 - 632: -16.674305,2.0478082 - 696: 4,-24 - 697: -6,-22 + 1463: -4,11 + 1966: 4,-31 + 2141: -28,-22 + 2142: -24,-23 + 2143: -20,-21 + 2144: -16,-22 + 2145: -12,-23 + 2146: -8,-21 + 2147: -4,-23 + 2208: -24,-33 + 2217: 2,-17 + 2393: -29,7 + 2394: -27,4 + 2398: -28,3 + 2399: -28,4 + 2400: -26,7 + 2419: -15,-5 + 2420: -12,-5 + 2421: -14,3 + 2422: -11,3 + 2776: -40,-22 - node: - color: '#334E6DC8' + color: '#9FED5866' id: HalfTileOverlayGreyscale decals: - 288: -1,1 - 655: -11,-5 - 656: -12,-5 - 657: -13,-5 - 658: -14,-5 - 659: -15,-5 - 660: -16,-5 + 498: 8,1 + 499: 17,1 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 88: 10,1 - 361: 1,16 - 362: 0,16 - 363: -1,16 - 364: -2,16 - 365: -3,16 - 562: 7,15 - 731: 8,-20 - 734: 10,-20 - 735: 12,-20 - 740: -10,-20 - 741: -12,-20 - 742: -14,-20 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 321: -8,11 - 322: -9,11 - 323: -10,11 - 324: -11,11 - 333: -12,16 - 334: -13,16 - 335: -14,16 - 423: -7,31 - 424: -8,31 - 425: -9,31 - 426: -11,31 + 1337: 9,16 + 1849: 15,-37 + 1850: 13,-37 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 86: 13,1 - 87: 11,1 - 556: 13,15 - 557: 10,15 - 558: 8,15 - 752: 28,-9 - 753: 27,-9 - 754: 26,-9 - 755: 25,-9 - 756: 24,-9 + 464: 11,1 + 465: 12,1 + 466: 14,1 + 467: 16,1 + 1843: -15,-37 + 1845: -17,-37 - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 + color: '#EFD2415D' + id: HalfTileOverlayGreyscale decals: - 617: -22,-2 - 649: -16,-9 - 650: -15,-9 - 651: -14,-9 - 652: -13,-9 - 653: -12,-9 - 654: -11,-9 + 1217: -8,9 + 1218: -7,9 + 1219: -7,11 + 1220: -7,10 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 84: 13,-3 - 85: 11,-3 + 468: 11,-3 + 469: 12,-3 + 470: 14,-3 + 471: 16,-3 + - node: + color: '#9FED5866' + id: HalfTileOverlayGreyscale180 + decals: + 500: 8,-3 + 501: 17,-3 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 353: 1,8 - 354: 0,8 - 355: -1,8 - 356: -2,8 - 357: -3,8 - 547: 13,10 - 548: 12,10 - 549: 11,10 - 550: 10,10 - 551: 9,10 - 552: 8,10 - 553: 7,10 - 578: 10,-3 - 732: 9,-19 - 733: 11,-19 - 743: -11,-19 - 744: -13,-19 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 327: -8,9 - 328: -10,9 - 329: -11,9 - 330: -9,9 - 331: -13,15 - 332: -14,15 - 340: -12,15 - 440: -8,19 - 441: -9,19 - 442: -10,19 + 1851: 16,-36 + 1852: 14,-36 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 291: 13,3 - 292: 15,3 - 293: 11,3 - 518: 10,21 - 519: 9,21 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 817: 15,-22 - 818: 16,-22 - 819: 17,-22 - 820: 18,-22 - 821: 19,-22 - 822: 20,-22 - 826: 21,-22 - 842: 26,-27 - 843: 25,-27 - 844: 24,-27 - 865: 28,-19 - 866: 27,-19 - 867: 23,-19 - 868: 22,-19 - 869: 30,-19 - 870: 34,-19 + 1844: -16,-36 + 1846: -18,-36 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -1354,70 +2564,48 @@ entities: 19: 29,-2 33: 25,-3 44: 25,-2 + 1427: 0,4 + 1437: 0,-6 + - node: + color: '#4399095A' + id: HalfTileOverlayGreyscale270 + decals: + 2292: 0,-49 + 2293: 0,-48 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 96: 9,-2 - 97: 9,-1 - 98: 9,0 - 563: 6,14 - 601: -26,-1 - 738: -8,-18 - 917: -14,-24 - 919: -14,-26 - 920: -14,-28 + 1856: 13,-35 + 1857: 13,-33 + 1858: 13,-31 - node: - color: '#A4610696' + color: '#D4D4D428' id: HalfTileOverlayGreyscale270 decals: - 326: -12,10 - 341: -4,11 - 342: -4,12 - 343: -4,13 - 428: -12,30 - 429: -12,29 - 430: -12,28 - 431: -12,27 - 432: -12,26 - 433: -12,25 - 434: -12,24 - 435: -12,23 - 436: -12,22 - 437: -12,21 - 438: -12,20 + 594: 22,-18 + 601: 22,-26 + 602: 22,-25 + 698: 22,-19 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 484: 5,24 - 485: 5,25 - 486: 5,26 - 487: 5,27 - 488: 5,28 - 489: 5,29 - 505: 11,16 - 506: 11,17 - 507: 11,18 - 508: 11,19 - 509: 11,20 - 554: 6,12 - 571: 8,22 - 572: 8,23 + 1783: -8,-44 + 1784: -8,-39 + 1831: -19,-34 + 1832: -19,-33 + 1833: -19,-32 + 1834: -19,-31 + 1835: -19,-30 + 1839: -14,-34 + 1840: -14,-32 + 1841: -14,-36 - node: - color: '#EFB34196' + color: '#EFD2415D' id: HalfTileOverlayGreyscale270 decals: - 827: 23,-21 - 828: 23,-22 - 829: 23,-23 - 830: 23,-24 - 831: 23,-25 - 832: 23,-27 - 891: 19,-19 - 892: 19,-17 - 893: 19,-16 - 894: 19,-14 + 1216: -8,10 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -1431,465 +2619,702 @@ entities: 14: 23,0 22: 29,-3 38: 27,0 + 1426: -2,4 + 1436: -2,-6 + - node: + color: '#4399095A' + id: HalfTileOverlayGreyscale90 + decals: + 2290: -2,-49 + 2291: -2,-48 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 93: 15,-2 - 94: 15,-1 - 95: 15,0 - 351: 2,9 - 359: 2,15 - 560: 14,14 - 587: -11,-1 - 729: 6,-18 - 916: -15,-23 - 918: -15,-25 - 921: -15,-27 + 1822: 6,-44 + 1823: 6,-39 + 1826: 17,-34 + 1827: 17,-33 + 1828: 17,-32 + 1829: 17,-31 + 1830: 17,-30 + 1853: 12,-36 + 1854: 12,-34 + 1855: 12,-32 - node: - color: '#A4610696' + color: '#D4D4D428' id: HalfTileOverlayGreyscale90 decals: - 325: -7,10 - 412: -6,20 - 413: -6,22 - 414: -6,23 - 415: -6,24 - 416: -6,25 - 417: -6,26 - 418: -6,27 - 419: -6,28 - 420: -6,29 - 421: -6,30 + 591: 20,-18 + 592: 20,-19 + 599: 20,-26 + 600: 20,-25 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 239: -5,-14 - 240: -5,-13 - 241: -5,-12 - 242: -5,-11 - 243: -5,-10 - 366: 2,10 - 367: 2,11 - 368: 2,12 - 369: 2,13 - 370: 2,14 - 490: 13,21 - 491: 13,22 - 492: 13,23 - 493: 13,24 - 494: 13,25 - 495: 13,27 - 496: 13,26 - 497: 13,28 - 498: 13,29 - 510: 12,16 - 511: 12,17 - 512: 12,18 - 513: 12,19 - 514: 12,20 - 555: 14,12 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 833: 27,-27 - 834: 27,-26 - 835: 27,-22 - 836: 27,-21 - 837: 27,-24 - 838: 27,-23 - 839: 27,-25 - 846: 21,-21 + 1836: -15,-31 + 1837: -15,-33 + 1838: -15,-35 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 373: -4,9 - 374: -4,14 + 377: 34,0 + 1132: 7,29 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 397: -14,25 - 398: -14,27 - 403: -13,30 - 404: -13,31 - 408: -13,20 - 409: -13,21 - 410: -13,22 + 378: 34,5 + 379: 34,-7 + 1791: 6,-42 + 1792: 6,-41 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 101: 14,0 - 102: 12,0 - 237: 1,-12 - 238: -3,-12 - 565: 9,14 - 906: 16,-25 + 375: 4,-3 + 376: 34,-2 + 474: 13,0 + 475: 15,0 + 1131: -1,29 + 1363: 0,21 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1789: -8,-42 + 1790: -8,-41 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: 15: 23,0 35: 28,-3 - 278: -4,1 - 279: -4,-1 - 280: -4,-2 - 285: -3,1 - 286: -2,1 - 290: -4,-3 - 615: -23,0 - 972: -3,-42 + 1430: 0,3 + 1433: -1,4 + 1434: 1,3 + 1438: 0,-7 + 1443: -1,-6 + 1473: 1,-7 - node: - color: '#52B4E996' + color: '#4399093E' id: QuarterTileOverlayGreyscale decals: - 306: 10,-13 + 267: -4,-3 + 268: -4,-2 + 269: -4,-1 + 270: -4,1 + 271: -3,1 + 272: -2,1 + - node: + color: '#43990985' + id: QuarterTileOverlayGreyscale + decals: + 2717: -28,-26 + 2718: -29,-26 + 2719: -30,-26 + 2720: -31,-26 + 2721: -32,-26 + 2722: -33,-26 + 2723: -34,-26 + 2724: -35,-26 + 2725: -36,-26 + 2726: -37,-26 + 2727: -38,-26 + 2728: -39,-26 + 2729: -40,-26 + - node: + color: '#43990996' + id: QuarterTileOverlayGreyscale + decals: + 2008: -3,-26 + 2009: -4,-26 + 2010: -5,-26 + 2011: -6,-26 + 2012: -7,-26 + 2013: -8,-26 + 2014: -9,-26 + 2015: -10,-26 + 2016: -11,-26 + 2017: -12,-26 + 2018: -13,-26 + 2019: -14,-26 + 2020: -15,-26 + 2021: -16,-26 + 2022: -17,-26 + 2023: -18,-26 + 2024: -19,-26 + 2025: -20,-26 + 2026: -21,-26 + 2027: -22,-26 + 2028: -23,-26 + 2029: -24,-26 + 2030: -25,-26 + 2031: -26,-26 + 2032: -27,-26 + - node: + color: '#8C347F96' + id: QuarterTileOverlayGreyscale + decals: + 2462: -2,-11 + 2463: -2,-10 + 2464: -2,-9 + - node: + color: '#9FED5876' + id: QuarterTileOverlayGreyscale + decals: + 431: -4,5 + 432: -5,5 + 438: -8,2 + 439: -8,1 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 231: -2,-10 - 256: -7,1 - 257: -7,0 - 258: -4,4 - 259: -3,4 - 260: -2,4 - 598: -26,0 - 599: -25,0 - 600: -24,0 - 624: -33,5 - 625: -32,5 - 924: -21,-23 - 939: 8,-31 - 940: 9,-31 - 941: 10,-31 - 942: 11,-31 - 943: 12,-22 - 955: 2,-32 - 956: 3,-32 - 957: 4,-32 - 958: 6,-32 - 959: 7,-32 + 1848: 17,-37 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 253: -7,3 - 254: -7,4 - 255: -6,4 - 346: -8,17 - 349: -8,16 + 1366: -2,18 + 1367: -2,19 + 1368: -2,20 + 1369: -2,21 + 1370: -2,22 + 1371: -2,23 + 1372: -2,24 + 1373: -2,25 + 1374: -2,26 + 1375: -2,27 + 1376: -2,28 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1197: 0,-20 - 1198: -1,-20 - 1199: -2,-20 - 1200: -3,-20 - 1201: -4,-20 - 1202: -5,-20 - 1203: 1,-20 - 1204: 2,-20 - 1205: 3,-20 + 350: 0,-5 + 351: 1,-5 + 352: 2,-5 + 353: 3,-5 + 354: 4,-5 + 355: 4,-4 + 356: 4,-3 + 357: 4,-2 + 358: 4,-1 + 2124: 2,-26 + 2125: 3,-26 + 2126: 4,-26 + 2127: 5,-26 + 2128: 6,-26 + 2129: 7,-26 + 2130: 8,-26 + 2131: 9,-26 + 2132: 10,-26 + 2133: 11,-26 + 2134: 12,-26 + 2135: 13,-26 + 2136: 14,-26 + 2137: 15,-26 + 2138: 16,-26 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 2366: -2,-24 + 2367: -2,-23 + 2368: -2,-22 + 2369: -2,-21 + 2370: -2,-20 + 2371: -2,-19 + 2374: -2,-16 + 2375: -2,-15 + 2376: -2,-14 + 2377: -2,-13 + 2378: -2,-12 + 2600: -2,-18 + 2601: -2,-17 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 232: -3,-11 - 544: 11,15 - 758: 19,-11 - 759: 20,-11 + 1317: 12,16 + 1318: 11,16 + 1319: 10,16 + 1782: -8,-40 - node: - color: '#EFB34196' + color: '#EFD2415D' id: QuarterTileOverlayGreyscale decals: - 871: 30,-16 - 872: 31,-16 - 876: 19,-25 + 1210: -8,3 + 1211: -8,4 + 1212: -8,5 + 1213: -7,5 + 1214: -6,5 + 1286: -7,16 + 1287: -6,16 + 1288: -5,16 + 1289: -4,16 + 1290: -3,16 + - node: + color: '#EFD84150' + id: QuarterTileOverlayGreyscale + decals: + 1508: -2,7 + 1509: -2,8 + 1510: -2,9 + 1511: -2,10 + 1512: -2,11 + 1513: -2,12 + - node: + color: '#FF3A3AEF' + id: QuarterTileOverlayGreyscale + decals: + 2467: -20,-18 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: 20: 29,-2 34: 24,1 - 960: 1,-38 - 961: 2,-38 - 962: 3,-38 - 963: 4,-38 - 970: 4,-37 - 971: 4,-36 - 973: 1,-44 + 1429: -2,5 + 1432: -1,4 + 1435: -3,5 + 1441: -2,-5 + 1442: -1,-6 + 1445: -3,-5 + - node: + color: '#43990950' + id: QuarterTileOverlayGreyscale180 + decals: + 2544: -39,-14 + - node: + color: '#43990996' + id: QuarterTileOverlayGreyscale180 + decals: + 2001: 16,-28 + 2002: 15,-28 + 2003: 14,-28 + 2051: -7,-28 + 2052: -8,-28 + 2053: -9,-28 + 2054: -10,-28 + 2055: -11,-28 + 2056: -12,-28 + 2057: -13,-28 + 2058: 0,-28 + 2059: 1,-28 + 2060: 2,-28 + 2061: 3,-28 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 244: 4,-6 - 245: 5,-6 - 246: 5,-5 - 303: 12,-15 + 807: 4,-7 + 808: 5,-7 + 809: 6,-7 + 810: 6,-6 + 811: 6,-5 + - node: + color: '#9FED5876' + id: QuarterTileOverlayGreyscale180 + decals: + 451: 2,-7 + 452: 3,-7 + 458: 6,-4 + 459: 6,-3 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 229: 0,-14 - 271: 0,-6 - 272: 1,-6 - 273: 2,-6 - 274: 5,-3 - 275: 5,-2 - 605: -20,-2 - 606: -19,-2 - 607: -18,-2 - 608: -17,-2 - 609: -16,-2 - 610: -15,-2 - 611: -14,-2 - 612: -13,-2 - 613: -12,-2 - 614: -11,-2 - 628: -30,4 - 629: -31,4 - 737: -9,-17 - 745: -15,-19 - 746: 0,-24 - 747: 0,-23 - 748: 0,-22 - 927: -19,-29 + 1824: 6,-43 + 1859: 12,-30 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 344: -6,14 + 1355: 1,18 + 1356: 2,18 + 1357: 3,18 + 1358: 4,18 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1194: -2,-16 - 1195: -1,-16 - 1196: 0,-16 - 1206: 1,-19 - 1207: 2,-19 - 1208: 3,-19 - 1209: -3,-19 - 1210: -4,-19 - 1211: -5,-19 + 359: -6,1 + 360: -6,2 + 361: -6,3 + 362: -5,3 + 363: -4,3 + 364: -3,3 + 2095: -27,-28 + 2096: -26,-28 + 2097: -25,-28 + 2098: -24,-28 + 2099: -23,-28 + 2100: -22,-28 + 2101: -21,-28 + 2102: -20,-28 + 2103: -19,-28 + 2104: -18,-28 + 2105: -17,-28 + 2112: -5,-28 + 2113: -4,-28 + 2114: -3,-28 + 2118: 5,-28 + 2119: 6,-28 + 2120: 7,-28 + 2121: 8,-28 + 2122: 9,-28 + 2123: 10,-28 + 2756: -40,-28 + 2757: -39,-28 + 2758: -38,-28 + 2759: -37,-28 + 2760: -36,-28 + 2761: -35,-28 + 2762: -34,-28 + 2763: -33,-28 + 2764: -32,-28 + 2765: -31,-28 + 2766: -30,-28 + 2767: -29,-28 + 2768: -28,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 294: 10,3 - 515: 12,21 + 1308: 17,14 + 1309: 11,14 + 1310: 12,14 - node: - color: '#EFB34196' + color: '#EFD2415D' id: QuarterTileOverlayGreyscale180 decals: - 807: 13,-29 - 808: 17,-28 - 809: 16,-28 - 810: 15,-28 - 811: 14,-28 - 812: 17,-27 - 840: 23,-27 - 877: 21,-27 - 928: -19,-30 + 1292: -5,14 + 1293: -4,14 + - node: + color: '#FF3A3AEF' + id: QuarterTileOverlayGreyscale180 + decals: + 2470: -21,-17 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: 40: 28,-3 - 964: -3,-38 - 965: -4,-38 - 966: -6,-38 - 967: -5,-38 - 968: -6,-37 - 969: -6,-36 - 974: -3,-44 + 1428: 0,5 + 1440: 0,-5 - node: - color: '#52B4E996' + color: '#4399095A' id: QuarterTileOverlayGreyscale270 decals: - 304: 10,-15 + 2294: -1,-48 - node: - color: '#9FED5896' + color: '#43990985' id: QuarterTileOverlayGreyscale270 decals: - 228: -2,-14 - 266: -7,-2 - 267: -7,-3 - 268: -4,-6 - 269: -3,-6 - 270: -2,-6 - 602: -26,-2 - 603: -25,-2 - 604: -24,-2 - 630: -32,4 - 631: -33,4 - 728: 7,-17 - 736: 13,-19 - 749: -2,-24 - 750: -2,-23 - 751: -2,-22 - 915: -14,-22 - 925: -21,-30 - 926: -21,-29 - 944: 12,-29 - 945: 12,-28 - 946: 12,-24 - 947: 12,-25 - 948: 12,-26 - 949: 12,-27 + 2730: -40,-28 + 2731: -39,-28 + 2732: -38,-28 + 2733: -37,-28 + 2734: -36,-28 + 2735: -35,-28 + 2736: -34,-28 + 2737: -33,-28 + 2738: -32,-28 + 2739: -31,-28 + 2740: -30,-28 + 2741: -29,-28 + 2742: -28,-28 - node: - color: '#A4610696' + color: '#43990996' id: QuarterTileOverlayGreyscale270 decals: - 345: -8,14 + 2035: -27,-28 + 2036: -26,-28 + 2037: -25,-28 + 2038: -24,-28 + 2039: -23,-28 + 2040: -22,-28 + 2041: -21,-28 + 2042: -20,-28 + 2043: -19,-28 + 2044: -18,-28 + 2045: -17,-28 + 2046: -16,-28 + 2047: -2,-28 + 2048: -3,-28 + 2049: -4,-28 + 2050: -5,-28 + 2062: 11,-28 + 2063: 10,-28 + 2064: 9,-28 + 2065: 8,-28 + 2066: 6,-28 + 2067: 7,-28 + 2068: 5,-28 + - node: + color: '#9FED5876' + id: QuarterTileOverlayGreyscale270 + decals: + 440: -8,-3 + 441: -8,-4 + 442: -8,-5 + 443: -8,-6 + 444: -8,-7 + 445: -7,-7 + 446: -6,-7 + 447: -5,-7 + 448: -4,-7 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 368: 2,3 + 369: 3,3 + 370: 4,3 + 371: 4,2 + 372: 4,1 + 595: 21,-18 + 603: 21,-25 + 606: 23,-26 + 699: 23,-19 + 2106: -12,-28 + 2107: -11,-28 + 2108: -10,-28 + 2109: -9,-28 + 2110: -8,-28 + 2111: -7,-28 + 2115: 1,-28 + 2116: 2,-28 + 2117: 3,-28 + 2139: 16,-28 + 2140: 15,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 247: -6,-6 - 248: -7,-6 - 249: -7,-5 - 516: 13,21 - 517: 11,21 + 1300: 2,14 + 1301: 3,14 + 1302: 4,14 + 1303: 5,14 + 1304: 6,14 + 1305: 7,14 + 1306: 8,14 + 1307: 9,14 + 1311: 14,14 + 1312: 15,14 + 1781: -8,-43 + 1842: -14,-30 - node: - color: '#EFB34196' + color: '#EFD2415D' id: QuarterTileOverlayGreyscale270 decals: - 841: 27,-27 - 878: 19,-27 + 1291: -7,14 + - node: + color: '#FF3A3AEF' + id: QuarterTileOverlayGreyscale270 + decals: + 2468: -20,-17 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: 41: 24,1 - 281: 2,-2 - 282: 2,-1 - 283: 2,1 - 284: 1,1 - 287: 0,1 - 289: 2,-3 - 616: -21,0 - 975: 1,-42 + 1431: -2,3 + 1439: -2,-7 + - node: + color: '#4399093E' + id: QuarterTileOverlayGreyscale90 + decals: + 261: 0,1 + 262: 1,1 + 263: 2,1 + 264: 2,-1 + 265: 2,-2 + 277: 2,-3 + - node: + color: '#4399095A' + id: QuarterTileOverlayGreyscale90 + decals: + 2295: -1,-49 + - node: + color: '#43990996' + id: QuarterTileOverlayGreyscale90 + decals: + 1983: 16,-26 + 1984: 15,-26 + 1985: 14,-26 + 1986: 13,-26 + 1987: 12,-26 + 1988: 11,-26 + 1991: 10,-26 + 1992: 9,-26 + 1993: 8,-26 + 1994: 7,-26 + 1995: 6,-26 + 1996: 5,-26 + 1997: 3,-26 + 1998: 4,-26 + 1999: 2,-26 + 2000: 1,-26 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 233: 1,-11 - 305: 12,-13 + 2360: 0,-14 + 2361: 0,-13 + 2362: 0,-12 + 2363: 0,-11 + 2364: 0,-10 + 2365: 0,-9 + - node: + color: '#9FED5876' + id: QuarterTileOverlayGreyscale90 + decals: + 420: 6,1 + 421: 6,2 + 427: 2,5 + 428: 3,5 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 230: 0,-10 - 261: 0,4 - 262: 1,4 - 263: 2,4 - 264: 5,1 - 265: 5,0 - 588: -11,0 - 589: -12,0 - 590: -13,0 - 591: -14,0 - 592: -15,0 - 593: -16,0 - 594: -17,0 - 595: -18,0 - 596: -20,0 - 597: -19,0 - 626: -31,5 - 627: -30,5 - 922: -15,-29 - 923: -19,-23 - 935: -10,-31 - 936: -12,-31 - 937: -11,-31 - 938: -13,-31 - 950: -4,-32 - 951: -5,-32 - 952: -6,-32 - 953: -8,-32 - 954: -9,-32 + 1825: 6,-40 + 2349: 0,-24 + 2350: 0,-23 + 2351: 0,-22 + 2352: 0,-21 + 2354: 0,-20 + 2355: 0,-19 + 2356: 0,-18 + 2357: 0,-17 + 2358: 0,-16 + 2359: 0,-15 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 347: -6,17 - 348: -6,16 + 1328: 1,16 + 1329: 2,16 + 1330: 3,16 + 1331: 4,16 + 1332: 5,16 + 1333: 6,16 + 1334: 7,16 + 1335: 8,16 + 1377: 8,27 + 1378: 8,26 + 1379: 8,25 + 1380: 8,24 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 341: -6,-1 + 342: -6,-2 + 343: -6,-3 + 344: -6,-4 + 345: -6,-5 + 346: -5,-5 + 347: -4,-5 + 348: -3,-5 + 349: -2,-5 + 596: 21,-19 + 597: 19,-18 + 604: 21,-26 + 605: 19,-25 + 2069: -4,-26 + 2070: -5,-26 + 2071: -6,-26 + 2072: -7,-26 + 2073: -8,-26 + 2074: -9,-26 + 2075: -10,-26 + 2076: -11,-26 + 2077: -12,-26 + 2078: -13,-26 + 2079: -14,-26 + 2080: -15,-26 + 2081: -16,-26 + 2082: -17,-26 + 2083: -18,-26 + 2084: -19,-26 + 2085: -20,-26 + 2086: -21,-26 + 2087: -22,-26 + 2088: -23,-26 + 2089: -24,-26 + 2090: -25,-26 + 2091: -26,-26 + 2092: -27,-26 + 2743: -28,-26 + 2744: -29,-26 + 2745: -30,-26 + 2746: -31,-26 + 2747: -32,-26 + 2748: -33,-26 + 2749: -34,-26 + 2750: -35,-26 + 2751: -36,-26 + 2752: -37,-26 + 2753: -38,-26 + 2754: -39,-26 + 2755: -40,-26 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 250: 5,3 - 251: 5,4 - 252: 4,4 - 295: 15,6 - 296: 14,6 - 297: 13,6 - 298: 12,6 - 299: 11,6 - 300: 10,6 - 543: 12,15 - 757: 22,-11 - 760: 21,-11 + 812: 6,3 + 813: 6,4 + 814: 6,5 + 815: 5,5 + 816: 4,5 + 1313: 17,16 + 1314: 16,16 + 1315: 15,16 + 1316: 14,16 + 1502: 0,7 + 1503: 0,8 + 1504: 0,9 + 1505: 0,10 + 1506: 0,11 + 1507: 0,12 + 1847: -19,-37 - node: - color: '#EFB34196' + color: '#EFD2415D' id: QuarterTileOverlayGreyscale90 decals: - 805: 13,-22 - 806: 13,-23 - 813: 17,-25 - 814: 17,-24 - 815: 15,-24 - 816: 14,-24 - 845: 21,-22 - 873: 34,-16 - 874: 33,-16 - 875: 21,-25 + 1221: -8,10 + - node: + color: '#FF3A3AEF' + id: QuarterTileOverlayGreyscale90 + decals: + 2469: -21,-18 - node: color: '#FFFFFFFF' - id: StandClear + id: Remains decals: - 779: 32,-21 + 2479: -23,-5 - node: - color: '#9FED5896' + color: '#FFFFFFFF' + id: Rock01 + decals: + 1474: -3,19 + - node: + color: '#FFFFFFFF' + id: Rock02 + decals: + 1475: -3,21 + - node: + color: '#EFD2415D' id: ThreeQuarterTileOverlayGreyscale decals: - 91: 9,1 - 225: -3,-10 - 358: -4,16 - 561: 6,15 - 622: -34,5 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 318: -12,11 - 337: -15,16 - 427: -12,31 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 92: 15,-3 - 227: 1,-14 - 352: 2,8 - 546: 14,10 - 739: -9,-19 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 319: -7,9 - 339: -11,15 - 411: -6,19 + 1215: -8,11 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 @@ -1897,28 +3322,6 @@ entities: 21: 30,-3 36: 25,1 37: 26,0 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 90: 9,-3 - 226: -3,-14 - 350: -4,8 - 545: 6,10 - 623: -34,4 - 730: 7,-19 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 320: -12,9 - 336: -15,15 - 439: -12,19 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 570: 8,21 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 @@ -1927,936 +3330,1278 @@ entities: 42: 27,-3 43: 26,-2 - node: + angle: -1.5707963267948966 rad color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 89: 15,1 - 224: 1,-10 - 360: 2,16 - 559: 14,15 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 317: -7,11 - 338: -11,16 - 422: -6,31 - - node: - color: '#FFFFFFFF' id: WarnBox decals: - 23: 34,-6 - 24: 34,-4 - 25: 34,2 - 26: 34,4 + 1793: 8,-46 + 1794: 9,-46 + 1795: 10,-46 + 1796: 11,-46 + 1797: 12,-46 + 1798: 14,-44 + 1799: 14,-43 + 1800: 14,-42 + 1801: 14,-41 + 1802: 14,-40 + 1803: 14,-39 + - node: + color: '#DE3A3A96' + id: WarnBoxGreyscale + decals: + 1691: -14,-46 + 1692: -13,-46 + 1693: -12,-46 + 1694: -11,-46 + 1695: -10,-46 + 1696: -16,-44 + 1697: -16,-43 + 1698: -16,-42 + 1699: -16,-41 + 1700: -16,-40 + 1701: -16,-39 - node: color: '#FFFFFFFF' - id: WarnCornerSE + id: WarnCornerGreyscaleNE decals: - 1281: 20,-30 + 1184: 7,32 - node: color: '#FFFFFFFF' - id: WarnCornerSW + id: WarnCornerGreyscaleNW decals: - 1280: 24,-30 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNE - decals: - 1241: 28,-32 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNW - decals: - 1240: 34,-32 + 1183: -1,32 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE decals: - 1239: 28,-29 + 723: 13,-6 + 1192: -1,32 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSW decals: - 1238: 34,-29 + 1187: 7,32 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 890: 21,-19 - 903: 31,-16 + 1172: 0,32 + 1173: 3,32 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 889: 23,-19 - 902: 33,-16 + 1174: 3,32 + 1175: 6,32 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 773: 29,-21 - 887: 21,-15 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 767: 29,-27 + 1072: -16,20 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 888: 23,-15 + 1071: -11,20 + - node: + color: '#52B4E996' + id: WarnFullGreyscale + decals: + 484: 10,-4 + 485: 9,-4 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 482: 9,2 + 483: 10,2 + 993: 13,17 + 994: 13,21 + - node: + color: '#FA750096' + id: WarnFullGreyscale + decals: + 790: 9,-8 + - node: + color: '#FFFFFFFF' + id: WarnFullGreyscale + decals: + 1127: -12,23 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 468: 3,30 - 469: 3,31 - 472: 3,32 - 477: 10,28 - 774: 29,-26 - 775: 29,-25 - 776: 29,-24 - 777: 29,-23 - 778: 29,-22 - 859: 29,-19 - 860: 29,-18 - 861: 29,-17 - 884: 21,-18 - 885: 21,-17 - 886: 21,-16 - 1284: 20,-29 + 200: 35,-7 + 201: 35,-6 + 202: 35,-5 + 203: 35,-4 + 204: 35,-3 + 205: 35,-2 + 206: 35,-1 + 207: 35,0 + 208: 35,1 + 209: 35,2 + 210: 35,3 + 211: 35,4 + 212: 35,5 + 769: 4,-13 + 770: 4,-12 + 771: 4,-11 + 772: 4,-10 + 774: 4,-9 + 1008: 16,22 + 1009: 16,23 + 1010: 16,24 + 1011: 16,25 + 1012: 16,26 + 1013: 16,27 + 1014: 16,28 + 1066: -16,15 + 1067: -16,16 + 1068: -16,17 + 1069: -16,18 + 1070: -16,19 + 1404: 4,19 + 1405: 4,20 + 1498: 7,7 + 1499: 7,8 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 887: 17,10 + 888: 17,4 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 1181: 1,-17 - 1236: 28,-31 - 1237: 28,-30 + 712: 13,-13 + 713: 13,-12 + 714: 13,-11 + 715: 13,-9 + 716: 13,-10 + 717: 13,-8 + 718: 13,-7 + 1179: -1,30 + 1180: -1,31 + 1181: 7,30 + 1182: 7,31 + 1195: 5,34 + 1196: 5,35 + 1391: -21,19 + 1392: -21,20 + 1393: -21,21 + 1394: -21,22 + 1395: -21,23 + 1396: -21,24 + 1397: -21,25 + 1398: -21,26 + 1399: -21,27 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleN + decals: + 700: 33,-26 + 701: 30,-16 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 480: 9,1 + 481: 10,1 + 702: 33,-16 + 889: 10,12 + 890: 16,12 + 992: 13,20 + - node: + color: '#FA750096' + id: WarnLineGreyscaleN + decals: + 788: 5,-9 + 789: 9,-9 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1179: 3,-19 - 1180: -1,-16 - 1182: -4,-19 - 1183: -5,-19 + 1348: -12,22 + 2671: -41,-5 + 2672: -39,-5 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleS + decals: + 478: 9,-3 + 479: 10,-3 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 991: 13,18 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1178: -1,-20 + 719: 14,-6 + 720: 15,-6 + 721: 16,-6 + 722: 17,-6 + 1126: -12,24 + 1188: 6,32 + 1189: 5,32 + 1190: 1,32 + 1191: 0,32 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 886: 9,10 + 1500: 9,7 + 1501: 9,8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1234: 34,-31 - 1235: 34,-30 - - node: - color: '#DE3A3A96' - id: WarnLineN - decals: - 522: 13,31 - 523: 5,31 - 536: 12,31 - 538: 12,31 - 539: 13,31 - 540: 5,31 - 541: 6,31 - 542: 6,31 + 213: 35,-7 + 214: 35,-6 + 215: 35,-5 + 216: 35,-4 + 217: 35,-3 + 218: 35,-2 + 219: 35,-1 + 220: 35,0 + 221: 35,1 + 222: 35,2 + 223: 35,3 + 224: 35,4 + 225: 35,5 + 1176: -1,30 + 1177: -1,31 + 1185: 7,30 + 1186: 7,31 + 1193: 1,34 + 1194: 1,35 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 667: -11,-9 - 668: -12,-9 - 669: -13,-9 - 670: -14,-9 - 671: -15,-9 - 672: -16,-9 - 768: 34,-21 - 769: 33,-21 - 770: 32,-21 - 771: 31,-21 - 772: 30,-21 - 800: 34,-14 - 801: 33,-14 - 802: 32,-14 - 803: 31,-14 - 804: 30,-14 - 853: 26,-20 - 854: 25,-20 - 855: 24,-20 - 856: 21,-20 - 857: 20,-20 - 858: 19,-20 - 882: 22,-15 - 1225: 19,-26 - 1226: 20,-26 - 1227: 21,-26 - 1282: 19,-30 - 1283: 25,-30 + 1062: -12,20 + 1063: -13,20 + 1064: -14,20 + 1065: -15,20 + 1092: -8,24 + 1093: -7,24 + 1094: -6,24 + 1095: -5,24 + 1096: -4,24 + 1481: -22,19 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 443: -14,25 - 444: -14,27 - 445: -14,26 - 446: -14,24 - 447: -14,28 - 448: -14,29 - 449: -14,23 - 470: 15,30 - 471: 15,31 - 478: 8,28 - 531: 15,32 - 862: 29,-19 - 863: 29,-18 - 864: 29,-17 - 879: 23,-18 - 880: 23,-17 - 881: 23,-16 - 1285: 24,-29 + 1001: 10,22 + 1002: 10,23 + 1003: 10,24 + 1004: 10,25 + 1005: 10,26 + 1006: 10,27 + 1007: 10,28 + 1057: -11,15 + 1058: -11,16 + 1059: -11,17 + 1060: -11,18 + 1061: -11,19 + 1406: 6,19 + 1407: 6,20 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 81: 11,-8 - 82: 12,-8 - 83: 13,-8 - 450: -10,31 - 661: -11,-5 - 662: -12,-5 - 663: -13,-5 - 664: -14,-5 - 665: -15,-5 - 666: -16,-5 - 763: 34,-27 - 764: 33,-27 - 765: 32,-27 - 766: 30,-27 - 788: 31,-27 - 847: 26,-20 - 848: 24,-20 - 849: 25,-20 - 850: 21,-20 - 851: 20,-20 - 852: 19,-20 - 883: 22,-19 - 901: 32,-16 - 1228: 21,-26 - 1229: 20,-26 - 1230: 19,-26 + 1168: 2,32 + 1169: 4,32 + 1170: 5,32 + 1171: 1,32 + 1349: -6,22 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 289: 0,-1 + 1935: 9,-31 + 2703: -48,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 291: -2,-1 + 1936: 6,-31 + 2704: -52,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 1041: -20,11 + 1939: 9,-36 + 2474: -21,-7 + 2706: -48,3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 1042: -22,11 + 1937: 6,-32 + 1938: 8,-36 + 2473: -23,-7 + 2705: -52,3 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 1030: 24,21 - 1063: -24,2 - 1091: 22,10 + 944: 22,19 + 960: 25,10 + 2459: -20,3 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1031: 32,21 - 1089: 34,10 + 709: 21,-24 + 943: 30,19 + 959: 34,10 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1082: -3,-28 - 1090: 22,13 + 282: -4,1 + 945: 22,22 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 1081: 1,-28 - 1092: 34,13 + 281: 2,1 + 706: 21,-20 + 946: 30,22 + 1950: 8,-32 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 990: 20,19 - 991: 20,20 - 992: 20,21 - 993: 20,22 - 994: 20,18 - 1000: 18,18 - 1001: 18,19 - 1002: 18,20 - 1003: 18,21 - 1004: 18,22 - 1013: 30,18 - 1014: 30,17 - 1015: 30,16 - 1021: 24,22 - 1059: -24,3 - 1060: -24,4 - 1061: -24,5 - 1062: -24,6 - 1064: -23,10 - 1065: -23,11 - 1085: 22,11 - 1086: 22,12 + 237: -4,0 + 273: -4,-3 + 274: -4,-2 + 275: -4,-1 + 287: 0,-3 + 288: 0,-2 + 925: 22,20 + 926: 22,21 + 955: 25,11 + 956: 25,12 + 1040: -20,12 + 1048: -23,3 + 1049: -23,4 + 1050: -23,5 + 1051: -23,6 + 1052: -23,7 + 1943: 9,-35 + 1944: 9,-34 + 1945: 9,-33 + 1946: 9,-32 + 2455: -20,4 + 2456: -20,5 + 2457: -20,6 + 2458: -20,7 + 2707: -48,4 + 2708: -48,5 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1008: 26,18 - 1009: 27,18 - 1010: 28,18 - 1011: 29,18 - 1012: 30,18 - 1023: 31,21 - 1024: 30,21 - 1025: 29,21 - 1026: 28,21 - 1027: 27,21 - 1028: 26,21 - 1029: 25,21 - 1043: 23,10 - 1044: 24,10 - 1045: 25,10 - 1046: 26,10 - 1047: 27,10 - 1048: 28,10 - 1049: 29,10 - 1050: 30,10 - 1051: 31,10 - 1052: 32,10 - 1053: 33,10 - 1054: -19,2 - 1055: -20,2 - 1056: -21,2 - 1057: -22,2 - 1058: -23,2 - 1073: -22,8 - 1074: -23,8 - 1075: -24,8 - 1076: -25,8 - 1077: -26,8 + 290: -1,-1 + 710: 20,-24 + 711: 19,-24 + 936: 23,19 + 937: 24,19 + 938: 25,19 + 939: 26,19 + 940: 27,19 + 941: 28,19 + 942: 29,19 + 947: 26,10 + 948: 27,10 + 949: 28,10 + 950: 29,10 + 951: 30,10 + 952: 31,10 + 953: 32,10 + 954: 33,10 + 1032: -23,9 + 1033: -22,9 + 1034: -21,9 + 1035: -20,9 + 1036: -19,9 + 1947: 8,-31 + 1948: 7,-31 + 2453: -18,3 + 2454: -19,3 + 2499: -26,-11 + 2500: -25,-11 + 2501: -24,-11 + 2502: -23,-11 + 2503: -22,-11 + 2504: -21,-11 + 2505: -20,-11 + 2506: -19,-11 + 2711: -51,6 + 2712: -50,6 + 2713: -49,6 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1016: 30,16 - 1017: 29,16 - 1018: 28,16 - 1019: 27,16 - 1020: 26,16 - 1032: 33,13 - 1033: 32,13 - 1034: 31,13 - 1035: 30,13 - 1036: 29,13 - 1037: 28,13 - 1038: 27,13 - 1039: 26,13 - 1040: 23,13 - 1041: 24,13 - 1042: 25,13 - 1068: -22,12 - 1069: -23,12 - 1070: -24,12 - 1071: -25,12 - 1072: -26,12 - 1078: 0,-28 - 1079: -1,-28 - 1080: -2,-28 - 1083: 1,0 - 1084: -3,0 + 240: -1,1 + 283: -3,1 + 284: -2,1 + 285: 0,1 + 286: 1,1 + 707: 20,-20 + 708: 19,-20 + 927: 23,22 + 928: 24,22 + 929: 25,22 + 930: 26,22 + 931: 27,22 + 932: 28,22 + 933: 29,22 + 1027: -23,13 + 1028: -22,13 + 1029: -21,13 + 1030: -20,13 + 1031: -19,13 + 1043: -21,11 + 1949: 7,-32 + 2472: -22,-7 + 2714: -51,3 + 2715: -50,3 + 2716: -49,3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 995: 19,18 - 996: 19,19 - 997: 19,20 - 998: 19,21 - 999: 19,22 - 1005: 26,16 - 1006: 26,17 - 1007: 26,18 - 1022: 32,22 - 1066: -25,10 - 1067: -25,11 - 1087: 34,11 - 1088: 34,12 + 245: 2,0 + 278: 2,-3 + 279: 2,-2 + 280: 2,-1 + 292: -2,-3 + 293: -2,-2 + 703: 21,-23 + 704: 21,-22 + 705: 21,-21 + 934: 30,21 + 935: 30,20 + 957: 34,11 + 958: 34,12 + 1037: -22,12 + 1940: 8,-35 + 1941: 8,-34 + 1942: 8,-33 + 2709: -52,4 + 2710: -52,5 + - node: + color: '#FFFFFFFF' + id: b + decals: + 1479: -34,26 + - node: + color: '#FFFFFFFF' + id: engie + decals: + 2235: -16,15 + - node: + color: '#DE3A3A96' + id: largebrush + decals: + 1478: -34,26 + - node: + color: '#D4D4D496' + id: matt + decals: + 2234: -16,-46 - type: GridAtmosphere version: 2 data: tiles: - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 -4,-4: - 0: 52431 + 0: 65520 + -5,-4: + 0: 65520 -4,-3: - 0: 65532 + 0: 65524 -4,-2: - 0: 65535 + 0: 61695 + -5,-2: + 0: 62549 -4,-1: - 0: 65535 + 0: 65520 + -5,-1: + 0: 65520 + -4,0: + 0: 61695 + -4,-5: + 0: 26112 -3,-4: - 0: 64719 + 0: 65520 -3,-3: - 0: 65535 + 0: 30576 -3,-2: - 0: 65535 + 0: 28791 -3,-1: - 0: 65535 + 0: 65392 + -3,-5: + 0: 47872 + -3,0: + 0: 28799 -2,-4: - 0: 65535 + 0: 65520 -2,-3: - 0: 65535 + 0: 65520 -2,-2: - 0: 65535 + 0: 65520 -2,-1: - 0: 65535 + 0: 30583 + -2,-5: + 0: 56576 + -2,0: + 0: 63351 -1,-4: - 0: 65535 + 0: 65534 -1,-3: - 0: 65535 + 0: 61422 -1,-2: - 0: 65535 + 0: 65532 + -1,-1: + 0: 65520 + -1,0: + 0: 61695 + -1,-5: + 0: 61422 0,-4: - 0: 65535 + 0: 46079 0,-3: - 0: 65535 + 0: 49151 0,-2: + 0: 65521 + 0,-1: + 0: 32624 + 0,-5: 0: 65535 + 0,0: + 0: 61559 1,-4: - 0: 65023 - 1: 512 + 0: 61695 1,-3: 0: 65535 1,-2: - 0: 65535 + 0: 30578 1,-1: + 0: 65399 + 1,-5: 0: 65535 + 1,0: + 0: 30591 2,-4: - 0: 65535 + 0: 29303 2,-3: 0: 65535 2,-2: - 0: 65535 + 0: 65522 2,-1: - 0: 65535 + 0: 65526 + 2,-5: + 0: 32767 + 2,0: + 0: 63231 3,-4: - 0: 65535 + 0: 65295 3,-3: 0: 65535 3,-2: 0: 65535 3,-1: + 0: 65530 + 3,-5: 0: 65535 - -4,0: + 3,0: + 0: 64255 + 4,-4: + 0: 65291 + 4,-3: 0: 65535 + 4,-2: + 0: 49075 + 4,-1: + 0: 65464 + -5,0: + 0: 61695 -4,1: - 0: 65535 + 0: 56784 + -5,1: + 0: 65527 -4,2: - 0: 65535 + 0: 56784 + -5,2: + 0: 65528 -4,3: - 0: 65535 - -3,0: + 0: 61663 + -5,3: + 0: 25343 + -4,4: 0: 65535 -3,1: - 0: 65535 + 0: 30576 -3,2: - 0: 65535 + 0: 56784 -3,3: - 0: 65535 - -2,0: + 0: 64733 + -3,4: 0: 65535 -2,1: - 0: 65535 + 0: 63231 -2,2: 0: 65535 -2,3: - 0: 65535 - -1,0: - 0: 65535 + 0: 61007 + -2,4: + 0: 65486 -1,1: - 0: 65535 + 0: 60671 -1,2: - 0: 65535 + 0: 65279 -1,3: - 0: 65535 - 0,0: - 0: 65535 + 0: 65487 + -1,4: + 0: 64975 0,1: - 0: 65535 + 0: 45567 0,2: - 0: 65535 + 0: 47931 0,3: - 0: 65535 - 1,0: - 0: 65535 + 0: 65307 + 0,4: + 0: 65311 1,1: - 0: 65535 + 0: 61559 1,2: - 0: 65535 + 0: 65295 1,3: - 0: 65535 - 2,0: - 0: 65535 + 0: 65295 + 1,4: + 0: 56591 2,1: - 0: 65535 + 0: 63231 2,2: - 0: 65535 + 0: 61423 2,3: - 0: 65535 - 3,0: - 0: 65535 + 0: 65359 + 2,4: + 0: 64783 3,1: 0: 65535 3,2: 0: 65535 3,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 + 0: 65407 + 3,4: + 0: 65327 + 4,0: + 0: 47295 + 4,1: + 0: 46015 + 4,2: + 0: 48955 + 4,3: + 0: 65311 + 4,-5: + 0: 49151 5,-4: - 0: 65535 + 0: 65295 5,-3: 0: 65535 5,-2: - 0: 65535 + 0: 65520 5,-1: 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-6: - 0: 65535 5,-5: 0: 65535 - 6,-6: + 5,0: + 0: 65535 + 6,-4: + 0: 15 + 1: 3584 + 6,-2: + 0: 65520 + 6,-1: 0: 65535 6,-5: 0: 65535 - 7,-6: + 6,-3: + 1: 57344 + 6,0: + 0: 65535 + 7,-4: + 0: 61007 + 7,-2: + 0: 65524 + 7,-1: 0: 65535 7,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: + 0: 65407 + 7,-3: + 0: 61166 + 7,0: 0: 65535 8,-4: - 0: 65535 + 0: 30247 8,-3: - 0: 65535 + 0: 26487 8,-2: - 0: 65535 + 0: 65520 8,-1: - 0: 65535 - -4,4: - 0: 61439 - -4,5: - 0: 65262 - -4,6: - 0: 65535 - -4,7: + 0: 56831 + 4,4: + 0: 56719 + 5,1: + 0: 61695 + 5,2: + 0: 65295 + 5,3: + 0: 65295 + 5,4: + 0: 61167 + 6,1: 0: 61183 - -3,4: + 6,3: + 0: 65294 + 6,2: + 0: 60942 + 6,4: 0: 65535 - -3,5: + 7,1: + 0: 57599 + 7,2: + 0: 65294 + 7,3: + 0: 65327 + 7,4: 0: 65535 - -3,6: + 8,0: + 0: 65533 + 8,1: + 0: 45311 + 8,2: + 0: 30475 + 8,3: + 0: 30471 + 8,4: + 0: 26183 + 8,-5: + 0: 30471 + 4,-8: + 0: 3003 + 4,-9: + 0: 47899 + 3,-8: + 0: 15291 + 4,-7: + 0: 36863 + 3,-7: + 0: 36863 + 4,-6: + 2: 819 + 0: 34952 + 3,-6: + 2: 4095 + 0: 16384 + 5,-8: + 0: 6007 + 5,-7: 0: 65535 - -3,7: + 5,-6: 0: 65535 - -2,4: + 5,-9: + 0: 30464 + 6,-7: 0: 65535 - -2,5: + 6,-6: 0: 65535 - -2,6: + 7,-7: + 0: 32767 + 7,-6: + 0: 30583 + 8,-7: + 0: 10103 + 8,-6: + 0: 30583 + 0,-8: + 0: 1365 + -1,-8: + 0: 36317 + 0,-7: + 0: 8191 + -1,-7: + 0: 53247 + 0,-6: 0: 65535 - -2,7: + -1,-6: + 0: 65534 + 1,-8: + 0: 3549 + 1,-7: + 0: 4095 + 1,-6: 0: 65535 - -1,4: + 1,-9: + 0: 20479 + 2,-8: + 0: 2039 + 2,-7: + 0: 4095 + 2,-6: + 0: 30583 + 2,-9: + 0: 30583 + 3,-9: + 0: 47935 + -4,-8: + 0: 26342 + -5,-8: + 0: 3822 + -4,-7: + 0: 20479 + -5,-7: + 0: 20479 + -4,-6: + 0: 4368 + -5,-5: + 0: 56576 + -4,-9: + 0: 26215 + -3,-8: + 0: 4095 + -3,-7: + 0: 20479 + -3,-9: + 0: 32767 + -3,-6: + 0: 4368 + -2,-8: + 0: 1365 + -2,-7: + 0: 20479 + -2,-9: + 0: 8191 + -2,-6: + 0: 4368 + -1,-9: + 0: 36863 + 4,5: + 0: 56781 + 3,5: + 0: 65295 + 4,6: + 0: 40413 + 3,6: 0: 65535 - -1,5: + 4,7: + 0: 20749 + 3,7: + 0: 65295 + 4,8: + 0: 345 + 5,5: + 0: 45055 + 5,6: + 0: 61182 + 5,7: + 0: 4096 + 6,5: 0: 65535 - -1,6: - 0: 12287 - -1,7: - 0: 12079 - 0,4: + 6,6: 0: 65535 + 7,5: + 0: 49151 + 7,6: + 0: 65535 + 8,5: + 0: 26487 + 8,6: + 0: 30583 0,5: - 0: 65535 + 0: 64767 + -1,5: + 0: 50685 0,6: 0: 65535 + -1,6: + 0: 56797 0,7: 0: 65535 - 1,4: - 0: 65535 + -1,7: + 0: 65260 + 0,8: + 0: 30543 1,5: - 0: 65535 + 0: 40157 1,6: 0: 65535 1,7: 0: 65535 - 2,4: - 0: 65535 + 1,8: + 0: 65311 2,5: - 0: 65535 + 0: 56605 2,6: - 0: 65535 + 0: 56797 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 65535 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 30719 - 4,7: - 0: 30583 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 255 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 255 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 255 - -6,4: - 0: 14 + 0: 52236 + 2,8: + 0: 3276 + 3,8: + 0: 4095 -5,4: - 0: 2185 + 0: 65030 + -4,5: + 0: 8191 -5,5: - 0: 32768 + 0: 65535 + -4,6: + 0: 56797 -5,6: - 0: 34952 + 0: 65535 + -4,7: + 1: 240 -5,7: - 0: 136 + 1: 224 + -3,5: + 0: 8191 + -3,6: + 0: 30583 + -3,7: + 1: 240 + -2,5: + 0: 20479 + -2,6: + 0: 65535 + -2,7: + 1: 240 + -1,8: + 0: 34830 + 1: 4352 + 5,8: + 0: 16 + 0,9: + 0: 4 + 1,9: + 0: 1 -8,0: - 0: 65535 + 0: 45311 + -8,-1: + 0: 65520 + -9,0: + 0: 62719 -8,1: + 0: 49147 + -9,1: 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: + -8,2: + 0: 13104 + -9,2: + 0: 65528 + -8,3: + 0: 51 + 1: 2048 + -9,3: 0: 255 + -7,0: + 0: 28927 + -7,1: + 0: 32759 + -7,3: + 1: 1792 + -7,-1: + 0: 65520 -6,0: - 0: 65535 + 0: 63743 -6,1: 0: 65535 -6,2: - 0: 65535 + 0: 65524 -6,3: - 0: 61183 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -4,8: - 0: 14 - -3,8: - 0: 4095 - -2,8: - 0: 287 - -1,8: - 0: 15 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: 0: 255 - 0,8: - 0: 4095 - 1,8: - 0: 4095 - 2,8: - 0: 4095 - 3,8: - 0: 4095 - 4,8: - 0: 1911 - -8,-1: - 0: 65535 - -8,-3: - 0: 34944 - -8,-2: - 0: 34952 - -7,-3: - 0: 65520 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-3: - 0: 65520 - -6,-2: - 0: 65535 -6,-1: - 0: 65535 - -5,-3: 0: 65520 - -5,-2: - 0: 65535 - -5,-1: + -8,-4: + 0: 65520 + -8,-5: + 0: 56576 + -9,-4: + 0: 65520 + -8,-3: + 0: 65520 + -9,-3: + 0: 56784 + -8,-2: 0: 65535 + -9,-2: + 0: 56797 -9,-1: - 0: 61166 - -9,0: - 0: 61166 - -9,1: - 0: 61166 - -4,-9: 0: 65520 - -3,-9: + -7,-4: 0: 65520 - -2,-9: - 0: 65535 - -1,-9: - 0: 65535 - 0,-9: - 0: 65535 - 1,-9: - 0: 65535 - 2,-9: - 0: 65535 - 3,-9: - 0: 65535 - 4,-8: - 0: 30719 - 2: 34816 - 4,-7: - 0: 65535 - 5,-8: - 0: 61183 - 2: 4352 - 5,-7: - 0: 65535 - 6,-8: - 0: 52479 - 3: 13056 - 6,-7: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 4,-9: - 0: 65280 - 5,-9: - 0: 65280 - 6,-9: - 0: 65280 - 7,-9: - 0: 61440 - 8,-9: - 0: 61440 - -5,-4: - 0: 8 - -2,-12: - 0: 61440 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -1,-12: + -7,-3: + 0: 41710 + -7,-2: + 0: 58026 + -7,-5: + 0: 26112 + -6,-4: 0: 65520 - -1,-11: + -6,-3: + 0: 61695 + -6,-2: + 0: 61695 + -6,-5: + 0: 47872 + -5,-3: + 0: 21623 + -8,4: + 1: 240 + 3: 28672 + -9,4: + 1: 17600 + -8,5: + 3: 119 + 1: 61440 + -9,5: + 1: 50244 + -8,6: + 4: 30576 + -8,7: + 1: 240 + -9,7: + 1: 196 + -7,4: + 1: 4592 + 0: 49152 + -7,5: + 1: 4369 + 0: 52428 + -7,6: + 1: 4369 + 0: 52428 + -7,7: + 1: 113 + -6,4: + 1: 240 + 0: 62464 + -6,5: 0: 65535 - -1,-10: + -6,6: 0: 65535 + -6,7: + 0: 4095 + -1,9: + 1: 1 + -9,6: + 1: 16452 + 0: 1024 0,-12: - 0: 63344 + 0: 61695 + 0,-13: + 0: 65280 + -1,-12: + 0: 61695 0,-11: 0: 65535 - 0,-10: + -1,-11: 0: 65535 + 0,-10: + 0: 4095 + -1,-10: + 0: 4095 + 0,-9: + 0: 4095 1,-12: - 0: 28672 + 0: 28791 1,-11: 0: 30583 1,-10: - 0: 30583 - -6,-9: - 0: 52352 + 0: 1911 + 1,-13: + 0: 63232 + 2,-12: + 0: 3855 + 2,-11: + 0: 65535 + 2,-10: + 0: 28927 + 2,-13: + 0: 61440 + 3,-12: + 0: 3535 + 3,-11: + 0: 21845 + 3,-10: + 0: 61525 + 3,-13: + 0: 61440 + 4,-12: + 0: 15280 + 4,-11: + 0: 47931 + 4,-10: + 0: 46003 + -4,-12: + 0: 3359 + -4,-13: + 0: 61440 + -5,-12: + 0: 28392 + -4,-11: + 0: 56797 + -4,-10: + 0: 28893 + -5,-10: + 0: 58982 -5,-9: - 0: 65520 - -6,-8: - 0: 65484 - -6,-7: + 0: 61006 + -3,-12: + 0: 1799 + -3,-11: + 0: 30583 + -3,-10: + 0: 28791 + -3,-13: + 0: 61440 + -2,-12: + 0: 61695 + -2,-11: 0: 65535 - -6,-6: + -2,-10: 0: 4095 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 + -2,-13: + 0: 65280 + -1,-13: + 0: 65280 + -8,-8: + 0: 16401 + -8,-9: + 0: 4096 + -8,-7: + 0: 20479 + -9,-7: + 0: 20479 + -8,-6: + 0: 4368 + -9,-5: + 0: 47872 + -7,-7: + 0: 20479 + -7,-8: + 0: 16401 + -7,-9: + 0: 4096 + -7,-6: + 0: 4368 + -6,-7: + 0: 20479 + -6,-8: + 0: 16401 + -6,-9: + 0: 4104 + -6,-6: + 0: 4368 -5,-6: - 0: 36863 - -5,-5: - 0: 34952 + 0: 4368 + -6,-13: + 0: 57344 + -6,-12: + 0: 2176 + -6,-11: + 0: 34824 + -6,-10: + 0: 32896 + -5,-13: + 0: 61440 + -5,-11: + 0: 26214 + 4,-13: + 0: 61440 + 5,-13: + 0: 12288 + -12,0: + 0: 53503 + -12,-1: + 0: 65520 + -13,0: + 0: 62719 + -12,1: + 0: 3549 + -13,1: + 0: 4095 + -11,0: + 0: 29183 + -11,1: + 0: 1911 + -11,-1: + 0: 65528 + -10,0: + 0: 61695 + -10,1: + 0: 61439 + -10,-1: + 0: 65522 + -10,2: + 0: 61152 + -10,3: + 0: 238 + -12,-2: + 0: 56797 + -13,-2: + 0: 65535 + -13,-1: + 0: 65524 + -12,-3: + 0: 52416 + -11,-3: + 0: 65520 + -11,-2: + 0: 65535 + -10,-3: + 0: 65520 + -10,-2: + 0: 65535 + -10,-4: + 0: 61152 + -10,-5: + 0: 26112 + -11,-7: + 0: 224 + -10,-7: + 0: 20479 + -10,-8: + 0: 16401 + -10,-9: + 0: 4096 + -10,-6: + 0: 4368 + -9,-8: + 0: 16401 + -9,-9: + 0: 4096 + -9,-6: + 0: 4368 + -14,-1: + 0: 65376 + -14,0: + 0: 111 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -2874,10 +4619,25 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + immutable: True moles: - - 20.078888 - - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 27.225372 + - 102.419266 - 0 - 0 - 0 @@ -2927,18045 +4687,2189 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: NavMap +- proto: AccessConfiguratorUniversal + entities: + - uid: 2056 + components: + - type: Transform + pos: -23.741184,9.797313 + parent: 1668 - proto: AcousticGuitarInstrument entities: - - uid: 1455 + - uid: 809 components: - type: Transform - pos: 15.537778,1.6263883 + pos: 16.5,1.5 parent: 1668 - - uid: 2742 +- proto: AdminHypo + entities: + - uid: 797 components: - type: Transform - pos: 4.5448904,18.624214 + pos: 18.301601,-13.340228 + parent: 1668 +- proto: AdvMopItem + entities: + - uid: 9082 + components: + - type: Transform + pos: -5.9092855,-8.453645 + parent: 1668 +- proto: AirAlarmFreezer + entities: + - uid: 8314 + components: + - type: Transform + pos: 15.5,-20.5 parent: 1668 - proto: AirCanister entities: - - uid: 3695 + - uid: 4115 components: - type: Transform - pos: -16.5,4.5 - parent: 1668 -- proto: Airlock - entities: - - uid: 5314 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 1668 -- proto: AirlockArmoryLocked - entities: - - uid: 2555 - components: - - type: Transform - pos: 7.5,19.5 - parent: 1668 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 4746 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 1668 - - uid: 5403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 1668 - - uid: 5404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-27.5 + pos: -23.5,30.5 parent: 1668 - proto: AirlockBarLocked entities: - - uid: 4343 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 1668 -- proto: AirlockBrigGlassLocked - entities: - - uid: 736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,20.5 - parent: 1668 - - uid: 816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,20.5 - parent: 1668 - - uid: 856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,16.5 - parent: 1668 - - uid: 898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,16.5 - parent: 1668 - - uid: 2299 - components: - - type: Transform - pos: 28.5,14.5 - parent: 1668 - - uid: 2316 - components: - - type: Transform - pos: 23.5,20.5 - parent: 1668 - - uid: 2340 - components: - - type: Transform - pos: 24.5,18.5 - parent: 1668 - - uid: 2342 - components: - - type: Transform - pos: 22.5,14.5 - parent: 1668 -- proto: AirlockBrigLocked - entities: - - uid: 2343 - components: - - type: Transform - pos: 33.5,20.5 - parent: 1668 -- proto: AirlockCargoGlassLocked - entities: - - uid: 1191 - components: - - type: Transform - pos: -5.5,7.5 - parent: 1668 - - uid: 1629 - components: - - type: Transform - pos: -6.5,13.5 - parent: 1668 - - uid: 1630 - components: - - type: Transform - pos: -10.5,13.5 - parent: 1668 - - uid: 1631 - components: - - type: Transform - pos: -8.5,15.5 - parent: 1668 -- proto: AirlockCargoLocked - entities: - - uid: 1192 - components: - - type: Transform - pos: -5.5,5.5 - parent: 1668 - - uid: 1632 - components: - - type: Transform - pos: -10.5,18.5 - parent: 1668 - - uid: 1633 - components: - - type: Transform - pos: -6.5,18.5 - parent: 1668 -- proto: AirlockCentralCommandGlass - entities: - - uid: 48 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 1668 - - uid: 49 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 1668 - - uid: 566 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1668 - - uid: 567 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 1668 - - uid: 568 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 1668 - - uid: 569 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 1668 - - uid: 570 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 1668 - - uid: 571 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 1668 - - uid: 572 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 1668 - - uid: 573 - components: - - type: Transform - pos: -26.5,0.5 - parent: 1668 - - uid: 3861 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 1668 - - uid: 3862 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 1668 - - uid: 4287 - components: - - type: Transform - pos: 8.5,0.5 - parent: 1668 - - uid: 4339 - components: - - type: Transform - pos: 6.5,0.5 - parent: 1668 - - uid: 4575 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 1668 - - uid: 4639 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 1668 - - uid: 4640 - components: - - type: Transform - pos: 18.5,-1.5 - parent: 1668 - - uid: 5253 - components: - - type: Transform - pos: 18.5,0.5 - parent: 1668 - - uid: 5414 - components: - - type: Transform - pos: 16.5,0.5 - parent: 1668 - - uid: 5420 - components: - - type: Transform - pos: 16.5,-1.5 - parent: 1668 - - uid: 5853 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1668 - - uid: 5945 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 1668 - - uid: 5946 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 1668 - - uid: 6276 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 1668 - - uid: 6278 - components: - - type: Transform - pos: -9.5,0.5 - parent: 1668 - - uid: 6279 - components: - - type: Transform - pos: -7.5,0.5 - parent: 1668 - - uid: 6313 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1668 - - uid: 6395 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1668 - - uid: 6396 - components: - - type: Transform - pos: 15.5,13.5 - parent: 1668 - - uid: 6475 - components: - - type: Transform - pos: 15.5,11.5 - parent: 1668 - - uid: 6476 - components: - - type: Transform - pos: 5.5,11.5 - parent: 1668 - - uid: 6477 - components: - - type: Transform - pos: 5.5,13.5 - parent: 1668 - - uid: 6478 - components: - - type: Transform - pos: 3.5,13.5 - parent: 1668 - - uid: 6479 - components: - - type: Transform - pos: 3.5,11.5 - parent: 1668 - - uid: 6480 - components: - - type: Transform - pos: -28.5,0.5 - parent: 1668 - - uid: 6481 - components: - - type: Transform - pos: -28.5,-1.5 - parent: 1668 - - uid: 6482 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 1668 - - uid: 6484 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 1668 - - uid: 6485 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 1668 - - uid: 6486 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 1668 - - uid: 6487 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 1668 -- proto: AirlockCentralCommandGlassLocked - entities: - - uid: 3572 - components: - - type: Transform - pos: -23.5,7.5 - parent: 1668 -- proto: AirlockCentralCommandLocked - entities: - - uid: 3781 - components: - - type: Transform - pos: -17.5,11.5 - parent: 1668 - - uid: 3782 - components: - - type: Transform - pos: -17.5,5.5 - parent: 1668 - - uid: 3792 - components: - - type: Transform - pos: -21.5,1.5 - parent: 1668 - - uid: 3793 - components: - - type: Transform - pos: -19.5,7.5 - parent: 1668 -- proto: AirlockChemistryGlassLocked - entities: - - uid: 731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 1668 -- proto: AirlockChemistryLocked - entities: - - uid: 732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 1668 - - uid: 734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 1668 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 5175 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 1668 -- proto: AirlockEngineeringLocked - entities: - - uid: 1131 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 1668 - - uid: 1177 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 1668 - - uid: 1534 - components: - - type: Transform - pos: -0.5,17.5 - parent: 1668 - - uid: 2522 - components: - - type: Transform - pos: 14.5,16.5 - parent: 1668 - - uid: 3948 - components: - - type: Transform - pos: -28.5,4.5 - parent: 1668 - - uid: 4258 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 1668 - - uid: 4755 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 1668 - - uid: 4756 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 1668 - - uid: 4763 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 1668 - - uid: 6005 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 1668 -- proto: AirlockExternalGlass - entities: - - uid: 481 - components: - - type: Transform - pos: 33.5,4.5 - parent: 1668 - - uid: 482 - components: - - type: Transform - pos: 33.5,2.5 - parent: 1668 - - uid: 483 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 1668 - - uid: 484 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 1668 - - uid: 3970 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 1668 - - uid: 3971 - components: - - type: Transform - pos: -32.5,0.5 - parent: 1668 - - uid: 6284 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 1668 - - uid: 6285 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 1668 -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,27.5 - parent: 1668 - - uid: 688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,25.5 - parent: 1668 - - uid: 729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,32.5 - parent: 1668 -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,22.5 - parent: 1668 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2011: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassLocked - entities: - - uid: 4243 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 1668 - - uid: 5961 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 1668 - - uid: 5962 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 1668 -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 1668 - - uid: 435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1668 - - uid: 436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 1668 - - uid: 437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 1668 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 1613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,25.5 - parent: 1668 - - uid: 1614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 1668 - - uid: 1672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,34.5 - parent: 1668 - - uid: 3968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 1668 - - uid: 3969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,0.5 - parent: 1668 - - uid: 5959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 1668 - - uid: 5960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 1668 - - uid: 6282 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 1668 - - uid: 6283 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 1668 -- proto: AirlockExternalLocked - entities: - - uid: 777 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 1668 - - uid: 2011 - components: - - type: Transform - pos: -2.5,25.5 - parent: 1668 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 730: - - DoorStatus: DoorBolt - - uid: 4242 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 1668 -- proto: AirlockFreezer - entities: - - uid: 3419 - components: - - type: Transform - pos: -21.5,13.5 - parent: 1668 -- proto: AirlockGlass - entities: - - uid: 3947 - components: - - type: Transform - pos: -30.5,2.5 - parent: 1668 - - uid: 4259 - components: - - type: Transform - pos: 21.5,12.5 - parent: 1668 - - uid: 4260 - components: - - type: Transform - pos: 21.5,11.5 - parent: 1668 -- proto: AirlockKitchenGlassLocked - entities: - - uid: 4342 - components: - - type: Transform - pos: -7.5,-24.5 - parent: 1668 -- proto: AirlockKitchenLocked - entities: - - uid: 4341 - components: - - type: Transform - pos: -12.5,-22.5 - parent: 1668 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 557 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 1668 - - uid: 558 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 1668 -- proto: AirlockMedicalLocked - entities: - - uid: 574 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 1668 - - uid: 852 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 1668 - - uid: 854 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 1668 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 130 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 1668 - - uid: 774 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 1668 - - uid: 974 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 1668 -- proto: AirlockSecurityLawyerLocked - entities: - - uid: 349 - components: - - type: Transform - pos: 19.5,17.5 - parent: 1668 - - uid: 354 - components: - - type: Transform - pos: 21.5,22.5 - parent: 1668 - - uid: 356 - components: - - type: Transform - pos: 21.5,18.5 - parent: 1668 -- proto: AirlockSecurityLocked - entities: - - uid: 509 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 1668 - - uid: 549 - components: - - type: Transform - pos: 18.5,5.5 - parent: 1668 - - uid: 550 - components: - - type: Transform - pos: 16.5,5.5 - parent: 1668 - - uid: 551 - components: - - type: Transform - pos: 8.5,3.5 - parent: 1668 - - uid: 552 - components: - - type: Transform - pos: 6.5,3.5 - parent: 1668 - - uid: 775 - components: - - type: Transform - pos: -5.5,-6.5 - parent: 1668 - - uid: 2825 - components: - - type: Transform - pos: 5.5,23.5 - parent: 1668 -- proto: APCHyperCapacity - entities: - - uid: 905 - components: - - type: Transform - pos: -3.5,5.5 - parent: 1668 - - uid: 963 - components: - - type: Transform - pos: 20.5,6.5 - parent: 1668 - - uid: 977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-7.5 - parent: 1668 - - uid: 978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 1668 - - uid: 979 - components: - - type: Transform - pos: 9.5,2.5 - parent: 1668 - - uid: 1088 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1668 - - uid: 1185 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1668 - - uid: 1188 - components: - - type: Transform - pos: -2.5,2.5 - parent: 1668 - - uid: 1201 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 1668 - - uid: 1235 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 1668 - - uid: 1341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1668 - - uid: 1615 - components: - - type: Transform - pos: -14.5,18.5 - parent: 1668 - - uid: 1616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 1668 - - uid: 1673 - components: - - type: Transform - pos: -8.5,13.5 - parent: 1668 - - uid: 1674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,19.5 - parent: 1668 - - uid: 1675 - components: - - type: Transform - pos: 1.5,17.5 - parent: 1668 - - uid: 1676 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1668 - - uid: 1677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1668 - - uid: 1955 - components: - - type: Transform - pos: 17.5,17.5 - parent: 1668 - - uid: 2010 - components: - - type: Transform - pos: 24.5,14.5 - parent: 1668 - - uid: 2235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,21.5 - parent: 1668 - - uid: 2300 - components: - - type: Transform - pos: 9.5,26.5 - parent: 1668 - - uid: 2317 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1668 - - uid: 2344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,30.5 - parent: 1668 - - uid: 2497 - components: - - type: Transform - pos: -22.5,7.5 - parent: 1668 - - uid: 2498 - components: - - type: Transform - pos: -16.5,13.5 - parent: 1668 - - uid: 2499 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1668 - - uid: 2500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 1668 - - uid: 2556 - components: - - type: Transform - pos: -31.5,2.5 - parent: 1668 - - uid: 2558 - components: - - type: Transform - pos: -31.5,7.5 - parent: 1668 - - uid: 2562 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1668 - - uid: 2563 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 1668 - - uid: 2564 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1668 - - uid: 2565 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1668 - - uid: 2566 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 1668 - - uid: 2755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 1668 - - uid: 2771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 1668 - - uid: 2776 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 1668 - - uid: 2790 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 1668 - - uid: 2823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 1668 - - uid: 2832 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 1668 - - uid: 2858 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 1668 - - uid: 2859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 1668 - - uid: 2862 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1668 - - uid: 2863 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 1668 - - uid: 2876 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 1668 - - uid: 2886 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 1668 - - uid: 2920 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 1668 - - uid: 2925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 1668 - - uid: 2926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1668 - - uid: 2927 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1668 - - uid: 2928 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 1668 - - uid: 2944 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 1668 - - uid: 2945 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 1668 - - uid: 6977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,19.5 - parent: 1668 -- proto: Ash - entities: - - uid: 3828 - components: - - type: Transform - pos: -10.652057,6.7775984 - parent: 1668 -- proto: AtmosDeviceFanTiny - entities: - - uid: 438 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 1668 - - uid: 439 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 1668 - - uid: 440 - components: - - type: Transform - pos: 35.5,2.5 - parent: 1668 - - uid: 441 - components: - - type: Transform - pos: 35.5,4.5 - parent: 1668 - - uid: 553 - components: - - type: Transform - pos: 7.5,3.5 - parent: 1668 - - uid: 554 - components: - - type: Transform - pos: 17.5,5.5 - parent: 1668 - - uid: 555 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 1668 - - uid: 556 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 1668 - - uid: 763 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 1668 - - uid: 1473 - components: - - type: Transform - pos: -5.5,6.5 - parent: 1668 - - uid: 1474 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 1668 - - uid: 1634 - components: - - type: Transform - pos: -16.5,25.5 - parent: 1668 - - uid: 1635 - components: - - type: Transform - pos: -16.5,27.5 - parent: 1668 - - uid: 1671 - components: - - type: Transform - pos: -9.5,33.5 - parent: 1668 - - uid: 2012 - components: - - type: Transform - pos: -2.5,25.5 - parent: 1668 - - uid: 2921 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 1668 - - uid: 4144 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 1668 - - uid: 4145 - components: - - type: Transform - pos: -34.5,0.5 - parent: 1668 - - uid: 4241 - components: - - type: Transform - pos: -13.5,-16.5 - parent: 1668 - - uid: 5996 - components: - - type: Transform - pos: -23.5,-26.5 - parent: 1668 - - uid: 5997 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 1668 - - uid: 6286 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 1668 - - uid: 6287 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 1668 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 6789 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 1668 - - uid: 6963 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 1668 - - uid: 6964 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 1668 - - uid: 6965 - components: - - type: Transform - pos: 24.5,-28.5 - parent: 1668 - - uid: 6966 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 1668 -- proto: AtmosFixOxygenMarker - entities: - - uid: 5051 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 1668 - - uid: 6967 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 1668 - - uid: 6968 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 1668 - - uid: 6969 - components: - - type: Transform - pos: 20.5,-28.5 - parent: 1668 - - uid: 6970 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 1668 -- proto: Autolathe - entities: - - uid: 5310 - components: - - type: Transform - pos: 19.5,-22.5 - parent: 1668 -- proto: BarSignTheLooseGoose - entities: - - uid: 4345 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 1668 - - uid: 4346 - components: - - type: Transform - pos: -5.5,-24.5 - parent: 1668 -- proto: BaseGasCondenser - entities: - - uid: 640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-32.5 - parent: 1668 -- proto: Bed - entities: - - uid: 2718 - components: - - type: Transform - pos: 5.5,18.5 - parent: 1668 - - uid: 2763 - components: - - type: Transform - pos: 16.5,21.5 - parent: 1668 - - uid: 2774 - components: - - type: Transform - pos: 16.5,24.5 - parent: 1668 - - uid: 2864 - components: - - type: Transform - pos: 3.5,24.5 - parent: 1668 - - uid: 2865 - components: - - type: Transform - pos: 3.5,27.5 - parent: 1668 - - uid: 2866 - components: - - type: Transform - pos: 16.5,27.5 - parent: 1668 - - uid: 3624 - components: - - type: Transform - pos: -15.5,8.5 - parent: 1668 -- proto: BedsheetCentcom - entities: - - uid: 3625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 1668 - - uid: 6643 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 1668 -- proto: BedsheetHOS - entities: - - uid: 2719 - components: - - type: MetaData - name: Warden's - - type: Transform - pos: 5.5,18.5 - parent: 1668 -- proto: BedsheetMedical - entities: - - uid: 1199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-14.5 - parent: 1668 - - uid: 1200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 - parent: 1668 -- proto: BedsheetOrange - entities: - - uid: 2764 - components: - - type: Transform - pos: 16.5,21.5 - parent: 1668 - - uid: 2775 - components: - - type: Transform - pos: 16.5,24.5 - parent: 1668 - - uid: 2867 - components: - - type: Transform - pos: 3.5,24.5 - parent: 1668 - - uid: 2868 - components: - - type: Transform - pos: 3.5,27.5 - parent: 1668 - - uid: 2869 - components: - - type: Transform - pos: 16.5,27.5 - parent: 1668 -- proto: BiomassReclaimer - entities: - - uid: 6604 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 1668 -- proto: BlastDoor - entities: - - uid: 1552 - components: - - type: Transform - pos: -4.5,21.5 - parent: 1668 - - uid: 1607 - components: - - type: Transform - pos: -16.5,24.5 - parent: 1668 - - uid: 1608 - components: - - type: Transform - pos: -16.5,28.5 - parent: 1668 - - uid: 1609 - components: - - type: Transform - pos: -14.5,28.5 - parent: 1668 - - uid: 1610 - components: - - type: Transform - pos: -14.5,24.5 - parent: 1668 - - uid: 3787 - components: - - type: Transform - pos: -16.5,-7.5 - parent: 1668 - - uid: 3788 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 1668 - - uid: 3789 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 1668 - - uid: 4762 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 1668 -- proto: BlastDoorCentralCommand - entities: - - uid: 2946 - components: - - type: Transform - pos: 4.5,31.5 - parent: 1668 - - uid: 3420 - components: - - type: Transform - pos: 7.5,31.5 - parent: 1668 - - uid: 3431 - components: - - type: Transform - pos: 11.5,31.5 - parent: 1668 - - uid: 4476 - components: - - type: Transform - pos: 14.5,31.5 - parent: 1668 -- proto: BlastDoorExterior1Open - entities: - - uid: 710 - components: - - type: Transform - pos: 17.5,1.5 - parent: 1668 - - uid: 711 - components: - - type: Transform - pos: 17.5,0.5 - parent: 1668 - - uid: 712 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 1668 - - uid: 713 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 1668 - - uid: 714 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 1668 -- proto: BlastDoorExterior2Open - entities: - - uid: 716 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 1668 - - uid: 717 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 1668 - - uid: 718 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 1668 - - uid: 719 - components: - - type: Transform - pos: 7.5,0.5 - parent: 1668 - - uid: 720 - components: - - type: Transform - pos: 7.5,1.5 - parent: 1668 -- proto: BlastDoorOpen - entities: - - uid: 786 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 1668 - - uid: 787 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 1668 - - uid: 788 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 1668 - - uid: 1430 - components: - - type: Transform - pos: -1.5,6.5 - parent: 1668 - - uid: 1431 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1668 - - uid: 1432 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1668 - - uid: 1437 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 1668 - - uid: 1438 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 1668 - - uid: 1439 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 1668 - - uid: 1440 - components: - - type: Transform - pos: -8.5,0.5 - parent: 1668 - - uid: 1441 - components: - - type: Transform - pos: -8.5,1.5 - parent: 1668 - - uid: 2146 - components: - - type: Transform - pos: 4.5,10.5 - parent: 1668 - - uid: 2147 - components: - - type: Transform - pos: 4.5,11.5 - parent: 1668 - - uid: 2148 - components: - - type: Transform - pos: 4.5,12.5 - parent: 1668 - - uid: 2149 - components: - - type: Transform - pos: 4.5,13.5 - parent: 1668 - - uid: 2150 - components: - - type: Transform - pos: 4.5,14.5 - parent: 1668 - - uid: 3865 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 1668 - - uid: 3866 - components: - - type: Transform - pos: -27.5,0.5 - parent: 1668 - - uid: 5234 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 1668 - - uid: 5235 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1668 - - uid: 5236 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 1668 - - uid: 5237 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 1668 - - uid: 5238 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 1668 - - uid: 5239 - components: - - type: Transform - pos: 31.5,-19.5 - parent: 1668 - - uid: 5240 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 1668 - - uid: 5241 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 1668 - - uid: 5951 - components: - - type: Transform - pos: -16.5,-27.5 - parent: 1668 - - uid: 5952 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 1668 - - uid: 5953 - components: - - type: Transform - pos: -16.5,-25.5 - parent: 1668 - - uid: 5954 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 1668 - - uid: 5955 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 1668 - - uid: 6483 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 1668 - - uid: 6521 - components: - - type: Transform - pos: -2.5,-39.5 - parent: 1668 - - uid: 6522 - components: - - type: Transform - pos: -1.5,-39.5 - parent: 1668 - - uid: 6523 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 1668 - - uid: 6524 - components: - - type: Transform - pos: 0.5,-39.5 - parent: 1668 - - uid: 6525 - components: - - type: Transform - pos: 1.5,-39.5 - parent: 1668 -- proto: Bookshelf - entities: - - uid: 2370 - components: - - type: Transform - pos: 23.5,23.5 - parent: 1668 - - uid: 2371 - components: - - type: Transform - pos: 24.5,23.5 - parent: 1668 - - uid: 2372 - components: - - type: Transform - pos: 25.5,23.5 - parent: 1668 - - uid: 2373 - components: - - type: Transform - pos: 32.5,23.5 - parent: 1668 - - uid: 2374 - components: - - type: Transform - pos: 33.5,23.5 - parent: 1668 - - uid: 2375 - components: - - type: Transform - pos: 31.5,23.5 - parent: 1668 - - uid: 2376 - components: - - type: Transform - pos: 26.5,10.5 - parent: 1668 - - uid: 2377 - components: - - type: Transform - pos: 25.5,10.5 - parent: 1668 - - uid: 2378 - components: - - type: Transform - pos: 24.5,10.5 - parent: 1668 - - uid: 2379 - components: - - type: Transform - pos: 30.5,10.5 - parent: 1668 - - uid: 2380 - components: - - type: Transform - pos: 31.5,10.5 - parent: 1668 - - uid: 2382 - components: - - type: Transform - pos: 32.5,10.5 - parent: 1668 - - uid: 3433 - components: - - type: Transform - pos: -24.5,2.5 - parent: 1668 - - uid: 3434 - components: - - type: Transform - pos: -26.5,10.5 - parent: 1668 - - uid: 3821 - components: - - type: Transform - pos: -25.5,-3.5 - parent: 1668 - - uid: 4185 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 1668 - - uid: 4186 - components: - - type: Transform - pos: -27.5,-6.5 - parent: 1668 - - uid: 4187 - components: - - type: Transform - pos: -27.5,-5.5 - parent: 1668 -- proto: BookshelfFilled - entities: - - uid: 3631 - components: - - type: Transform - pos: 20.5,10.5 - parent: 1668 - - uid: 3716 - components: - - type: Transform - pos: 16.5,16.5 - parent: 1668 - - uid: 3717 - components: - - type: Transform - pos: 16.5,15.5 - parent: 1668 - - uid: 6607 - components: - - type: Transform - pos: 19.5,10.5 - parent: 1668 - - uid: 6650 - components: - - type: Transform - pos: 17.5,10.5 - parent: 1668 - - uid: 6933 - components: - - type: Transform - pos: 20.5,14.5 - parent: 1668 - - uid: 6934 - components: - - type: Transform - pos: 20.5,15.5 - parent: 1668 - - uid: 6935 - components: - - type: Transform - pos: 20.5,16.5 - parent: 1668 -- proto: BoozeDispenser - entities: - - uid: 4426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1668 - - uid: 4428 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 1668 -- proto: BoxFlashbang - entities: - - uid: 1450 - components: - - type: Transform - pos: 13.475631,6.6059804 - parent: 1668 -- proto: BoxFolderBlack - entities: - - uid: 2236 - components: - - type: Transform - pos: -8.478459,8.547297 - parent: 1668 - - uid: 3750 - components: - - type: Transform - pos: -20.479141,11.485098 - parent: 1668 -- proto: BoxFolderBlue - entities: - - uid: 1443 - components: - - type: Transform - pos: -0.35287756,1.4752237 - parent: 1668 - - uid: 2462 - components: - - type: Transform - pos: 30.518238,17.551378 - parent: 1668 - - uid: 2463 - components: - - type: Transform - pos: 29.486988,21.410753 - parent: 1668 - - uid: 3839 - components: - - type: Transform - pos: -24.426022,-5.7340455 - parent: 1668 -- proto: BoxFolderCentCom - entities: - - uid: 6501 - components: - - type: Transform - pos: -20.339329,11.399686 - parent: 1668 - - uid: 6987 - components: - - type: Transform - pos: 0.751516,0.4821344 - parent: 1668 - - uid: 6990 - components: - - type: Transform - pos: -20.40427,4.6069345 - parent: 1668 -- proto: BoxFolderCentComClipboard - entities: - - uid: 2198 - components: - - type: Transform - pos: -1.5118587,0.6696344 - parent: 1668 - - uid: 6991 - components: - - type: Transform - pos: -20.46677,5.55778 - parent: 1668 -- proto: BoxFolderNuclearCodes - entities: - - uid: 6994 - components: - - type: Transform - pos: -10.309893,6.5837517 - parent: 1668 -- proto: BoxFolderRed - entities: - - uid: 1398 - components: - - type: Transform - pos: -3.4754791,-12.432284 - parent: 1668 - - uid: 1444 - components: - - type: Transform - pos: -0.22787756,1.6627237 - parent: 1668 - - uid: 2461 - components: - - type: Transform - pos: 27.393238,17.582628 - parent: 1668 - - uid: 3838 - components: - - type: Transform - pos: -24.551022,-5.5465455 - parent: 1668 - - uid: 6504 - components: - - type: Transform - pos: 27.483435,-7.4993086 - parent: 1668 -- proto: BoxFolderWhite - entities: - - uid: 1397 - components: - - type: Transform - pos: 2.5401459,-12.541659 - parent: 1668 -- proto: BoxFolderYellow - entities: - - uid: 2230 - components: - - type: Transform - pos: -15.424221,14.516905 - parent: 1668 - - uid: 2231 - components: - - type: Transform - pos: -8.454054,12.663795 - parent: 1668 - - uid: 2232 - components: - - type: Transform - pos: -12.532179,10.67942 - parent: 1668 - - uid: 6612 - components: - - type: Transform - pos: 2.170168,-2.5148773 - parent: 1668 - - uid: 6618 - components: - - type: Transform - pos: 2.060793,-2.4055023 - parent: 1668 -- proto: BoxHandcuff - entities: - - uid: 516 - components: - - type: Transform - pos: 21.459097,-10.359755 - parent: 1668 - - uid: 1453 - components: - - type: Transform - pos: 15.460006,6.6372304 - parent: 1668 - - uid: 3150 - components: - - type: Transform - pos: 10.465678,25.678463 - parent: 1668 - - uid: 3898 - components: - - type: Transform - pos: -12.656932,-5.6960163 - parent: 1668 -- proto: BoxLatexGloves - entities: - - uid: 4391 - components: - - type: Transform - pos: 10.34866,-7.2899737 - parent: 1668 -- proto: BoxPDA - entities: - - uid: 1457 - components: - - type: Transform - pos: 1.5702643,-2.4016738 - parent: 1668 -- proto: BoxSterileMask - entities: - - uid: 627 - components: - - type: Transform - pos: 10.430174,-7.5213776 - parent: 1668 -- proto: BoxZiptie - entities: - - uid: 4696 - components: - - type: Transform - pos: 28.527084,-11.476642 - parent: 1668 -- proto: BriefcaseBrownFilled - entities: - - uid: 2468 - components: - - type: Transform - pos: 34.408863,23.770128 - parent: 1668 - - uid: 2469 - components: - - type: Transform - pos: 34.533863,23.582628 - parent: 1668 - - uid: 2470 - components: - - type: Transform - pos: 32.486988,19.707628 - parent: 1668 -- proto: BrigTimer - entities: - - uid: 3723 - components: - - type: Transform - pos: 4.5,26.5 - parent: 1668 - - uid: 3870 - components: - - type: Transform - pos: 14.5,29.5 - parent: 1668 - - uid: 3906 - components: - - type: Transform - pos: 14.5,26.5 - parent: 1668 - - uid: 6602 - components: - - type: Transform - pos: 4.5,29.5 - parent: 1668 - - uid: 6649 - components: - - type: Transform - pos: 14.5,23.5 - parent: 1668 -- proto: ButtonFrameCautionSecurity - entities: - - uid: 6578 - components: - - type: Transform - pos: 4.5,32.5 - parent: 1668 - - uid: 6592 - components: - - type: Transform - pos: 14.5,32.5 - parent: 1668 -- proto: CableApcExtension - entities: - - uid: 857 - components: - - type: Transform - pos: 20.5,6.5 - parent: 1668 - - uid: 858 - components: - - type: Transform - pos: 20.5,5.5 - parent: 1668 - - uid: 859 - components: - - type: Transform - pos: 20.5,4.5 - parent: 1668 - - uid: 860 - components: - - type: Transform - pos: 20.5,3.5 - parent: 1668 - - uid: 861 - components: - - type: Transform - pos: 20.5,2.5 - parent: 1668 - - uid: 862 - components: - - type: Transform - pos: 21.5,2.5 - parent: 1668 - - uid: 863 - components: - - type: Transform - pos: 22.5,2.5 - parent: 1668 - - uid: 864 - components: - - type: Transform - pos: 23.5,2.5 - parent: 1668 - - uid: 865 - components: - - type: Transform - pos: 24.5,2.5 - parent: 1668 - - uid: 866 - components: - - type: Transform - pos: 25.5,2.5 - parent: 1668 - - uid: 867 - components: - - type: Transform - pos: 26.5,2.5 - parent: 1668 - - uid: 868 - components: - - type: Transform - pos: 27.5,2.5 - parent: 1668 - - uid: 869 - components: - - type: Transform - pos: 28.5,2.5 - parent: 1668 - - uid: 870 - components: - - type: Transform - pos: 29.5,2.5 - parent: 1668 - - uid: 871 - components: - - type: Transform - pos: 30.5,2.5 - parent: 1668 - - uid: 872 - components: - - type: Transform - pos: 31.5,2.5 - parent: 1668 - - uid: 873 - components: - - type: Transform - pos: 32.5,2.5 - parent: 1668 - - uid: 874 - components: - - type: Transform - pos: 33.5,2.5 - parent: 1668 - - uid: 875 - components: - - type: Transform - pos: 34.5,2.5 - parent: 1668 - - uid: 876 - components: - - type: Transform - pos: 21.5,4.5 - parent: 1668 - - uid: 877 - components: - - type: Transform - pos: 22.5,4.5 - parent: 1668 - - uid: 878 - components: - - type: Transform - pos: 23.5,4.5 - parent: 1668 - - uid: 879 - components: - - type: Transform - pos: 24.5,4.5 - parent: 1668 - - uid: 880 - components: - - type: Transform - pos: 25.5,4.5 - parent: 1668 - - uid: 881 - components: - - type: Transform - pos: 26.5,4.5 - parent: 1668 - - uid: 882 - components: - - type: Transform - pos: 27.5,4.5 - parent: 1668 - - uid: 883 - components: - - type: Transform - pos: 28.5,4.5 - parent: 1668 - - uid: 884 - components: - - type: Transform - pos: 29.5,4.5 - parent: 1668 - - uid: 885 - components: - - type: Transform - pos: 30.5,4.5 - parent: 1668 - - uid: 886 - components: - - type: Transform - pos: 31.5,4.5 - parent: 1668 - - uid: 887 - components: - - type: Transform - pos: 32.5,4.5 - parent: 1668 - - uid: 888 - components: - - type: Transform - pos: 33.5,4.5 - parent: 1668 - - uid: 889 - components: - - type: Transform - pos: 26.5,5.5 - parent: 1668 - - uid: 890 - components: - - type: Transform - pos: 30.5,6.5 - parent: 1668 - - uid: 891 - components: - - type: Transform - pos: 28.5,6.5 - parent: 1668 - - uid: 892 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 1668 - - uid: 893 - components: - - type: Transform - pos: 24.5,7.5 - parent: 1668 - - uid: 894 - components: - - type: Transform - pos: 20.5,-1.5 - parent: 1668 - - uid: 895 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 1668 - - uid: 896 - components: - - type: Transform - pos: 32.5,1.5 - parent: 1668 - - uid: 897 - components: - - type: Transform - pos: 32.5,0.5 - parent: 1668 - - uid: 899 - components: - - type: Transform - pos: 29.5,6.5 - parent: 1668 - - uid: 900 - components: - - type: Transform - pos: 28.5,7.5 - parent: 1668 - - uid: 901 - components: - - type: Transform - pos: 31.5,5.5 - parent: 1668 - - uid: 902 - components: - - type: Transform - pos: 24.5,6.5 - parent: 1668 - - uid: 903 - components: - - type: Transform - pos: 23.5,6.5 - parent: 1668 - - uid: 904 - components: - - type: Transform - pos: 22.5,6.5 - parent: 1668 - - uid: 906 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 1668 - - uid: 907 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 1668 - - uid: 908 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 1668 - - uid: 909 - components: - - type: Transform - pos: 20.5,-4.5 - parent: 1668 - - uid: 910 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 1668 - - uid: 911 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 1668 - - uid: 912 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 1668 - - uid: 913 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 1668 - - uid: 914 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 1668 - - uid: 915 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 1668 - - uid: 916 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 1668 - - uid: 917 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 1668 - - uid: 918 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 1668 - - uid: 919 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 1668 - - uid: 920 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 1668 - - uid: 921 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 1668 - - uid: 922 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 1668 - - uid: 923 - components: - - type: Transform - pos: 33.5,-3.5 - parent: 1668 - - uid: 924 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 1668 - - uid: 925 - components: - - type: Transform - pos: 21.5,-5.5 - parent: 1668 - - uid: 926 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 1668 - - uid: 927 - components: - - type: Transform - pos: 23.5,-5.5 - parent: 1668 - - uid: 928 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 1668 - - uid: 929 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 1668 - - uid: 930 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 1668 - - uid: 931 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 1668 - - uid: 932 - components: - - type: Transform - pos: 28.5,-5.5 - parent: 1668 - - uid: 933 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 1668 - - uid: 934 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 1668 - - uid: 935 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 1668 - - uid: 936 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 1668 - - uid: 937 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 1668 - - uid: 938 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 1668 - - uid: 939 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 1668 - - uid: 940 - components: - - type: Transform - pos: 21.5,-7.5 - parent: 1668 - - uid: 941 - components: - - type: Transform - pos: 21.5,6.5 - parent: 1668 - - uid: 942 - components: - - type: Transform - pos: 31.5,6.5 - parent: 1668 - - uid: 943 - components: - - type: Transform - pos: 33.5,3.5 - parent: 1668 - - uid: 944 - components: - - type: Transform - pos: 33.5,5.5 - parent: 1668 - - uid: 945 - components: - - type: Transform - pos: 33.5,1.5 - parent: 1668 - - uid: 946 - components: - - type: Transform - pos: 35.5,2.5 - parent: 1668 - - uid: 947 - components: - - type: Transform - pos: 35.5,1.5 - parent: 1668 - - uid: 948 - components: - - type: Transform - pos: 35.5,3.5 - parent: 1668 - - uid: 949 - components: - - type: Transform - pos: 35.5,4.5 - parent: 1668 - - uid: 950 - components: - - type: Transform - pos: 35.5,5.5 - parent: 1668 - - uid: 951 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 1668 - - uid: 952 - components: - - type: Transform - pos: 35.5,-2.5 - parent: 1668 - - uid: 953 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 1668 - - uid: 954 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 1668 - - uid: 955 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 1668 - - uid: 956 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 1668 - - uid: 957 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 1668 - - uid: 958 - components: - - type: Transform - pos: 33.5,-2.5 - parent: 1668 - - uid: 959 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 1668 - - uid: 960 - components: - - type: Transform - pos: 34.5,-1.5 - parent: 1668 - - uid: 961 - components: - - type: Transform - pos: 34.5,0.5 - parent: 1668 - - uid: 962 - components: - - type: Transform - pos: 34.5,1.5 - parent: 1668 - - uid: 964 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 1668 - - uid: 965 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 1668 - - uid: 966 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 1668 - - uid: 967 - components: - - type: Transform - pos: 26.5,-10.5 - parent: 1668 - - uid: 968 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 1668 - - uid: 969 - components: - - type: Transform - pos: 26.5,-8.5 - parent: 1668 - - uid: 970 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 1668 - - uid: 971 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 1668 - - uid: 972 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 1668 - - uid: 973 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 1668 - - uid: 975 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 1668 - - uid: 976 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 1668 - - uid: 980 - components: - - type: Transform - pos: 9.5,2.5 - parent: 1668 - - uid: 981 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1668 - - uid: 982 - components: - - type: Transform - pos: 9.5,0.5 - parent: 1668 - - uid: 983 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 1668 - - uid: 984 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 1668 - - uid: 985 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 1668 - - uid: 986 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 1668 - - uid: 987 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 1668 - - uid: 988 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 1668 - - uid: 989 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 1668 - - uid: 990 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 1668 - - uid: 991 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 1668 - - uid: 992 - components: - - type: Transform - pos: 15.5,0.5 - parent: 1668 - - uid: 993 - components: - - type: Transform - pos: 16.5,0.5 - parent: 1668 - - uid: 994 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 1668 - - uid: 995 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 1668 - - uid: 996 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1668 - - uid: 997 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1668 - - uid: 998 - components: - - type: Transform - pos: 5.5,0.5 - parent: 1668 - - uid: 999 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 1668 - - uid: 1000 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1668 - - uid: 1001 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 1668 - - uid: 1002 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 1668 - - uid: 1003 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 1668 - - uid: 1004 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 1668 - - uid: 1005 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 1668 - - uid: 1006 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 1668 - - uid: 1007 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 1668 - - uid: 1008 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 1668 - - uid: 1009 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 1668 - - uid: 1010 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 1668 - - uid: 1011 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 1668 - - uid: 1012 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 1668 - - uid: 1013 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 1668 - - uid: 1014 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 1668 - - uid: 1015 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 1668 - - uid: 1016 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 1668 - - uid: 1017 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 1668 - - uid: 1018 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 1668 - - uid: 1019 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 1668 - - uid: 1020 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1668 - - uid: 1021 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1668 - - uid: 1022 - components: - - type: Transform - pos: 12.5,5.5 - parent: 1668 - - uid: 1023 - components: - - type: Transform - pos: 12.5,4.5 - parent: 1668 - - uid: 1024 - components: - - type: Transform - pos: 12.5,3.5 - parent: 1668 - - uid: 1025 - components: - - type: Transform - pos: 12.5,2.5 - parent: 1668 - - uid: 1026 - components: - - type: Transform - pos: 13.5,2.5 - parent: 1668 - - uid: 1027 - components: - - type: Transform - pos: 14.5,2.5 - parent: 1668 - - uid: 1028 - components: - - type: Transform - pos: 15.5,2.5 - parent: 1668 - - uid: 1029 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1668 - - uid: 1030 - components: - - type: Transform - pos: 13.5,5.5 - parent: 1668 - - uid: 1031 - components: - - type: Transform - pos: 14.5,5.5 - parent: 1668 - - uid: 1032 - components: - - type: Transform - pos: 15.5,5.5 - parent: 1668 - - uid: 1033 - components: - - type: Transform - pos: 16.5,5.5 - parent: 1668 - - uid: 1034 - components: - - type: Transform - pos: 17.5,5.5 - parent: 1668 - - uid: 1035 - components: - - type: Transform - pos: 17.5,4.5 - parent: 1668 - - uid: 1036 - components: - - type: Transform - pos: 17.5,6.5 - parent: 1668 - - uid: 1037 - components: - - type: Transform - pos: 13.5,7.5 - parent: 1668 - - uid: 1038 - components: - - type: Transform - pos: 14.5,7.5 - parent: 1668 - - uid: 1039 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1668 - - uid: 1040 - components: - - type: Transform - pos: 10.5,7.5 - parent: 1668 - - uid: 1041 - components: - - type: Transform - pos: 9.5,7.5 - parent: 1668 - - uid: 1042 - components: - - type: Transform - pos: 11.5,5.5 - parent: 1668 - - uid: 1043 - components: - - type: Transform - pos: 10.5,5.5 - parent: 1668 - - uid: 1044 - components: - - type: Transform - pos: 9.5,5.5 - parent: 1668 - - uid: 1045 - components: - - type: Transform - pos: 8.5,5.5 - parent: 1668 - - uid: 1046 - components: - - type: Transform - pos: 9.5,4.5 - parent: 1668 - - uid: 1047 - components: - - type: Transform - pos: 8.5,4.5 - parent: 1668 - - uid: 1048 - components: - - type: Transform - pos: 8.5,3.5 - parent: 1668 - - uid: 1049 - components: - - type: Transform - pos: 7.5,3.5 - parent: 1668 - - uid: 1050 - components: - - type: Transform - pos: 7.5,4.5 - parent: 1668 - - uid: 1051 - components: - - type: Transform - pos: 12.5,8.5 - parent: 1668 - - uid: 1052 - components: - - type: Transform - pos: 12.5,9.5 - parent: 1668 - - uid: 1053 - components: - - type: Transform - pos: 13.5,9.5 - parent: 1668 - - uid: 1054 - components: - - type: Transform - pos: 14.5,9.5 - parent: 1668 - - uid: 1055 - components: - - type: Transform - pos: 11.5,9.5 - parent: 1668 - - uid: 1056 - components: - - type: Transform - pos: 10.5,9.5 - parent: 1668 - - uid: 1057 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1668 - - uid: 1058 - components: - - type: Transform - pos: 8.5,9.5 - parent: 1668 - - uid: 1059 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1668 - - uid: 1060 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1668 - - uid: 1061 - components: - - type: Transform - pos: 8.5,8.5 - parent: 1668 - - uid: 1062 - components: - - type: Transform - pos: 28.5,1.5 - parent: 1668 - - uid: 1063 - components: - - type: Transform - pos: 28.5,0.5 - parent: 1668 - - uid: 1064 - components: - - type: Transform - pos: 28.5,-0.5 - parent: 1668 - - uid: 1068 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 1668 - - uid: 1069 - components: - - type: Transform - pos: 24.5,-1.5 - parent: 1668 - - uid: 1070 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 1668 - - uid: 1089 - components: - - type: Transform - pos: -2.5,2.5 - parent: 1668 - - uid: 1090 - components: - - type: Transform - pos: -2.5,1.5 - parent: 1668 - - uid: 1091 - components: - - type: Transform - pos: -2.5,0.5 - parent: 1668 - - uid: 1092 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 1668 - - uid: 1093 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 1668 - - uid: 1094 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1668 - - uid: 1095 - components: - - type: Transform - pos: -0.5,0.5 - parent: 1668 - - uid: 1096 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1668 - - uid: 1097 - components: - - type: Transform - pos: 1.5,0.5 - parent: 1668 - - uid: 1098 - components: - - type: Transform - pos: 2.5,0.5 - parent: 1668 - - uid: 1099 - components: - - type: Transform - pos: 2.5,1.5 - parent: 1668 - - uid: 1100 - components: - - type: Transform - pos: 2.5,2.5 - parent: 1668 - - uid: 1101 - components: - - type: Transform - pos: 3.5,2.5 - parent: 1668 - - uid: 1102 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1668 - - uid: 1103 - components: - - type: Transform - pos: -3.5,1.5 - parent: 1668 - - uid: 1104 - components: - - type: Transform - pos: -4.5,1.5 - parent: 1668 - - uid: 1105 - components: - - type: Transform - pos: -4.5,2.5 - parent: 1668 - - uid: 1106 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1668 - - uid: 1107 - components: - - type: Transform - pos: -1.5,2.5 - parent: 1668 - - uid: 1108 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1668 - - uid: 1109 - components: - - type: Transform - pos: 0.5,2.5 - parent: 1668 - - uid: 1110 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 1668 - - uid: 1111 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 1668 - - uid: 1112 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 1668 - - uid: 1113 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 1668 - - uid: 1114 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 1668 - - uid: 1115 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 1668 - - uid: 1116 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 1668 - - uid: 1117 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 1668 - - uid: 1118 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 1668 - - uid: 1119 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 1668 - - uid: 1120 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 1668 - - uid: 1121 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 1668 - - uid: 1122 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 1668 - - uid: 1123 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 1668 - - uid: 1124 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 1668 - - uid: 1125 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 1668 - - uid: 1126 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 1668 - - uid: 1127 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1668 - - uid: 1128 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 1668 - - uid: 1129 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 1668 - - uid: 1137 - components: - - type: Transform - pos: 21.5,-10.5 - parent: 1668 - - uid: 1202 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 1668 - - uid: 1203 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 1668 - - uid: 1204 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 1668 - - uid: 1205 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 1668 - - uid: 1206 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 1668 - - uid: 1207 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 1668 - - uid: 1208 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 1668 - - uid: 1209 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 1668 - - uid: 1210 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 1668 - - uid: 1211 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 1668 - - uid: 1212 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 1668 - - uid: 1213 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 1668 - - uid: 1214 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 1668 - - uid: 1215 - components: - - type: Transform - pos: 16.5,-9.5 - parent: 1668 - - uid: 1216 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 1668 - uid: 1217 components: - type: Transform - pos: 10.5,-10.5 - parent: 1668 - - uid: 1218 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 1668 - - uid: 1219 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1668 - - uid: 1220 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 1668 - - uid: 1221 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 1668 - - uid: 1222 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 1668 - - uid: 1223 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 1668 - - uid: 1224 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 1668 - - uid: 1225 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 1668 - - uid: 1226 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 1668 - - uid: 1227 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 1668 - - uid: 1228 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 1668 - - uid: 1229 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 1668 - - uid: 1230 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 1668 - - uid: 1231 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 1668 - - uid: 1232 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 1668 - - uid: 1233 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 1668 - - uid: 1234 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 1668 - - uid: 1236 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 1668 - - uid: 1237 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 1668 - - uid: 1238 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 1668 - - uid: 1239 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 1668 - - uid: 1240 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 1668 - - uid: 1241 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 1668 - - uid: 1242 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 1668 - - uid: 1243 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 1668 - - uid: 1244 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 1668 - - uid: 1245 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 1668 - - uid: 1246 - components: - - type: Transform - pos: 7.5,-10.5 - parent: 1668 - - uid: 1247 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 1668 - - uid: 1248 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 1668 - - uid: 1249 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 1668 - - uid: 1250 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 1668 - - uid: 1251 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 1668 - - uid: 1252 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 1668 - - uid: 1253 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 1668 - - uid: 1254 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 1668 - - uid: 1255 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 1668 - - uid: 1256 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 1668 - - uid: 1257 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 1668 - - uid: 1258 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 1668 - - uid: 1259 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 1668 - - uid: 1260 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1668 - - uid: 1261 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 1668 - - uid: 1262 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 1668 - - uid: 1263 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 1668 - - uid: 1264 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1668 - - uid: 1265 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 1668 - - uid: 1266 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 1668 - - uid: 1267 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 1668 - - uid: 1268 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 1668 - - uid: 1269 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 1668 - - uid: 1270 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 1668 - - uid: 1271 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 1668 - - uid: 1272 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 1668 - - uid: 1273 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 1668 - - uid: 1274 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 1668 - - uid: 1275 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 1668 - - uid: 1276 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 1668 - - uid: 1277 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 1668 - - uid: 1278 - components: - - type: Transform - pos: 8.5,-4.5 + pos: 33.5,-24.5 parent: 1668 - uid: 1279 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 1668 - - uid: 1280 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 1668 - - uid: 1281 - components: - - type: Transform - pos: 5.5,1.5 - parent: 1668 - - uid: 1282 - components: - - type: Transform - pos: 5.5,2.5 - parent: 1668 - - uid: 1283 - components: - - type: Transform - pos: 5.5,3.5 - parent: 1668 - - uid: 1284 - components: - - type: Transform - pos: 5.5,4.5 - parent: 1668 - - uid: 1285 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1668 - - uid: 1286 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1668 - - uid: 1287 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1668 - - uid: 1288 - components: - - type: Transform - pos: 1.5,4.5 - parent: 1668 - - uid: 1289 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1668 - - uid: 1290 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1668 - - uid: 1291 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1668 - - uid: 1292 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1668 - - uid: 1293 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1668 - - uid: 1294 - components: - - type: Transform - pos: -4.5,4.5 - parent: 1668 - - uid: 1295 - components: - - type: Transform - pos: -5.5,4.5 - parent: 1668 - - uid: 1296 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1668 - - uid: 1297 - components: - - type: Transform - pos: -6.5,3.5 - parent: 1668 - - uid: 1298 - components: - - type: Transform - pos: -6.5,2.5 - parent: 1668 - - uid: 1299 - components: - - type: Transform - pos: -6.5,1.5 - parent: 1668 - - uid: 1300 - components: - - type: Transform - pos: -6.5,0.5 - parent: 1668 - - uid: 1301 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 1668 - - uid: 1302 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 1668 - - uid: 1303 - components: - - type: Transform - pos: -6.5,-2.5 - parent: 1668 - - uid: 1304 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 1668 - - uid: 1305 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 1668 - - uid: 1306 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 1668 - - uid: 1307 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 1668 - - uid: 1308 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 1668 - - uid: 1309 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 1668 - - uid: 1310 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 1668 - - uid: 1311 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1668 - - uid: 1312 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 1668 - - uid: 1313 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 1668 - - uid: 1314 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 1668 - - uid: 1315 - components: - - type: Transform - pos: -7.5,3.5 - parent: 1668 - - uid: 1316 - components: - - type: Transform - pos: -7.5,4.5 - parent: 1668 - - uid: 1317 - components: - - type: Transform - pos: -1.5,5.5 - parent: 1668 - - uid: 1318 - components: - - type: Transform - pos: 0.5,5.5 - parent: 1668 - - uid: 1319 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1668 - - uid: 1320 - components: - - type: Transform - pos: 4.5,5.5 - parent: 1668 - - uid: 1342 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 1668 - - uid: 1343 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1668 - - uid: 1344 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 1668 - - uid: 1345 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1668 - - uid: 1346 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 1668 - - uid: 1347 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 1668 - - uid: 1348 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 1668 - - uid: 1349 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - uid: 1350 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - uid: 1351 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1668 - - uid: 1352 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1668 - - uid: 1353 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 1668 - - uid: 1354 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 1668 - - uid: 1355 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 1668 - - uid: 1356 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 1668 - - uid: 1357 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 1668 - - uid: 1358 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 1668 - - uid: 1359 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 1668 - - uid: 1360 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 1668 - - uid: 1361 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 1668 - - uid: 1362 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 1668 - - uid: 1363 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 1668 - - uid: 1364 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 1668 - - uid: 1365 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 1668 - - uid: 1366 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 1668 - - uid: 1367 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 1668 - - uid: 1368 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 1668 - - uid: 1369 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 1668 - - uid: 1370 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 1668 - - uid: 1371 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 1668 - - uid: 1372 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 1668 - - uid: 1373 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 1668 - - uid: 1374 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 1668 - - uid: 1375 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 1668 - - uid: 1376 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 1668 - - uid: 1377 - components: - - type: Transform - pos: -4.5,-13.5 - parent: 1668 - - uid: 1378 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 1668 - - uid: 1379 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 1668 - - uid: 1380 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 1668 - - uid: 1381 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 1668 - - uid: 1382 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 1668 - - uid: 1383 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 1668 - - uid: 1468 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 1668 - - uid: 1469 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 1668 - - uid: 1470 - components: - - type: Transform - pos: 15.5,4.5 - parent: 1668 - - uid: 1471 - components: - - type: Transform - pos: 15.5,3.5 - parent: 1668 - - uid: 1472 - components: - - type: Transform - pos: 16.5,3.5 - parent: 1668 - - uid: 1678 - components: - - type: Transform - pos: -6.5,16.5 - parent: 1668 - - uid: 1679 - components: - - type: Transform - pos: -6.5,15.5 - parent: 1668 - - uid: 1680 - components: - - type: Transform - pos: -6.5,17.5 - parent: 1668 - - uid: 1681 - components: - - type: Transform - pos: -5.5,17.5 - parent: 1668 - - uid: 1682 - components: - - type: Transform - pos: -4.5,17.5 - parent: 1668 - - uid: 1683 - components: - - type: Transform - pos: -8.5,13.5 - parent: 1668 - - uid: 1684 - components: - - type: Transform - pos: -8.5,12.5 - parent: 1668 - - uid: 1685 - components: - - type: Transform - pos: -8.5,11.5 - parent: 1668 - - uid: 1686 - components: - - type: Transform - pos: -8.5,10.5 - parent: 1668 - - uid: 1687 - components: - - type: Transform - pos: -8.5,9.5 - parent: 1668 - - uid: 1688 - components: - - type: Transform - pos: -7.5,9.5 - parent: 1668 - - uid: 1689 - components: - - type: Transform - pos: -6.5,9.5 - parent: 1668 - - uid: 1690 - components: - - type: Transform - pos: -5.5,9.5 - parent: 1668 - - uid: 1691 - components: - - type: Transform - pos: -5.5,8.5 - parent: 1668 - - uid: 1692 - components: - - type: Transform - pos: -4.5,8.5 - parent: 1668 - - uid: 1693 - components: - - type: Transform - pos: -5.5,7.5 - parent: 1668 - - uid: 1694 - components: - - type: Transform - pos: -5.5,6.5 - parent: 1668 - - uid: 1695 - components: - - type: Transform - pos: -4.5,6.5 - parent: 1668 - - uid: 1696 - components: - - type: Transform - pos: -6.5,6.5 - parent: 1668 - - uid: 1697 - components: - - type: Transform - pos: -9.5,9.5 - parent: 1668 - - uid: 1698 - components: - - type: Transform - pos: -10.5,9.5 - parent: 1668 - - uid: 1699 - components: - - type: Transform - pos: -11.5,9.5 - parent: 1668 - - uid: 1700 - components: - - type: Transform - pos: -9.5,11.5 - parent: 1668 - - uid: 1701 - components: - - type: Transform - pos: -10.5,11.5 - parent: 1668 - - uid: 1702 - components: - - type: Transform - pos: -11.5,11.5 - parent: 1668 - - uid: 1703 - components: - - type: Transform - pos: -7.5,11.5 - parent: 1668 - - uid: 1704 - components: - - type: Transform - pos: -6.5,11.5 - parent: 1668 - - uid: 1705 - components: - - type: Transform - pos: -6.5,12.5 - parent: 1668 - - uid: 1706 - components: - - type: Transform - pos: -14.5,18.5 - parent: 1668 - - uid: 1707 - components: - - type: Transform - pos: -14.5,17.5 - parent: 1668 - - uid: 1708 - components: - - type: Transform - pos: -15.5,17.5 - parent: 1668 - - uid: 1709 - components: - - type: Transform - pos: -16.5,17.5 - parent: 1668 - - uid: 1710 - components: - - type: Transform - pos: -16.5,18.5 - parent: 1668 - - uid: 1711 - components: - - type: Transform - pos: -15.5,18.5 - parent: 1668 - - uid: 1712 - components: - - type: Transform - pos: -13.5,18.5 - parent: 1668 - - uid: 1713 - components: - - type: Transform - pos: -12.5,18.5 - parent: 1668 - - uid: 1714 - components: - - type: Transform - pos: -14.5,16.5 - parent: 1668 - - uid: 1715 - components: - - type: Transform - pos: -14.5,15.5 - parent: 1668 - - uid: 1716 - components: - - type: Transform - pos: -13.5,15.5 - parent: 1668 - - uid: 1717 - components: - - type: Transform - pos: -12.5,15.5 - parent: 1668 - - uid: 1718 - components: - - type: Transform - pos: -11.5,15.5 - parent: 1668 - - uid: 1719 - components: - - type: Transform - pos: -10.5,15.5 - parent: 1668 - - uid: 1720 - components: - - type: Transform - pos: -9.5,15.5 - parent: 1668 - - uid: 1721 - components: - - type: Transform - pos: -10.5,14.5 - parent: 1668 - - uid: 1722 - components: - - type: Transform - pos: -10.5,16.5 - parent: 1668 - - uid: 1723 - components: - - type: Transform - pos: -10.5,17.5 - parent: 1668 - - uid: 1724 - components: - - type: Transform - pos: -4.5,19.5 - parent: 1668 - - uid: 1725 - components: - - type: Transform - pos: -5.5,19.5 - parent: 1668 - - uid: 1726 - components: - - type: Transform - pos: -6.5,19.5 - parent: 1668 - - uid: 1727 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1668 - - uid: 1728 - components: - - type: Transform - pos: -8.5,19.5 - parent: 1668 - - uid: 1729 - components: - - type: Transform - pos: -9.5,19.5 - parent: 1668 - - uid: 1730 - components: - - type: Transform - pos: -10.5,19.5 - parent: 1668 - - uid: 1731 - components: - - type: Transform - pos: -11.5,19.5 - parent: 1668 - - uid: 1732 - components: - - type: Transform - pos: -11.5,20.5 - parent: 1668 - - uid: 1733 - components: - - type: Transform - pos: -11.5,21.5 - parent: 1668 - - uid: 1734 - components: - - type: Transform - pos: -11.5,22.5 - parent: 1668 - - uid: 1735 - components: - - type: Transform - pos: -11.5,23.5 - parent: 1668 - - uid: 1736 - components: - - type: Transform - pos: -11.5,24.5 - parent: 1668 - - uid: 1737 - components: - - type: Transform - pos: -11.5,25.5 - parent: 1668 - - uid: 1738 - components: - - type: Transform - pos: -11.5,26.5 - parent: 1668 - - uid: 1739 - components: - - type: Transform - pos: -11.5,27.5 - parent: 1668 - - uid: 1740 - components: - - type: Transform - pos: -11.5,28.5 - parent: 1668 - - uid: 1741 - components: - - type: Transform - pos: -11.5,29.5 - parent: 1668 - - uid: 1742 - components: - - type: Transform - pos: -11.5,30.5 - parent: 1668 - - uid: 1743 - components: - - type: Transform - pos: -11.5,31.5 - parent: 1668 - - uid: 1744 - components: - - type: Transform - pos: -12.5,31.5 - parent: 1668 - - uid: 1745 - components: - - type: Transform - pos: -12.5,32.5 - parent: 1668 - - uid: 1746 - components: - - type: Transform - pos: -10.5,31.5 - parent: 1668 - - uid: 1747 - components: - - type: Transform - pos: -9.5,31.5 - parent: 1668 - - uid: 1748 - components: - - type: Transform - pos: -8.5,31.5 - parent: 1668 - - uid: 1749 - components: - - type: Transform - pos: -7.5,31.5 - parent: 1668 - - uid: 1750 - components: - - type: Transform - pos: -6.5,31.5 - parent: 1668 - - uid: 1751 - components: - - type: Transform - pos: -6.5,32.5 - parent: 1668 - - uid: 1752 - components: - - type: Transform - pos: -9.5,32.5 - parent: 1668 - - uid: 1753 - components: - - type: Transform - pos: -9.5,33.5 - parent: 1668 - - uid: 1754 - components: - - type: Transform - pos: -12.5,30.5 - parent: 1668 - - uid: 1755 - components: - - type: Transform - pos: -13.5,30.5 - parent: 1668 - - uid: 1756 - components: - - type: Transform - pos: -14.5,30.5 - parent: 1668 - - uid: 1757 - components: - - type: Transform - pos: -14.5,29.5 - parent: 1668 - - uid: 1758 - components: - - type: Transform - pos: -15.5,29.5 - parent: 1668 - - uid: 1759 - components: - - type: Transform - pos: -16.5,29.5 - parent: 1668 - - uid: 1760 - components: - - type: Transform - pos: -12.5,26.5 - parent: 1668 - - uid: 1761 - components: - - type: Transform - pos: -13.5,26.5 - parent: 1668 - - uid: 1762 - components: - - type: Transform - pos: -14.5,26.5 - parent: 1668 - - uid: 1763 - components: - - type: Transform - pos: -15.5,26.5 - parent: 1668 - - uid: 1764 - components: - - type: Transform - pos: -16.5,26.5 - parent: 1668 - - uid: 1765 - components: - - type: Transform - pos: -12.5,23.5 - parent: 1668 - - uid: 1766 - components: - - type: Transform - pos: -13.5,23.5 - parent: 1668 - - uid: 1767 - components: - - type: Transform - pos: -14.5,23.5 - parent: 1668 - - uid: 1768 - components: - - type: Transform - pos: -15.5,23.5 - parent: 1668 - - uid: 1769 - components: - - type: Transform - pos: -16.5,23.5 - parent: 1668 - - uid: 1770 - components: - - type: Transform - pos: -14.5,22.5 - parent: 1668 - - uid: 1771 - components: - - type: Transform - pos: -14.5,21.5 - parent: 1668 - - uid: 1772 - components: - - type: Transform - pos: -14.5,20.5 - parent: 1668 - - uid: 1773 - components: - - type: Transform - pos: -10.5,23.5 - parent: 1668 - - uid: 1774 - components: - - type: Transform - pos: -9.5,23.5 - parent: 1668 - - uid: 1775 - components: - - type: Transform - pos: -8.5,23.5 - parent: 1668 - - uid: 1776 - components: - - type: Transform - pos: -7.5,23.5 - parent: 1668 - - uid: 1777 - components: - - type: Transform - pos: -6.5,23.5 - parent: 1668 - - uid: 1778 - components: - - type: Transform - pos: -6.5,20.5 - parent: 1668 - - uid: 1779 - components: - - type: Transform - pos: -6.5,21.5 - parent: 1668 - - uid: 1780 - components: - - type: Transform - pos: -6.5,22.5 - parent: 1668 - - uid: 1781 - components: - - type: Transform - pos: -6.5,24.5 - parent: 1668 - - uid: 1782 - components: - - type: Transform - pos: -6.5,25.5 - parent: 1668 - - uid: 1783 - components: - - type: Transform - pos: -6.5,26.5 - parent: 1668 - - uid: 1784 - components: - - type: Transform - pos: -6.5,27.5 - parent: 1668 - - uid: 1785 - components: - - type: Transform - pos: -6.5,28.5 - parent: 1668 - - uid: 1786 - components: - - type: Transform - pos: -6.5,29.5 - parent: 1668 - - uid: 1787 - components: - - type: Transform - pos: -6.5,30.5 - parent: 1668 - - uid: 1788 - components: - - type: Transform - pos: -7.5,27.5 - parent: 1668 - - uid: 1789 - components: - - type: Transform - pos: -8.5,27.5 - parent: 1668 - - uid: 1790 - components: - - type: Transform - pos: -9.5,27.5 - parent: 1668 - - uid: 1791 - components: - - type: Transform - pos: -10.5,27.5 - parent: 1668 - - uid: 1956 - components: - - type: Transform - pos: 1.5,17.5 - parent: 1668 - - uid: 1957 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1668 - - uid: 1958 - components: - - type: Transform - pos: 1.5,15.5 - parent: 1668 - - uid: 1959 - components: - - type: Transform - pos: 1.5,14.5 - parent: 1668 - - uid: 1960 - components: - - type: Transform - pos: 1.5,13.5 - parent: 1668 - - uid: 1961 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1668 - - uid: 1962 - components: - - type: Transform - pos: 1.5,11.5 - parent: 1668 - - uid: 1963 - components: - - type: Transform - pos: 1.5,10.5 - parent: 1668 - - uid: 1964 - components: - - type: Transform - pos: 1.5,9.5 - parent: 1668 - - uid: 1965 - components: - - type: Transform - pos: 1.5,8.5 - parent: 1668 - - uid: 1966 - components: - - type: Transform - pos: 2.5,8.5 - parent: 1668 - - uid: 1967 - components: - - type: Transform - pos: 3.5,8.5 - parent: 1668 - - uid: 1968 - components: - - type: Transform - pos: 2.5,10.5 - parent: 1668 - - uid: 1969 - components: - - type: Transform - pos: 3.5,10.5 - parent: 1668 - - uid: 1970 - components: - - type: Transform - pos: 2.5,12.5 - parent: 1668 - - uid: 1971 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1668 - - uid: 1972 - components: - - type: Transform - pos: 2.5,14.5 - parent: 1668 - - uid: 1973 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1668 - - uid: 1974 - components: - - type: Transform - pos: 2.5,16.5 - parent: 1668 - - uid: 1975 - components: - - type: Transform - pos: 3.5,16.5 - parent: 1668 - - uid: 1976 - components: - - type: Transform - pos: 2.5,17.5 - parent: 1668 - - uid: 1977 - components: - - type: Transform - pos: -3.5,17.5 - parent: 1668 - - uid: 1978 - components: - - type: Transform - pos: 0.5,15.5 - parent: 1668 - - uid: 1979 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1668 - - uid: 1980 - components: - - type: Transform - pos: -1.5,15.5 - parent: 1668 - - uid: 1981 - components: - - type: Transform - pos: -2.5,15.5 - parent: 1668 - - uid: 1982 - components: - - type: Transform - pos: -2.5,14.5 - parent: 1668 - - uid: 1983 - components: - - type: Transform - pos: -2.5,13.5 - parent: 1668 - - uid: 1984 - components: - - type: Transform - pos: -2.5,12.5 - parent: 1668 - - uid: 1985 - components: - - type: Transform - pos: -2.5,11.5 - parent: 1668 - - uid: 1986 - components: - - type: Transform - pos: -2.5,10.5 - parent: 1668 - - uid: 1987 - components: - - type: Transform - pos: -2.5,9.5 - parent: 1668 - - uid: 1988 - components: - - type: Transform - pos: -2.5,8.5 - parent: 1668 - - uid: 1989 - components: - - type: Transform - pos: -1.5,8.5 - parent: 1668 - - uid: 1990 - components: - - type: Transform - pos: -1.5,7.5 - parent: 1668 - - uid: 1991 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1668 - - uid: 1992 - components: - - type: Transform - pos: 0.5,7.5 - parent: 1668 - - uid: 1993 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1668 - - uid: 2020 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1668 - - uid: 2021 - components: - - type: Transform - pos: -1.5,23.5 - parent: 1668 - - uid: 2022 - components: - - type: Transform - pos: -1.5,24.5 - parent: 1668 - - uid: 2023 - components: - - type: Transform - pos: -2.5,24.5 - parent: 1668 - - uid: 2024 - components: - - type: Transform - pos: -1.5,21.5 - parent: 1668 - - uid: 2025 - components: - - type: Transform - pos: -1.5,20.5 - parent: 1668 - - uid: 2026 - components: - - type: Transform - pos: -0.5,20.5 - parent: 1668 - - uid: 2027 - components: - - type: Transform - pos: -0.5,19.5 - parent: 1668 - - uid: 2028 - components: - - type: Transform - pos: -0.5,18.5 - parent: 1668 - - uid: 2029 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1668 - - uid: 2030 - components: - - type: Transform - pos: 1.5,20.5 - parent: 1668 - - uid: 2031 - components: - - type: Transform - pos: -2.5,21.5 - parent: 1668 - - uid: 2057 - components: - - type: Transform - pos: -3.5,5.5 - parent: 1668 - - uid: 2567 - components: - - type: Transform - pos: 17.5,17.5 - parent: 1668 - - uid: 2568 - components: - - type: Transform - pos: 17.5,16.5 - parent: 1668 - - uid: 2569 - components: - - type: Transform - pos: 17.5,15.5 - parent: 1668 - - uid: 2570 - components: - - type: Transform - pos: 17.5,14.5 - parent: 1668 - - uid: 2571 - components: - - type: Transform - pos: 17.5,13.5 - parent: 1668 - - uid: 2572 - components: - - type: Transform - pos: 17.5,12.5 - parent: 1668 - - uid: 2573 - components: - - type: Transform - pos: 17.5,11.5 - parent: 1668 - - uid: 2574 - components: - - type: Transform - pos: 16.5,12.5 - parent: 1668 - - uid: 2575 - components: - - type: Transform - pos: 15.5,12.5 - parent: 1668 - - uid: 2576 - components: - - type: Transform - pos: 16.5,14.5 - parent: 1668 - - uid: 2577 - components: - - type: Transform - pos: 15.5,14.5 - parent: 1668 - - uid: 2578 - components: - - type: Transform - pos: 17.5,10.5 - parent: 1668 - - uid: 2579 - components: - - type: Transform - pos: 16.5,10.5 - parent: 1668 - - uid: 2580 - components: - - type: Transform - pos: 15.5,10.5 - parent: 1668 - - uid: 2581 - components: - - type: Transform - pos: 18.5,11.5 - parent: 1668 - - uid: 2582 - components: - - type: Transform - pos: 19.5,11.5 - parent: 1668 - - uid: 2583 - components: - - type: Transform - pos: 20.5,11.5 - parent: 1668 - - uid: 2584 - components: - - type: Transform - pos: 18.5,14.5 - parent: 1668 - - uid: 2585 - components: - - type: Transform - pos: 19.5,14.5 - parent: 1668 - - uid: 2586 - components: - - type: Transform - pos: 20.5,14.5 - parent: 1668 - - uid: 2587 - components: - - type: Transform - pos: 19.5,15.5 - parent: 1668 - - uid: 2588 - components: - - type: Transform - pos: 21.5,20.5 - parent: 1668 - - uid: 2589 - components: - - type: Transform - pos: 20.5,20.5 - parent: 1668 - - uid: 2590 - components: - - type: Transform - pos: 19.5,20.5 - parent: 1668 - - uid: 2591 - components: - - type: Transform - pos: 18.5,20.5 - parent: 1668 - - uid: 2592 - components: - - type: Transform - pos: 19.5,19.5 - parent: 1668 - - uid: 2593 - components: - - type: Transform - pos: 19.5,18.5 - parent: 1668 - - uid: 2594 - components: - - type: Transform - pos: 19.5,21.5 - parent: 1668 - - uid: 2595 - components: - - type: Transform - pos: 19.5,22.5 - parent: 1668 - - uid: 2596 - components: - - type: Transform - pos: 21.5,21.5 - parent: 1668 - - uid: 2597 - components: - - type: Transform - pos: 22.5,21.5 - parent: 1668 - - uid: 2598 - components: - - type: Transform - pos: 23.5,21.5 - parent: 1668 - - uid: 2599 - components: - - type: Transform - pos: 23.5,22.5 - parent: 1668 - - uid: 2600 - components: - - type: Transform - pos: 24.5,22.5 - parent: 1668 - - uid: 2601 - components: - - type: Transform - pos: 25.5,22.5 - parent: 1668 - - uid: 2602 - components: - - type: Transform - pos: 26.5,22.5 - parent: 1668 - - uid: 2603 - components: - - type: Transform - pos: 27.5,22.5 - parent: 1668 - - uid: 2604 - components: - - type: Transform - pos: 28.5,22.5 - parent: 1668 - - uid: 2605 - components: - - type: Transform - pos: 29.5,22.5 - parent: 1668 - - uid: 2606 - components: - - type: Transform - pos: 30.5,22.5 - parent: 1668 - - uid: 2607 - components: - - type: Transform - pos: 31.5,22.5 - parent: 1668 - - uid: 2608 - components: - - type: Transform - pos: 32.5,22.5 - parent: 1668 - - uid: 2609 - components: - - type: Transform - pos: 33.5,22.5 - parent: 1668 - - uid: 2610 - components: - - type: Transform - pos: 34.5,22.5 - parent: 1668 - - uid: 2611 - components: - - type: Transform - pos: 33.5,21.5 - parent: 1668 - - uid: 2612 - components: - - type: Transform - pos: 28.5,21.5 - parent: 1668 - - uid: 2613 - components: - - type: Transform - pos: 20.5,21.5 - parent: 1668 - - uid: 2614 - components: - - type: Transform - pos: 23.5,20.5 - parent: 1668 - - uid: 2615 - components: - - type: Transform - pos: 23.5,19.5 - parent: 1668 - - uid: 2616 - components: - - type: Transform - pos: 23.5,18.5 - parent: 1668 - - uid: 2617 - components: - - type: Transform - pos: 23.5,17.5 - parent: 1668 - - uid: 2618 - components: - - type: Transform - pos: 23.5,16.5 - parent: 1668 - - uid: 2619 - components: - - type: Transform - pos: 23.5,15.5 - parent: 1668 - - uid: 2620 - components: - - type: Transform - pos: 24.5,17.5 - parent: 1668 - - uid: 2621 - components: - - type: Transform - pos: 24.5,16.5 - parent: 1668 - - uid: 2622 - components: - - type: Transform - pos: 24.5,15.5 - parent: 1668 - - uid: 2623 - components: - - type: Transform - pos: 24.5,19.5 - parent: 1668 - - uid: 2624 - components: - - type: Transform - pos: 24.5,14.5 - parent: 1668 - - uid: 2625 - components: - - type: Transform - pos: 24.5,13.5 - parent: 1668 - - uid: 2626 - components: - - type: Transform - pos: 25.5,13.5 - parent: 1668 - - uid: 2627 - components: - - type: Transform - pos: 26.5,13.5 - parent: 1668 - - uid: 2628 - components: - - type: Transform - pos: 27.5,13.5 - parent: 1668 - - uid: 2629 - components: - - type: Transform - pos: 28.5,13.5 - parent: 1668 - - uid: 2630 - components: - - type: Transform - pos: 29.5,13.5 - parent: 1668 - - uid: 2631 - components: - - type: Transform - pos: 30.5,13.5 - parent: 1668 - - uid: 2632 - components: - - type: Transform - pos: 31.5,13.5 - parent: 1668 - - uid: 2633 - components: - - type: Transform - pos: 32.5,13.5 - parent: 1668 - - uid: 2634 - components: - - type: Transform - pos: 33.5,13.5 - parent: 1668 - - uid: 2635 - components: - - type: Transform - pos: 33.5,14.5 - parent: 1668 - - uid: 2636 - components: - - type: Transform - pos: 31.5,14.5 - parent: 1668 - - uid: 2637 - components: - - type: Transform - pos: 30.5,14.5 - parent: 1668 - - uid: 2638 - components: - - type: Transform - pos: 29.5,14.5 - parent: 1668 - - uid: 2639 - components: - - type: Transform - pos: 27.5,14.5 - parent: 1668 - - uid: 2640 - components: - - type: Transform - pos: 26.5,14.5 - parent: 1668 - - uid: 2641 - components: - - type: Transform - pos: 25.5,14.5 - parent: 1668 - - uid: 2642 - components: - - type: Transform - pos: 28.5,14.5 - parent: 1668 - - uid: 2643 - components: - - type: Transform - pos: 28.5,15.5 - parent: 1668 - - uid: 2644 - components: - - type: Transform - pos: 28.5,16.5 - parent: 1668 - - uid: 2645 - components: - - type: Transform - pos: 28.5,17.5 - parent: 1668 - - uid: 2646 - components: - - type: Transform - pos: 28.5,18.5 - parent: 1668 - - uid: 2647 - components: - - type: Transform - pos: 29.5,18.5 - parent: 1668 - - uid: 2648 - components: - - type: Transform - pos: 30.5,18.5 - parent: 1668 - - uid: 2649 - components: - - type: Transform - pos: 31.5,18.5 - parent: 1668 - - uid: 2650 - components: - - type: Transform - pos: 27.5,18.5 - parent: 1668 - - uid: 2651 - components: - - type: Transform - pos: 26.5,18.5 - parent: 1668 - - uid: 2652 - components: - - type: Transform - pos: 25.5,18.5 - parent: 1668 - - uid: 2653 - components: - - type: Transform - pos: 27.5,15.5 - parent: 1668 - - uid: 2654 - components: - - type: Transform - pos: 26.5,15.5 - parent: 1668 - - uid: 2655 - components: - - type: Transform - pos: 29.5,15.5 - parent: 1668 - - uid: 2656 - components: - - type: Transform - pos: 30.5,15.5 - parent: 1668 - - uid: 2657 - components: - - type: Transform - pos: 24.5,12.5 - parent: 1668 - - uid: 2658 - components: - - type: Transform - pos: 23.5,12.5 - parent: 1668 - - uid: 2659 - components: - - type: Transform - pos: 22.5,12.5 - parent: 1668 - - uid: 2660 - components: - - type: Transform - pos: 33.5,12.5 - parent: 1668 - - uid: 2661 - components: - - type: Transform - pos: 34.5,12.5 - parent: 1668 - - uid: 2662 - components: - - type: Transform - pos: 33.5,11.5 - parent: 1668 - - uid: 2663 - components: - - type: Transform - pos: 32.5,11.5 - parent: 1668 - - uid: 2664 - components: - - type: Transform - pos: 31.5,11.5 - parent: 1668 - - uid: 2665 - components: - - type: Transform - pos: 30.5,11.5 - parent: 1668 - - uid: 2666 - components: - - type: Transform - pos: 29.5,11.5 - parent: 1668 - - uid: 2667 - components: - - type: Transform - pos: 28.5,11.5 - parent: 1668 - - uid: 2668 - components: - - type: Transform - pos: 27.5,11.5 - parent: 1668 - - uid: 2669 - components: - - type: Transform - pos: 26.5,11.5 - parent: 1668 - - uid: 2670 - components: - - type: Transform - pos: 25.5,11.5 - parent: 1668 - - uid: 2671 - components: - - type: Transform - pos: 24.5,11.5 - parent: 1668 - - uid: 2672 - components: - - type: Transform - pos: 23.5,11.5 - parent: 1668 - - uid: 2673 - components: - - type: Transform - pos: 35.5,19.5 - parent: 1668 - - uid: 2674 - components: - - type: Transform - pos: 34.5,19.5 - parent: 1668 - - uid: 2675 - components: - - type: Transform - pos: 33.5,19.5 - parent: 1668 - - uid: 2676 - components: - - type: Transform - pos: 33.5,18.5 - parent: 1668 - - uid: 2677 - components: - - type: Transform - pos: 33.5,17.5 - parent: 1668 - - uid: 2678 - components: - - type: Transform - pos: 33.5,16.5 - parent: 1668 - - uid: 2679 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1668 - - uid: 2680 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1668 - - uid: 2681 - components: - - type: Transform - pos: 7.5,14.5 - parent: 1668 - - uid: 2682 - components: - - type: Transform - pos: 7.5,13.5 - parent: 1668 - - uid: 2683 - components: - - type: Transform - pos: 7.5,12.5 - parent: 1668 - - uid: 2684 - components: - - type: Transform - pos: 7.5,11.5 - parent: 1668 - - uid: 2685 - components: - - type: Transform - pos: 6.5,12.5 - parent: 1668 - - uid: 2686 - components: - - type: Transform - pos: 5.5,12.5 - parent: 1668 - - uid: 2687 - components: - - type: Transform - pos: 6.5,14.5 - parent: 1668 - - uid: 2688 - components: - - type: Transform - pos: 5.5,14.5 - parent: 1668 - - uid: 2689 - components: - - type: Transform - pos: 8.5,14.5 - parent: 1668 - - uid: 2690 - components: - - type: Transform - pos: 9.5,14.5 - parent: 1668 - - uid: 2691 - components: - - type: Transform - pos: 10.5,14.5 - parent: 1668 - - uid: 2692 - components: - - type: Transform - pos: 11.5,14.5 - parent: 1668 - - uid: 2693 - components: - - type: Transform - pos: 12.5,14.5 - parent: 1668 - - uid: 2694 - components: - - type: Transform - pos: 8.5,12.5 - parent: 1668 - - uid: 2695 - components: - - type: Transform - pos: 9.5,12.5 - parent: 1668 - - uid: 2696 - components: - - type: Transform - pos: 10.5,12.5 - parent: 1668 - - uid: 2697 - components: - - type: Transform - pos: 11.5,12.5 - parent: 1668 - - uid: 2698 - components: - - type: Transform - pos: 12.5,12.5 - parent: 1668 - - uid: 2699 - components: - - type: Transform - pos: 13.5,14.5 - parent: 1668 - - uid: 2700 - components: - - type: Transform - pos: 13.5,15.5 - parent: 1668 - - uid: 2701 - components: - - type: Transform - pos: 14.5,15.5 - parent: 1668 - - uid: 2702 - components: - - type: Transform - pos: 14.5,16.5 - parent: 1668 - - uid: 2703 - components: - - type: Transform - pos: 14.5,17.5 - parent: 1668 - - uid: 2704 - components: - - type: Transform - pos: 14.5,18.5 - parent: 1668 - - uid: 2705 - components: - - type: Transform - pos: 15.5,18.5 - parent: 1668 - - uid: 2706 - components: - - type: Transform - pos: 13.5,13.5 - parent: 1668 - - uid: 2707 - components: - - type: Transform - pos: 13.5,12.5 - parent: 1668 - - uid: 2708 - components: - - type: Transform - pos: 13.5,11.5 - parent: 1668 - - uid: 2709 - components: - - type: Transform - pos: 10.5,13.5 - parent: 1668 - - uid: 2711 - components: - - type: Transform - pos: 10.5,11.5 - parent: 1668 - - uid: 2743 - components: - - type: Transform - pos: 10.5,22.5 - parent: 1668 - - uid: 3033 - components: - - type: Transform - pos: 7.5,30.5 - parent: 1668 - - uid: 3034 - components: - - type: Transform - pos: 8.5,30.5 - parent: 1668 - - uid: 3035 - components: - - type: Transform - pos: 9.5,30.5 - parent: 1668 - - uid: 3036 - components: - - type: Transform - pos: 9.5,31.5 - parent: 1668 - - uid: 3037 - components: - - type: Transform - pos: 10.5,31.5 - parent: 1668 - - uid: 3038 - components: - - type: Transform - pos: 11.5,31.5 - parent: 1668 - - uid: 3039 - components: - - type: Transform - pos: 12.5,31.5 - parent: 1668 - - uid: 3040 - components: - - type: Transform - pos: 13.5,31.5 - parent: 1668 - - uid: 3041 - components: - - type: Transform - pos: 14.5,31.5 - parent: 1668 - - uid: 3042 - components: - - type: Transform - pos: 15.5,31.5 - parent: 1668 - - uid: 3043 - components: - - type: Transform - pos: 8.5,31.5 - parent: 1668 - - uid: 3044 - components: - - type: Transform - pos: 7.5,31.5 - parent: 1668 - - uid: 3045 - components: - - type: Transform - pos: 6.5,31.5 - parent: 1668 - - uid: 3046 - components: - - type: Transform - pos: 5.5,31.5 - parent: 1668 - - uid: 3047 - components: - - type: Transform - pos: 4.5,31.5 - parent: 1668 - - uid: 3048 - components: - - type: Transform - pos: 3.5,31.5 - parent: 1668 - - uid: 3049 - components: - - type: Transform - pos: 9.5,29.5 - parent: 1668 - - uid: 3050 - components: - - type: Transform - pos: 9.5,28.5 - parent: 1668 - - uid: 3051 - components: - - type: Transform - pos: 8.5,29.5 - parent: 1668 - - uid: 3052 - components: - - type: Transform - pos: 7.5,29.5 - parent: 1668 - - uid: 3053 - components: - - type: Transform - pos: 10.5,29.5 - parent: 1668 - - uid: 3054 - components: - - type: Transform - pos: 11.5,29.5 - parent: 1668 - - uid: 3055 - components: - - type: Transform - pos: 9.5,26.5 - parent: 1668 - - uid: 3056 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1668 - - uid: 3057 - components: - - type: Transform - pos: 8.5,25.5 - parent: 1668 - - uid: 3058 - components: - - type: Transform - pos: 8.5,26.5 - parent: 1668 - - uid: 3059 - components: - - type: Transform - pos: 7.5,26.5 - parent: 1668 - - uid: 3060 - components: - - type: Transform - pos: 7.5,27.5 - parent: 1668 - - uid: 3061 - components: - - type: Transform - pos: 10.5,25.5 - parent: 1668 - - uid: 3062 - components: - - type: Transform - pos: 10.5,26.5 - parent: 1668 - - uid: 3063 - components: - - type: Transform - pos: 11.5,26.5 - parent: 1668 - - uid: 3064 - components: - - type: Transform - pos: 11.5,27.5 - parent: 1668 - - uid: 3065 - components: - - type: Transform - pos: 9.5,24.5 - parent: 1668 - - uid: 3066 - components: - - type: Transform - pos: 9.5,23.5 - parent: 1668 - - uid: 3067 - components: - - type: Transform - pos: 9.5,22.5 - parent: 1668 - - uid: 3068 - components: - - type: Transform - pos: 8.5,22.5 - parent: 1668 - - uid: 3069 - components: - - type: Transform - pos: 7.5,22.5 - parent: 1668 - - uid: 3070 - components: - - type: Transform - pos: 7.5,21.5 - parent: 1668 - - uid: 3071 - components: - - type: Transform - pos: 7.5,18.5 - parent: 1668 - - uid: 3072 - components: - - type: Transform - pos: 6.5,18.5 - parent: 1668 - - uid: 3073 - components: - - type: Transform - pos: 5.5,18.5 - parent: 1668 - - uid: 3074 - components: - - type: Transform - pos: 8.5,18.5 - parent: 1668 - - uid: 3075 - components: - - type: Transform - pos: 9.5,18.5 - parent: 1668 - - uid: 3076 - components: - - type: Transform - pos: 10.5,18.5 - parent: 1668 - - uid: 3077 - components: - - type: Transform - pos: 10.5,17.5 - parent: 1668 - - uid: 3078 - components: - - type: Transform - pos: 10.5,16.5 - parent: 1668 - - uid: 3080 - components: - - type: Transform - pos: 8.5,16.5 - parent: 1668 - - uid: 3081 - components: - - type: Transform - pos: 8.5,20.5 - parent: 1668 - - uid: 3082 - components: - - type: Transform - pos: 8.5,19.5 - parent: 1668 - - uid: 3083 - components: - - type: Transform - pos: 11.5,22.5 - parent: 1668 - - uid: 3084 - components: - - type: Transform - pos: 12.5,22.5 - parent: 1668 - - uid: 3085 - components: - - type: Transform - pos: 13.5,22.5 - parent: 1668 - - uid: 3086 - components: - - type: Transform - pos: 14.5,22.5 - parent: 1668 - - uid: 3087 - components: - - type: Transform - pos: 15.5,22.5 - parent: 1668 - - uid: 3088 - components: - - type: Transform - pos: 11.5,25.5 - parent: 1668 - - uid: 3089 - components: - - type: Transform - pos: 12.5,25.5 - parent: 1668 - - uid: 3090 - components: - - type: Transform - pos: 13.5,25.5 - parent: 1668 - - uid: 3091 - components: - - type: Transform - pos: 14.5,25.5 - parent: 1668 - - uid: 3092 - components: - - type: Transform - pos: 15.5,25.5 - parent: 1668 - - uid: 3093 - components: - - type: Transform - pos: 13.5,26.5 - parent: 1668 - - uid: 3094 - components: - - type: Transform - pos: 13.5,27.5 - parent: 1668 - - uid: 3095 - components: - - type: Transform - pos: 13.5,28.5 - parent: 1668 - - uid: 3096 - components: - - type: Transform - pos: 14.5,28.5 - parent: 1668 - - uid: 3097 - components: - - type: Transform - pos: 15.5,28.5 - parent: 1668 - - uid: 3098 - components: - - type: Transform - pos: 7.5,25.5 - parent: 1668 - - uid: 3099 - components: - - type: Transform - pos: 6.5,25.5 - parent: 1668 - - uid: 3100 - components: - - type: Transform - pos: 5.5,25.5 - parent: 1668 - - uid: 3101 - components: - - type: Transform - pos: 4.5,25.5 - parent: 1668 - - uid: 3102 - components: - - type: Transform - pos: 3.5,25.5 - parent: 1668 - - uid: 3103 - components: - - type: Transform - pos: 5.5,26.5 - parent: 1668 - - uid: 3104 - components: - - type: Transform - pos: 5.5,27.5 - parent: 1668 - - uid: 3105 - components: - - type: Transform - pos: 5.5,28.5 - parent: 1668 - - uid: 3106 - components: - - type: Transform - pos: 4.5,28.5 - parent: 1668 - - uid: 3107 - components: - - type: Transform - pos: 3.5,28.5 - parent: 1668 - - uid: 3108 - components: - - type: Transform - pos: 4.5,24.5 - parent: 1668 - - uid: 3109 - components: - - type: Transform - pos: 4.5,27.5 - parent: 1668 - - uid: 3110 - components: - - type: Transform - pos: 14.5,27.5 - parent: 1668 - - uid: 3111 - components: - - type: Transform - pos: 14.5,24.5 - parent: 1668 - - uid: 3112 - components: - - type: Transform - pos: 14.5,21.5 - parent: 1668 - - uid: 3113 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1668 - - uid: 3114 - components: - - type: Transform - pos: 5.5,30.5 - parent: 1668 - - uid: 3115 - components: - - type: Transform - pos: 12.5,30.5 - parent: 1668 - - uid: 3116 - components: - - type: Transform - pos: 13.5,30.5 - parent: 1668 - - uid: 3467 - components: - - type: Transform - pos: -22.5,12.5 - parent: 1668 - - uid: 3468 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1668 - - uid: 3469 - components: - - type: Transform - pos: -21.5,12.5 - parent: 1668 - - uid: 3470 - components: - - type: Transform - pos: -21.5,13.5 - parent: 1668 - - uid: 3471 - components: - - type: Transform - pos: -21.5,14.5 - parent: 1668 - - uid: 3472 - components: - - type: Transform - pos: -21.5,11.5 - parent: 1668 - - uid: 3473 - components: - - type: Transform - pos: -21.5,10.5 - parent: 1668 - - uid: 3474 - components: - - type: Transform - pos: -21.5,9.5 - parent: 1668 - - uid: 3475 - components: - - type: Transform - pos: -20.5,11.5 - parent: 1668 - - uid: 3476 - components: - - type: Transform - pos: -19.5,11.5 - parent: 1668 - - uid: 3477 - components: - - type: Transform - pos: -22.5,11.5 - parent: 1668 - - uid: 3478 - components: - - type: Transform - pos: -23.5,11.5 - parent: 1668 - - uid: 3479 - components: - - type: Transform - pos: -24.5,11.5 - parent: 1668 - - uid: 3480 - components: - - type: Transform - pos: -25.5,11.5 - parent: 1668 - - uid: 3481 - components: - - type: Transform - pos: -26.5,11.5 - parent: 1668 - - uid: 3482 - components: - - type: Transform - pos: -27.5,11.5 - parent: 1668 - - uid: 3483 - components: - - type: Transform - pos: -27.5,12.5 - parent: 1668 - - uid: 3484 - components: - - type: Transform - pos: -25.5,10.5 - parent: 1668 - - uid: 3485 - components: - - type: Transform - pos: -25.5,9.5 - parent: 1668 - - uid: 3486 - components: - - type: Transform - pos: -26.5,9.5 - parent: 1668 - - uid: 3487 - components: - - type: Transform - pos: -27.5,9.5 - parent: 1668 - - uid: 3488 - components: - - type: Transform - pos: -27.5,8.5 - parent: 1668 - - uid: 3489 - components: - - type: Transform - pos: -22.5,7.5 - parent: 1668 - - uid: 3490 - components: - - type: Transform - pos: -22.5,6.5 - parent: 1668 - - uid: 3491 - components: - - type: Transform - pos: -22.5,5.5 - parent: 1668 - - uid: 3492 - components: - - type: Transform - pos: -22.5,4.5 - parent: 1668 - - uid: 3493 - components: - - type: Transform - pos: -22.5,3.5 - parent: 1668 - - uid: 3494 - components: - - type: Transform - pos: -22.5,2.5 - parent: 1668 - - uid: 3495 - components: - - type: Transform - pos: -21.5,3.5 - parent: 1668 - - uid: 3496 - components: - - type: Transform - pos: -20.5,3.5 - parent: 1668 - - uid: 3497 - components: - - type: Transform - pos: -19.5,3.5 - parent: 1668 - - uid: 3498 - components: - - type: Transform - pos: -18.5,3.5 - parent: 1668 - - uid: 3499 - components: - - type: Transform - pos: -21.5,5.5 - parent: 1668 - - uid: 3500 - components: - - type: Transform - pos: -20.5,5.5 - parent: 1668 - - uid: 3501 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1668 - - uid: 3502 - components: - - type: Transform - pos: -23.5,5.5 - parent: 1668 - - uid: 3503 - components: - - type: Transform - pos: -23.5,3.5 - parent: 1668 - - uid: 3504 - components: - - type: Transform - pos: -13.5,6.5 - parent: 1668 - - uid: 3505 - components: - - type: Transform - pos: -14.5,6.5 - parent: 1668 - - uid: 3506 - components: - - type: Transform - pos: -14.5,5.5 - parent: 1668 - - uid: 3507 - components: - - type: Transform - pos: -12.5,6.5 - parent: 1668 - - uid: 3508 - components: - - type: Transform - pos: -12.5,5.5 - parent: 1668 - - uid: 3509 - components: - - type: Transform - pos: -11.5,5.5 - parent: 1668 - - uid: 3510 - components: - - type: Transform - pos: -15.5,5.5 - parent: 1668 - - uid: 3511 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1668 - - uid: 3512 - components: - - type: Transform - pos: -10.5,5.5 - parent: 1668 - - uid: 3513 - components: - - type: Transform - pos: -16.5,13.5 - parent: 1668 - - uid: 3514 - components: - - type: Transform - pos: -16.5,12.5 - parent: 1668 - - uid: 3515 - components: - - type: Transform - pos: -15.5,12.5 - parent: 1668 - - uid: 3516 - components: - - type: Transform - pos: -15.5,11.5 - parent: 1668 - - uid: 3517 - components: - - type: Transform - pos: -15.5,10.5 - parent: 1668 - - uid: 3518 - components: - - type: Transform - pos: -15.5,9.5 - parent: 1668 - - uid: 3519 - components: - - type: Transform - pos: -20.5,9.5 - parent: 1668 - - uid: 3520 - components: - - type: Transform - pos: -19.5,9.5 - parent: 1668 - - uid: 3521 - components: - - type: Transform - pos: -22.5,9.5 - parent: 1668 - - uid: 3522 - components: - - type: Transform - pos: -23.5,9.5 - parent: 1668 - - uid: 3991 - components: - - type: Transform - pos: -31.5,2.5 - parent: 1668 - - uid: 3992 - components: - - type: Transform - pos: -31.5,1.5 - parent: 1668 - - uid: 3993 - components: - - type: Transform - pos: -31.5,0.5 - parent: 1668 - - uid: 3994 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 1668 - - uid: 3995 - components: - - type: Transform - pos: -31.5,-1.5 - parent: 1668 - - uid: 3996 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 1668 - - uid: 3997 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 1668 - - uid: 3998 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 1668 - - uid: 3999 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 1668 - - uid: 4000 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 1668 - - uid: 4001 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 1668 - - uid: 4002 - components: - - type: Transform - pos: -34.5,-0.5 - parent: 1668 - - uid: 4003 - components: - - type: Transform - pos: -32.5,1.5 - parent: 1668 - - uid: 4004 - components: - - type: Transform - pos: -33.5,1.5 - parent: 1668 - - uid: 4005 - components: - - type: Transform - pos: -34.5,1.5 - parent: 1668 - - uid: 4006 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 1668 - - uid: 4007 - components: - - type: Transform - pos: -29.5,-0.5 - parent: 1668 - - uid: 4008 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 1668 - - uid: 4009 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 1668 - - uid: 4010 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 1668 - - uid: 4011 - components: - - type: Transform - pos: -24.5,-0.5 - parent: 1668 - - uid: 4012 - components: - - type: Transform - pos: -23.5,-0.5 - parent: 1668 - - uid: 4013 - components: - - type: Transform - pos: -22.5,-0.5 - parent: 1668 - - uid: 4014 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 1668 - - uid: 4015 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 1668 - - uid: 4016 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 1668 - - uid: 4017 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 1668 - - uid: 4018 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 1668 - - uid: 4019 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 1668 - - uid: 4020 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 1668 - - uid: 4021 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 1668 - - uid: 4022 - components: - - type: Transform - pos: -13.5,-0.5 - parent: 1668 - - uid: 4023 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 1668 - - uid: 4024 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 1668 - - uid: 4025 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 1668 - - uid: 4026 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 1668 - - uid: 4027 - components: - - type: Transform - pos: -14.5,0.5 - parent: 1668 - - uid: 4028 - components: - - type: Transform - pos: -14.5,1.5 - parent: 1668 - - uid: 4029 - components: - - type: Transform - pos: -15.5,1.5 - parent: 1668 - - uid: 4030 - components: - - type: Transform - pos: -16.5,1.5 - parent: 1668 - - uid: 4031 - components: - - type: Transform - pos: -12.5,0.5 - parent: 1668 - - uid: 4032 - components: - - type: Transform - pos: -12.5,1.5 - parent: 1668 - - uid: 4033 - components: - - type: Transform - pos: -11.5,1.5 - parent: 1668 - - uid: 4034 - components: - - type: Transform - pos: -10.5,1.5 - parent: 1668 - - uid: 4035 - components: - - type: Transform - pos: -13.5,1.5 - parent: 1668 - - uid: 4036 - components: - - type: Transform - pos: -13.5,2.5 - parent: 1668 - - uid: 4037 - components: - - type: Transform - pos: -17.5,0.5 - parent: 1668 - - uid: 4038 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1668 - - uid: 4039 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1668 - - uid: 4040 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 1668 - - uid: 4041 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 1668 - - uid: 4042 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 1668 - - uid: 4043 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 1668 - - uid: 4044 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 1668 - - uid: 4045 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 1668 - - uid: 4046 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 1668 - - uid: 4047 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 1668 - - uid: 4048 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 1668 - - uid: 4049 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 1668 - - uid: 4050 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 1668 - - uid: 4051 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 1668 - - uid: 4052 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 1668 - - uid: 4053 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 1668 - - uid: 4054 - components: - - type: Transform - pos: -24.5,-7.5 - parent: 1668 - - uid: 4055 - components: - - type: Transform - pos: -23.5,-7.5 - parent: 1668 - - uid: 4056 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 1668 - - uid: 4057 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 1668 - - uid: 4058 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 1668 - - uid: 4059 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 1668 - - uid: 4060 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 1668 - - uid: 4061 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 1668 - - uid: 4062 - components: - - type: Transform - pos: -17.5,-7.5 - parent: 1668 - - uid: 4063 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 1668 - - uid: 4064 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 1668 - - uid: 4065 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 1668 - - uid: 4066 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 1668 - - uid: 4067 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 1668 - - uid: 4068 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 1668 - - uid: 4069 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 1668 - - uid: 4070 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 1668 - - uid: 4071 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 1668 - - uid: 4072 - components: - - type: Transform - pos: -13.5,-4.5 - parent: 1668 - - uid: 4073 - components: - - type: Transform - pos: -13.5,-5.5 - parent: 1668 - - uid: 4074 - components: - - type: Transform - pos: -13.5,-6.5 - parent: 1668 - - uid: 4075 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 1668 - - uid: 4076 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 1668 - - uid: 4077 - components: - - type: Transform - pos: -12.5,-8.5 - parent: 1668 - - uid: 4078 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 1668 - - uid: 4079 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 1668 - - uid: 4080 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 1668 - - uid: 4081 - components: - - type: Transform - pos: -14.5,-4.5 - parent: 1668 - - uid: 4082 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 1668 - - uid: 4083 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 1668 - - uid: 4084 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 1668 - - uid: 4085 - components: - - type: Transform - pos: -31.5,7.5 - parent: 1668 - - uid: 4086 - components: - - type: Transform - pos: -31.5,6.5 - parent: 1668 - - uid: 4087 - components: - - type: Transform - pos: -31.5,5.5 - parent: 1668 - - uid: 4088 - components: - - type: Transform - pos: -31.5,4.5 - parent: 1668 - - uid: 4089 - components: - - type: Transform - pos: -32.5,4.5 - parent: 1668 - - uid: 4090 - components: - - type: Transform - pos: -33.5,4.5 - parent: 1668 - - uid: 4091 - components: - - type: Transform - pos: -34.5,4.5 - parent: 1668 - - uid: 4092 - components: - - type: Transform - pos: -34.5,3.5 - parent: 1668 - - uid: 4093 - components: - - type: Transform - pos: -34.5,5.5 - parent: 1668 - - uid: 4094 - components: - - type: Transform - pos: -34.5,6.5 - parent: 1668 - - uid: 4095 - components: - - type: Transform - pos: -32.5,6.5 - parent: 1668 - - uid: 4096 - components: - - type: Transform - pos: -32.5,7.5 - parent: 1668 - - uid: 4097 - components: - - type: Transform - pos: -33.5,7.5 - parent: 1668 - - uid: 4098 - components: - - type: Transform - pos: -30.5,7.5 - parent: 1668 - - uid: 4099 - components: - - type: Transform - pos: -30.5,4.5 - parent: 1668 - - uid: 4100 - components: - - type: Transform - pos: -29.5,4.5 - parent: 1668 - - uid: 4101 - components: - - type: Transform - pos: -28.5,4.5 - parent: 1668 - - uid: 4102 - components: - - type: Transform - pos: -27.5,4.5 - parent: 1668 - - uid: 4103 - components: - - type: Transform - pos: -27.5,3.5 - parent: 1668 - - uid: 4104 - components: - - type: Transform - pos: -27.5,5.5 - parent: 1668 - - uid: 4481 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 1668 - - uid: 4482 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 1668 - - uid: 4483 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 1668 - - uid: 4484 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 1668 - - uid: 4485 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 1668 - - uid: 4486 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 1668 - - uid: 4487 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 1668 - - uid: 4488 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 1668 - - uid: 4489 - components: - - type: Transform - pos: -2.5,-18.5 - parent: 1668 - - uid: 4490 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 1668 - - uid: 4491 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 1668 - - uid: 4492 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 1668 - - uid: 4493 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 1668 - - uid: 4494 - components: - - type: Transform - pos: -4.5,-16.5 - parent: 1668 - - uid: 4495 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 1668 - - uid: 4496 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 1668 - - uid: 4497 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 1668 - - uid: 4498 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 1668 - - uid: 4500 - components: - - type: Transform - pos: -1.5,-17.5 - parent: 1668 - - uid: 4501 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 1668 - - uid: 4502 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 1668 - - uid: 4503 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1668 - - uid: 4505 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1668 - - uid: 4506 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 1668 - - uid: 4507 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 1668 - - uid: 4508 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 1668 - - uid: 4509 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 1668 - - uid: 4510 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 1668 - - uid: 4511 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 1668 - - uid: 4512 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 1668 - - uid: 4513 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 1668 - - uid: 4514 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 1668 - - uid: 4515 - components: - - type: Transform - pos: -9.5,-22.5 - parent: 1668 - - uid: 4516 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 1668 - - uid: 4517 - components: - - type: Transform - pos: 7.5,-24.5 - parent: 1668 - - uid: 4518 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 1668 - - uid: 4519 - components: - - type: Transform - pos: 9.5,-24.5 - parent: 1668 - - uid: 4520 - components: - - type: Transform - pos: 9.5,-25.5 - parent: 1668 - - uid: 4521 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 1668 - - uid: 4522 - components: - - type: Transform - pos: 9.5,-27.5 - parent: 1668 - - uid: 4523 - components: - - type: Transform - pos: 9.5,-23.5 - parent: 1668 - - uid: 4524 - components: - - type: Transform - pos: 9.5,-22.5 - parent: 1668 - - uid: 4525 - components: - - type: Transform - pos: 8.5,-22.5 - parent: 1668 - - uid: 4526 - components: - - type: Transform - pos: 7.5,-22.5 - parent: 1668 - - uid: 4527 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 1668 - - uid: 4528 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 1668 - - uid: 4529 - components: - - type: Transform - pos: -2.5,-26.5 - parent: 1668 - - uid: 4530 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 1668 - - uid: 4531 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 1668 - - uid: 4532 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 1668 - - uid: 4533 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 1668 - - uid: 4534 - components: - - type: Transform - pos: 1.5,-27.5 - parent: 1668 - - uid: 4535 - components: - - type: Transform - pos: 2.5,-27.5 - parent: 1668 - - uid: 4536 - components: - - type: Transform - pos: 3.5,-27.5 - parent: 1668 - - uid: 4537 - components: - - type: Transform - pos: 4.5,-27.5 - parent: 1668 - - uid: 4538 - components: - - type: Transform - pos: 5.5,-27.5 - parent: 1668 - - uid: 4539 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 1668 - - uid: 4540 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 1668 - - uid: 4541 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 1668 - - uid: 4542 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 1668 - - uid: 4543 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 1668 - - uid: 4544 - components: - - type: Transform - pos: -6.5,-28.5 - parent: 1668 - - uid: 4545 - components: - - type: Transform - pos: -6.5,-26.5 - parent: 1668 - - uid: 4546 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 1668 - - uid: 4547 - components: - - type: Transform - pos: -0.5,-26.5 - parent: 1668 - - uid: 4548 - components: - - type: Transform - pos: -0.5,-28.5 - parent: 1668 - - uid: 4549 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 1668 - - uid: 4550 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 1668 - - uid: 4551 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 1668 - - uid: 4552 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 1668 - - uid: 4553 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 1668 - - uid: 4554 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 1668 - - uid: 4555 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 1668 - - uid: 4556 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 1668 - - uid: 4557 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 1668 - - uid: 4558 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 1668 - - uid: 4559 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 1668 - - uid: 4560 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 1668 - - uid: 4561 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 1668 - - uid: 4562 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 1668 - - uid: 4563 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 1668 - - uid: 4564 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 1668 - - uid: 4565 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 1668 - - uid: 4566 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 1668 - - uid: 4567 - components: - - type: Transform - pos: 3.5,-23.5 - parent: 1668 - - uid: 4898 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 1668 - - uid: 4899 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 1668 - - uid: 4900 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 1668 - - uid: 4901 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 1668 - - uid: 4902 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 1668 - - uid: 4903 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 1668 - - uid: 4904 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 1668 - - uid: 4905 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 1668 - - uid: 4906 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 1668 - - uid: 4907 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 1668 - - uid: 4908 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 1668 - - uid: 4909 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 1668 - - uid: 4910 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 1668 - - uid: 4911 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 1668 - - uid: 4912 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 1668 - - uid: 4913 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 1668 - - uid: 4914 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 1668 - - uid: 4915 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 1668 - - uid: 4916 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 1668 - - uid: 4917 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 1668 - - uid: 4918 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 1668 - - uid: 4919 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 1668 - - uid: 4920 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 1668 - - uid: 4921 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 1668 - - uid: 4922 - components: - - type: Transform - pos: -13.5,-16.5 - parent: 1668 - - uid: 4993 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 1668 - - uid: 4994 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1668 - - uid: 4995 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 1668 - - uid: 4996 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 1668 - - uid: 4997 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 1668 - - uid: 4998 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 1668 - - uid: 4999 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 1668 - - uid: 5000 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 1668 - - uid: 5001 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 1668 - - uid: 5002 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 1668 - - uid: 5003 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 1668 - - uid: 5004 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 1668 - - uid: 5005 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 1668 - - uid: 5006 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 1668 - - uid: 5007 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 1668 - - uid: 5008 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 1668 - - uid: 5009 - components: - - type: Transform - pos: 21.5,-14.5 - parent: 1668 - - uid: 5010 - components: - - type: Transform - pos: 22.5,-14.5 - parent: 1668 - - uid: 5011 - components: - - type: Transform - pos: 19.5,-19.5 - parent: 1668 - - uid: 5012 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 1668 - - uid: 5013 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 1668 - - uid: 5014 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 1668 - - uid: 5015 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 1668 - - uid: 5016 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 1668 - - uid: 5017 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 1668 - - uid: 5018 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 1668 - - uid: 5019 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1668 - - uid: 5020 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1668 - - uid: 5021 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 1668 - - uid: 5022 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 1668 - - uid: 5023 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 1668 - - uid: 5024 - components: - - type: Transform - pos: 16.5,-26.5 - parent: 1668 - - uid: 5026 - components: - - type: Transform - pos: 15.5,-24.5 - parent: 1668 - - uid: 5027 - components: - - type: Transform - pos: 14.5,-24.5 - parent: 1668 - - uid: 5028 - components: - - type: Transform - pos: 13.5,-24.5 - parent: 1668 - - uid: 5029 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 1668 - - uid: 5030 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 1668 - - uid: 5031 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 1668 - - uid: 5032 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 1668 - - uid: 5033 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 1668 - - uid: 5034 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 1668 - - uid: 5035 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 1668 - - uid: 5036 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 1668 - - uid: 5037 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 1668 - - uid: 5038 - components: - - type: Transform - pos: 19.5,-25.5 - parent: 1668 - - uid: 5039 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 1668 - - uid: 5040 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 1668 - - uid: 5121 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1668 - - uid: 5122 - components: - - type: Transform - pos: 34.5,-10.5 - parent: 1668 - - uid: 5123 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 1668 - - uid: 5124 - components: - - type: Transform - pos: 34.5,-12.5 - parent: 1668 - - uid: 5125 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 1668 - - uid: 5126 - components: - - type: Transform - pos: 33.5,-13.5 - parent: 1668 - - uid: 5127 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 1668 - - uid: 5128 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 1668 - - uid: 5129 - components: - - type: Transform - pos: 31.5,-13.5 - parent: 1668 - - uid: 5130 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 1668 - - uid: 5131 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 1668 - - uid: 5132 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 1668 - - uid: 5134 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 1668 - - uid: 5135 - components: - - type: Transform - pos: 23.5,-23.5 - parent: 1668 - - uid: 5136 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 1668 - - uid: 5137 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 1668 - - uid: 5138 - components: - - type: Transform - pos: 26.5,-23.5 - parent: 1668 - - uid: 5139 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 1668 - - uid: 5140 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 1668 - - uid: 5141 - components: - - type: Transform - pos: 25.5,-26.5 - parent: 1668 - - uid: 5142 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 1668 - - uid: 5143 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 1668 - - uid: 5144 - components: - - type: Transform - pos: 25.5,-20.5 - parent: 1668 - - uid: 5145 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 1668 - - uid: 5147 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1668 - - uid: 5148 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 1668 - - uid: 5149 - components: - - type: Transform - pos: 29.5,-21.5 - parent: 1668 - - uid: 5150 - components: - - type: Transform - pos: 29.5,-22.5 - parent: 1668 - - uid: 5151 - components: - - type: Transform - pos: 29.5,-23.5 - parent: 1668 - - uid: 5152 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 1668 - - uid: 5153 - components: - - type: Transform - pos: 29.5,-25.5 - parent: 1668 - - uid: 5154 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 1668 - - uid: 5155 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1668 - - uid: 5156 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 1668 - - uid: 5157 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 1668 - - uid: 5158 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 1668 - - uid: 5159 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 1668 - - uid: 5160 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 1668 - - uid: 5161 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 1668 - - uid: 5162 - components: - - type: Transform - pos: 33.5,-25.5 - parent: 1668 - - uid: 5163 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1668 - - uid: 5164 - components: - - type: Transform - pos: 31.5,-21.5 - parent: 1668 - - uid: 5165 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 1668 - - uid: 5166 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 1668 - - uid: 5171 - components: - - type: Transform - pos: 31.5,-20.5 - parent: 1668 - - uid: 5172 components: - type: Transform pos: 31.5,-19.5 parent: 1668 - - uid: 5173 - components: - - type: Transform - pos: 33.5,-20.5 - parent: 1668 - - uid: 5174 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 1668 - - uid: 5258 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 1668 - - uid: 5259 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 1668 - - uid: 5260 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 1668 - - uid: 5261 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 1668 - - uid: 5262 - components: - - type: Transform - pos: 31.5,-17.5 - parent: 1668 - - uid: 5263 - components: - - type: Transform - pos: 32.5,-17.5 - parent: 1668 - - uid: 5264 - components: - - type: Transform - pos: 33.5,-17.5 - parent: 1668 - - uid: 5265 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 1668 - - uid: 5266 - components: - - type: Transform - pos: 28.5,-17.5 - parent: 1668 - - uid: 5267 - components: - - type: Transform - pos: 27.5,-17.5 - parent: 1668 - - uid: 5268 - components: - - type: Transform - pos: 26.5,-17.5 - parent: 1668 - - uid: 5269 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 1668 - - uid: 5270 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 1668 - - uid: 5271 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 1668 - - uid: 5272 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 1668 - - uid: 5273 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 1668 - - uid: 5274 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 1668 - - uid: 5275 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 1668 - - uid: 5276 - components: - - type: Transform - pos: 27.5,-14.5 - parent: 1668 - - uid: 5441 - components: - - type: Transform - pos: 15.5,-22.5 - parent: 1668 - - uid: 5442 - components: - - type: Transform - pos: 17.5,-22.5 - parent: 1668 - - uid: 5443 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 1668 - - uid: 5444 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 1668 - - uid: 5445 - components: - - type: Transform - pos: 16.5,-30.5 - parent: 1668 - - uid: 5446 - components: - - type: Transform - pos: 16.5,-31.5 - parent: 1668 - - uid: 5447 - components: - - type: Transform - pos: 17.5,-30.5 - parent: 1668 - - uid: 5448 - components: - - type: Transform - pos: 18.5,-30.5 - parent: 1668 - - uid: 5449 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 1668 - - uid: 5450 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 1668 - - uid: 5585 - components: - - type: Transform - pos: 21.5,-26.5 - parent: 1668 - - uid: 5935 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 1668 - - uid: 5936 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 1668 - - uid: 5937 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 1668 - - uid: 5938 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 1668 - - uid: 5939 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 1668 - - uid: 5940 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 1668 - - uid: 6067 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 1668 - - uid: 6068 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 1668 - - uid: 6069 - components: - - type: Transform - pos: -19.5,-22.5 - parent: 1668 - - uid: 6070 - components: - - type: Transform - pos: -19.5,-23.5 - parent: 1668 - - uid: 6071 - components: - - type: Transform - pos: -19.5,-24.5 - parent: 1668 - - uid: 6072 - components: - - type: Transform - pos: -19.5,-25.5 - parent: 1668 - - uid: 6073 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 1668 - - uid: 6074 - components: - - type: Transform - pos: -19.5,-27.5 - parent: 1668 - - uid: 6075 - components: - - type: Transform - pos: -19.5,-28.5 - parent: 1668 - - uid: 6076 - components: - - type: Transform - pos: -20.5,-26.5 - parent: 1668 - - uid: 6077 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 1668 - - uid: 6078 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 1668 - - uid: 6079 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 1668 - - uid: 6080 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 1668 - - uid: 6081 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 1668 - - uid: 6082 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 1668 - - uid: 6083 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 1668 - - uid: 6084 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 1668 - - uid: 6085 - components: - - type: Transform - pos: -21.5,-23.5 - parent: 1668 - - uid: 6086 - components: - - type: Transform - pos: -21.5,-25.5 - parent: 1668 - - uid: 6087 - components: - - type: Transform - pos: -21.5,-27.5 - parent: 1668 - - uid: 6088 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 1668 - - uid: 6089 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 1668 - - uid: 6090 - components: - - type: Transform - pos: -23.5,-26.5 - parent: 1668 - - uid: 6091 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 1668 - - uid: 6092 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 1668 - - uid: 6093 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 1668 - - uid: 6094 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 1668 - - uid: 6095 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 1668 - - uid: 6096 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 1668 - - uid: 6097 - components: - - type: Transform - pos: -19.5,-33.5 - parent: 1668 - - uid: 6098 - components: - - type: Transform - pos: -20.5,-33.5 - parent: 1668 - - uid: 6099 - components: - - type: Transform - pos: -20.5,-32.5 - parent: 1668 - - uid: 6100 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 1668 - - uid: 6112 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 1668 - - uid: 6113 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 1668 - - uid: 6114 - components: - - type: Transform - pos: -13.5,-28.5 - parent: 1668 - - uid: 6115 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 1668 - - uid: 6116 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1668 - - uid: 6117 - components: - - type: Transform - pos: -13.5,-31.5 - parent: 1668 - - uid: 6118 - components: - - type: Transform - pos: -13.5,-32.5 - parent: 1668 - - uid: 6119 - components: - - type: Transform - pos: -13.5,-33.5 - parent: 1668 - - uid: 6120 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 1668 - - uid: 6121 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 1668 - - uid: 6122 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 1668 - - uid: 6123 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 1668 - - uid: 6124 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 1668 - - uid: 6125 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 1668 - - uid: 6126 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 1668 - - uid: 6127 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 1668 - - uid: 6128 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 1668 - - uid: 6129 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 1668 - - uid: 6131 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 1668 - - uid: 6132 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 1668 - - uid: 6133 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 1668 - - uid: 6134 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 1668 - - uid: 6135 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 1668 - - uid: 6136 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 1668 - - uid: 6202 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 1668 - - uid: 6203 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 1668 - - uid: 6204 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 1668 - - uid: 6205 - components: - - type: Transform - pos: -8.5,-32.5 - parent: 1668 - - uid: 6206 - components: - - type: Transform - pos: -7.5,-32.5 - parent: 1668 - - uid: 6207 - components: - - type: Transform - pos: -6.5,-32.5 - parent: 1668 - - uid: 6208 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 1668 - - uid: 6209 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 1668 - - uid: 6210 - components: - - type: Transform - pos: -9.5,-32.5 - parent: 1668 - - uid: 6211 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 1668 - - uid: 6212 - components: - - type: Transform - pos: -11.5,-32.5 - parent: 1668 - - uid: 6213 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1668 - - uid: 6214 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 1668 - - uid: 6215 - components: - - type: Transform - pos: 7.5,-32.5 - parent: 1668 - - uid: 6216 - components: - - type: Transform - pos: 7.5,-33.5 - parent: 1668 - - uid: 6217 - components: - - type: Transform - pos: 6.5,-32.5 - parent: 1668 - - uid: 6218 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 1668 - - uid: 6219 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 1668 - - uid: 6220 - components: - - type: Transform - pos: 3.5,-32.5 - parent: 1668 - - uid: 6221 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 1668 - - uid: 6222 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 1668 - - uid: 6223 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 1668 - - uid: 6224 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 1668 - - uid: 6225 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 1668 - - uid: 6346 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 1668 - - uid: 6347 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 1668 - - uid: 6348 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 1668 - - uid: 6349 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 1668 - - uid: 6350 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 1668 - - uid: 6351 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 1668 - - uid: 6352 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 1668 - - uid: 6353 - components: - - type: Transform - pos: 1.5,-36.5 - parent: 1668 - - uid: 6354 - components: - - type: Transform - pos: 2.5,-36.5 - parent: 1668 - - uid: 6355 - components: - - type: Transform - pos: 3.5,-36.5 - parent: 1668 - - uid: 6356 - components: - - type: Transform - pos: -3.5,-36.5 - parent: 1668 - - uid: 6357 - components: - - type: Transform - pos: -4.5,-36.5 - parent: 1668 - - uid: 6358 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 1668 - - uid: 6359 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 1668 - - uid: 6360 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 1668 - - uid: 6409 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 1668 - - uid: 6410 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 1668 - - uid: 6411 - components: - - type: Transform - pos: -2.5,-42.5 - parent: 1668 - - uid: 6412 - components: - - type: Transform - pos: -2.5,-43.5 - parent: 1668 - - uid: 6413 - components: - - type: Transform - pos: -1.5,-42.5 - parent: 1668 - - uid: 6414 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 1668 - - uid: 6415 - components: - - type: Transform - pos: 0.5,-42.5 - parent: 1668 - - uid: 6416 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 1668 - - uid: 6417 - components: - - type: Transform - pos: 2.5,-42.5 - parent: 1668 - - uid: 6418 - components: - - type: Transform - pos: 3.5,-42.5 - parent: 1668 - - uid: 6419 - components: - - type: Transform - pos: 4.5,-42.5 - parent: 1668 - - uid: 6420 - components: - - type: Transform - pos: 4.5,-41.5 - parent: 1668 - - uid: 6421 - components: - - type: Transform - pos: 4.5,-40.5 - parent: 1668 - - uid: 6422 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 1668 - - uid: 6423 - components: - - type: Transform - pos: -4.5,-42.5 - parent: 1668 - - uid: 6424 - components: - - type: Transform - pos: -5.5,-42.5 - parent: 1668 - - uid: 6425 - components: - - type: Transform - pos: -5.5,-41.5 - parent: 1668 - - uid: 6426 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 1668 - - uid: 6427 - components: - - type: Transform - pos: -0.5,-41.5 - parent: 1668 - - uid: 6428 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 1668 - - uid: 6429 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 1668 - - uid: 6430 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 1668 - - uid: 6431 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 1668 - - uid: 6432 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 1668 - - uid: 6433 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 1668 - - uid: 6434 - components: - - type: Transform - pos: -2.5,-45.5 - parent: 1668 - - uid: 6435 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 1668 - - uid: 6436 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 1668 - - uid: 6437 - components: - - type: Transform - pos: 1.5,-43.5 - parent: 1668 - - uid: 6438 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 1668 - - uid: 6439 - components: - - type: Transform - pos: 1.5,-46.5 - parent: 1668 - - uid: 6774 - components: - - type: Transform - pos: 26.5,-26.5 - parent: 1668 - - uid: 6776 - components: - - type: Transform - pos: 27.5,-26.5 - parent: 1668 - - uid: 6854 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 1668 - - uid: 6855 - components: - - type: Transform - pos: 32.5,-28.5 - parent: 1668 - - uid: 6856 - components: - - type: Transform - pos: 32.5,-29.5 - parent: 1668 - - uid: 6857 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 1668 - - uid: 6858 - components: - - type: Transform - pos: 32.5,-31.5 - parent: 1668 - - uid: 6859 - components: - - type: Transform - pos: 31.5,-30.5 - parent: 1668 - - uid: 6860 - components: - - type: Transform - pos: 30.5,-30.5 - parent: 1668 - - uid: 6861 - components: - - type: Transform - pos: 29.5,-30.5 - parent: 1668 - - uid: 6862 - components: - - type: Transform - pos: 28.5,-30.5 - parent: 1668 - - uid: 6863 - components: - - type: Transform - pos: 33.5,-30.5 - parent: 1668 - - uid: 6971 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 1668 - - uid: 6972 - components: - - type: Transform - pos: 20.5,-30.5 - parent: 1668 - - uid: 6973 - components: - - type: Transform - pos: 21.5,-30.5 - parent: 1668 - - uid: 6974 - components: - - type: Transform - pos: 22.5,-30.5 - parent: 1668 - - uid: 6975 - components: - - type: Transform - pos: 22.5,-29.5 - parent: 1668 - - uid: 6976 - components: - - type: Transform - pos: 22.5,-31.5 - parent: 1668 -- proto: CableHV +- proto: AirlockBrigGlassLocked entities: - - uid: 1391 + - uid: 554 components: - type: Transform - pos: 27.5,-31.5 + rot: 3.141592653589793 rad + pos: 10.5,2.5 parent: 1668 - - uid: 1465 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 555 components: - type: Transform - pos: 26.5,-25.5 + rot: 3.141592653589793 rad + pos: 9.5,2.5 parent: 1668 - - uid: 1475 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 577 components: - type: Transform - pos: 15.5,-13.5 + rot: 3.141592653589793 rad + pos: 10.5,6.5 parent: 1668 - - uid: 1476 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 578 components: - type: Transform - pos: 16.5,-13.5 + rot: 3.141592653589793 rad + pos: 9.5,6.5 parent: 1668 - - uid: 1477 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 1668 - - uid: 1478 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 1668 - - uid: 1479 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 1668 - - uid: 1480 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 1668 - - uid: 1482 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 1668 - - uid: 1659 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 1668 - - uid: 1864 - components: - - type: Transform - pos: -3.5,20.5 - parent: 1668 - - uid: 1865 - components: - - type: Transform - pos: -2.5,20.5 - parent: 1668 - - uid: 1866 - components: - - type: Transform - pos: -1.5,20.5 - parent: 1668 - - uid: 1867 - components: - - type: Transform - pos: -0.5,20.5 - parent: 1668 - - uid: 1868 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1668 - - uid: 1869 - components: - - type: Transform - pos: 1.5,20.5 - parent: 1668 - - uid: 1870 - components: - - type: Transform - pos: 2.5,20.5 - parent: 1668 - - uid: 1871 - components: - - type: Transform - pos: -0.5,19.5 - parent: 1668 - - uid: 1872 - components: - - type: Transform - pos: -0.5,18.5 - parent: 1668 - - uid: 1873 - components: - - type: Transform - pos: -0.5,17.5 - parent: 1668 - - uid: 1874 - components: - - type: Transform - pos: -0.5,16.5 - parent: 1668 - - uid: 1875 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1668 - - uid: 1876 - components: - - type: Transform - pos: -0.5,14.5 - parent: 1668 - - uid: 1877 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1668 - - uid: 1878 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1668 - - uid: 1879 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1668 - - uid: 1880 - components: - - type: Transform - pos: -0.5,10.5 - parent: 1668 - - uid: 1881 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1668 - - uid: 1882 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1668 - - uid: 1883 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1668 - - uid: 1884 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1668 - - uid: 1885 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1668 - - uid: 1886 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1668 - - uid: 1887 - components: - - type: Transform - pos: -0.5,3.5 - parent: 1668 - - uid: 1888 - components: - - type: Transform - pos: 0.5,3.5 - parent: 1668 - - uid: 1889 - components: - - type: Transform - pos: 1.5,3.5 - parent: 1668 - - uid: 1890 - components: - - type: Transform - pos: 2.5,3.5 - parent: 1668 - - uid: 1891 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1668 - - uid: 1892 - components: - - type: Transform - pos: 4.5,3.5 - parent: 1668 - - uid: 1893 - components: - - type: Transform - pos: 4.5,2.5 - parent: 1668 - - uid: 1894 - components: - - type: Transform - pos: 4.5,1.5 - parent: 1668 - - uid: 1895 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1668 - - uid: 1896 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 1668 - - uid: 1897 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 1668 - - uid: 1898 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 1668 - - uid: 1899 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 1668 - - uid: 1900 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 1668 - - uid: 1901 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 1668 - - uid: 1902 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 1668 - - uid: 1903 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1668 - - uid: 1904 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 1668 - - uid: 1905 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 1668 - - uid: 1906 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 1668 - - uid: 1907 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 1668 - - uid: 1908 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 1668 - - uid: 1909 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 1668 - - uid: 1910 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 1668 - - uid: 1911 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 1668 - - uid: 1912 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 1668 - - uid: 1913 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 1668 - - uid: 1914 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 1668 - - uid: 1915 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 1668 - - uid: 1916 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - uid: 1917 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - uid: 1918 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1668 - - uid: 1919 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 1668 - - uid: 1920 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 1668 - - uid: 1921 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1668 - - uid: 1922 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 1668 - - uid: 1923 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 1668 - - uid: 1924 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 1668 - - uid: 1925 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 1668 - - uid: 1926 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 1668 - - uid: 1927 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 1668 - - uid: 1928 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 1668 - - uid: 1929 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 1668 - - uid: 1930 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1668 - - uid: 1931 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 1668 - - uid: 1932 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 1668 - - uid: 1933 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 1668 - - uid: 1934 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 1668 - - uid: 1935 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 1668 - - uid: 1936 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 1668 - - uid: 1937 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 1668 - - uid: 1938 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 1668 - - uid: 1939 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 1668 - - uid: 1940 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 1668 - - uid: 1941 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 1668 - - uid: 1942 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 1668 - - uid: 1943 - components: - - type: Transform - pos: 12.5,-4.5 - parent: 1668 - - uid: 1944 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 1668 - - uid: 1945 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 1668 - - uid: 1946 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 1668 - - uid: 1947 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 1668 - - uid: 1948 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 1668 - - uid: 1949 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 1668 - - uid: 1950 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 1668 - - uid: 1951 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1668 - - uid: 1952 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 1668 - - uid: 1953 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 1668 - - uid: 1954 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 1668 - - uid: 2523 - components: - - type: Transform - pos: 0.5,12.5 - parent: 1668 - - uid: 2524 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1668 - - uid: 2525 - components: - - type: Transform - pos: 2.5,12.5 - parent: 1668 - - uid: 2526 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1668 - - uid: 2527 - components: - - type: Transform - pos: 4.5,12.5 - parent: 1668 - - uid: 2528 - components: - - type: Transform - pos: 5.5,12.5 - parent: 1668 - - uid: 2529 - components: - - type: Transform - pos: 6.5,12.5 - parent: 1668 - - uid: 2530 - components: - - type: Transform - pos: 7.5,12.5 - parent: 1668 - - uid: 2531 - components: - - type: Transform - pos: 8.5,12.5 - parent: 1668 - - uid: 2532 - components: - - type: Transform - pos: 9.5,12.5 - parent: 1668 - - uid: 2533 - components: - - type: Transform - pos: 10.5,12.5 - parent: 1668 - - uid: 2534 - components: - - type: Transform - pos: 11.5,12.5 - parent: 1668 - - uid: 2535 - components: - - type: Transform - pos: 12.5,12.5 - parent: 1668 - - uid: 2536 - components: - - type: Transform - pos: 13.5,12.5 - parent: 1668 - - uid: 2537 - components: - - type: Transform - pos: 14.5,12.5 - parent: 1668 - - uid: 2538 - components: - - type: Transform - pos: 14.5,13.5 - parent: 1668 - - uid: 2539 - components: - - type: Transform - pos: 14.5,14.5 - parent: 1668 - - uid: 2540 - components: - - type: Transform - pos: 14.5,15.5 - parent: 1668 - - uid: 2541 - components: - - type: Transform - pos: 14.5,16.5 - parent: 1668 - - uid: 2542 - components: - - type: Transform - pos: 14.5,17.5 - parent: 1668 - - uid: 2543 - components: - - type: Transform - pos: 14.5,18.5 - parent: 1668 - - uid: 2544 - components: - - type: Transform - pos: 15.5,18.5 - parent: 1668 - - uid: 2545 - components: - - type: Transform - pos: 15.5,19.5 - parent: 1668 - - uid: 3257 - components: - - type: Transform - pos: 16.5,18.5 - parent: 1668 - - uid: 3523 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 1668 - - uid: 3524 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1668 - - uid: 3525 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1668 - - uid: 3526 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1668 - - uid: 3527 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1668 - - uid: 3528 - components: - - type: Transform - pos: -4.5,4.5 - parent: 1668 - - uid: 3529 - components: - - type: Transform - pos: -5.5,4.5 - parent: 1668 - - uid: 3530 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1668 - - uid: 3531 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 1668 - - uid: 3532 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 1668 - - uid: 3533 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 1668 - - uid: 3534 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 1668 - - uid: 3535 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 1668 - - uid: 3536 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 1668 - - uid: 3537 - components: - - type: Transform - pos: -6.5,-2.5 - parent: 1668 - - uid: 3538 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 1668 - - uid: 3539 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 1668 - - uid: 3540 - components: - - type: Transform - pos: -6.5,0.5 - parent: 1668 - - uid: 3541 - components: - - type: Transform - pos: -6.5,1.5 - parent: 1668 - - uid: 3542 - components: - - type: Transform - pos: -6.5,2.5 - parent: 1668 - - uid: 3543 - components: - - type: Transform - pos: -6.5,3.5 - parent: 1668 - - uid: 3544 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 1668 - - uid: 3545 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 1668 - - uid: 3546 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 1668 - - uid: 3547 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 1668 - - uid: 3548 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 1668 - - uid: 3549 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 1668 - - uid: 3550 - components: - - type: Transform - pos: -13.5,-0.5 - parent: 1668 - - uid: 3551 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 1668 - - uid: 3552 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 1668 - - uid: 3553 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 1668 - - uid: 3554 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 1668 - - uid: 3555 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 1668 - - uid: 3556 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 1668 - - uid: 3557 - components: - - type: Transform - pos: -20.5,0.5 - parent: 1668 - - uid: 3558 - components: - - type: Transform - pos: -19.5,0.5 - parent: 1668 - - uid: 3559 - components: - - type: Transform - pos: -21.5,0.5 - parent: 1668 - - uid: 3560 - components: - - type: Transform - pos: -21.5,1.5 - parent: 1668 - - uid: 3561 - components: - - type: Transform - pos: -21.5,2.5 - parent: 1668 - - uid: 3562 - components: - - type: Transform - pos: -21.5,3.5 - parent: 1668 - - uid: 3563 - components: - - type: Transform - pos: -21.5,4.5 - parent: 1668 - - uid: 3564 - components: - - type: Transform - pos: -21.5,5.5 - parent: 1668 - - uid: 3565 - components: - - type: Transform - pos: -20.5,5.5 - parent: 1668 - - uid: 3566 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1668 - - uid: 3567 - components: - - type: Transform - pos: -18.5,5.5 - parent: 1668 - - uid: 3568 - components: - - type: Transform - pos: -17.5,5.5 - parent: 1668 - - uid: 3569 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1668 - - uid: 3570 - components: - - type: Transform - pos: -15.5,5.5 - parent: 1668 - - uid: 3571 - components: - - type: Transform - pos: -15.5,6.5 - parent: 1668 - - uid: 3574 - components: - - type: Transform - pos: -15.5,4.5 - parent: 1668 - - uid: 3950 - components: - - type: Transform - pos: -22.5,0.5 - parent: 1668 - - uid: 3951 - components: - - type: Transform - pos: -23.5,0.5 - parent: 1668 - - uid: 3952 - components: - - type: Transform - pos: -24.5,0.5 - parent: 1668 - - uid: 3953 - components: - - type: Transform - pos: -25.5,0.5 - parent: 1668 - - uid: 3954 - components: - - type: Transform - pos: -26.5,0.5 - parent: 1668 - - uid: 3955 - components: - - type: Transform - pos: -27.5,0.5 - parent: 1668 - - uid: 3956 - components: - - type: Transform - pos: -28.5,0.5 - parent: 1668 - - uid: 3957 - components: - - type: Transform - pos: -29.5,0.5 - parent: 1668 - - uid: 3958 - components: - - type: Transform - pos: -30.5,0.5 - parent: 1668 - - uid: 3959 - components: - - type: Transform - pos: -30.5,1.5 - parent: 1668 - - uid: 3960 - components: - - type: Transform - pos: -30.5,2.5 - parent: 1668 - - uid: 3961 - components: - - type: Transform - pos: -30.5,3.5 - parent: 1668 - - uid: 3962 - components: - - type: Transform - pos: -30.5,4.5 - parent: 1668 - - uid: 3963 - components: - - type: Transform - pos: -29.5,4.5 - parent: 1668 - - uid: 3964 - components: - - type: Transform - pos: -28.5,4.5 - parent: 1668 - - uid: 3965 - components: - - type: Transform - pos: -27.5,4.5 - parent: 1668 - - uid: 3966 - components: - - type: Transform - pos: -27.5,5.5 - parent: 1668 - - uid: 3967 - components: - - type: Transform - pos: -27.5,6.5 - parent: 1668 - - uid: 4359 - components: - - type: Transform - pos: 22.5,-16.5 - parent: 1668 - - uid: 4360 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 1668 - - uid: 4577 - components: - - type: Transform - pos: 24.5,-25.5 - parent: 1668 - - uid: 4580 - components: - - type: Transform - pos: 19.5,-25.5 - parent: 1668 - - uid: 4634 - components: - - type: Transform - pos: 27.5,-27.5 - parent: 1668 - - uid: 4667 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 1668 - - uid: 4668 - components: - - type: Transform - pos: 5.5,-27.5 - parent: 1668 - - uid: 4669 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 1668 - - uid: 4764 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 1668 - - uid: 4765 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 1668 - - uid: 4766 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 1668 - - uid: 4767 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 1668 - - uid: 4768 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 1668 - - uid: 4769 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 1668 - - uid: 4770 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1668 - - uid: 4771 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 1668 - - uid: 4772 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 1668 - - uid: 4773 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 1668 - - uid: 4774 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 1668 - - uid: 4775 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 1668 - - uid: 4776 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 1668 - - uid: 4777 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 1668 - - uid: 4778 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 1668 - - uid: 4779 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1668 - - uid: 4780 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1668 - - uid: 4781 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 1668 - - uid: 4782 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 1668 - - uid: 4783 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 1668 - - uid: 4784 - components: - - type: Transform - pos: 15.5,-25.5 - parent: 1668 - - uid: 4785 - components: - - type: Transform - pos: 14.5,-25.5 - parent: 1668 - - uid: 4786 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 1668 - - uid: 4787 - components: - - type: Transform - pos: 12.5,-25.5 - parent: 1668 - - uid: 4788 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 1668 - - uid: 4789 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 1668 - - uid: 4790 - components: - - type: Transform - pos: 12.5,-22.5 - parent: 1668 - - uid: 4791 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 1668 - - uid: 4792 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 1668 - - uid: 4793 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 1668 - - uid: 4794 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 1668 - - uid: 4795 - components: - - type: Transform - pos: 11.5,-18.5 - parent: 1668 - - uid: 4796 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 1668 - - uid: 4797 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 1668 - - uid: 4798 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 1668 - - uid: 4799 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 1668 - - uid: 4800 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 1668 - - uid: 4801 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 1668 - - uid: 4802 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 1668 - - uid: 4803 - components: - - type: Transform - pos: 3.5,-18.5 - parent: 1668 - - uid: 4804 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 1668 - - uid: 4805 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 1668 - - uid: 4806 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 1668 - - uid: 4808 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 1668 - - uid: 4809 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 1668 - - uid: 4810 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1668 - - uid: 4811 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1668 - - uid: 4812 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1668 - - uid: 4813 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1668 - - uid: 4814 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 1668 - - uid: 4856 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 1668 - - uid: 4972 - components: - - type: Transform - pos: 15.5,-21.5 - parent: 1668 - - uid: 4974 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 1668 - - uid: 4975 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 1668 - - uid: 5071 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 1668 - - uid: 5072 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 1668 - - uid: 5073 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 1668 - - uid: 5074 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 1668 - - uid: 5081 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 1668 - - uid: 5082 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 1668 - - uid: 5083 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 1668 - - uid: 5084 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 1668 - - uid: 5085 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 1668 - - uid: 5086 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 1668 - - uid: 5087 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 1668 - - uid: 5088 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 1668 - - uid: 5089 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 1668 - - uid: 5090 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 1668 - - uid: 5091 - components: - - type: Transform - pos: 31.5,-16.5 - parent: 1668 - - uid: 5092 - components: - - type: Transform - pos: 32.5,-16.5 - parent: 1668 - - uid: 5093 - components: - - type: Transform - pos: 32.5,-17.5 - parent: 1668 - - uid: 5094 - components: - - type: Transform - pos: 32.5,-18.5 - parent: 1668 - - uid: 5095 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 1668 - - uid: 5096 - components: - - type: Transform - pos: 32.5,-20.5 - parent: 1668 - - uid: 5097 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 1668 - - uid: 5098 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 1668 - - uid: 5099 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 1668 - - uid: 5100 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 1668 - - uid: 5101 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 1668 - - uid: 5185 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 1668 - - uid: 5186 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 1668 - - uid: 5187 - components: - - type: Transform - pos: 33.5,-25.5 - parent: 1668 - - uid: 5188 - components: - - type: Transform - pos: 34.5,-25.5 - parent: 1668 - - uid: 5189 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 1668 - - uid: 5190 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 1668 - - uid: 5191 - components: - - type: Transform - pos: 31.5,-23.5 - parent: 1668 - - uid: 5192 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 1668 - - uid: 5193 - components: - - type: Transform - pos: 31.5,-21.5 - parent: 1668 - - uid: 5194 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1668 - - uid: 5195 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 1668 - - uid: 5196 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 1668 - - uid: 5341 - components: - - type: Transform - pos: 27.5,-26.5 - parent: 1668 - - uid: 5342 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 1668 - - uid: 5343 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 1668 - - uid: 5370 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 1668 - - uid: 5393 - components: - - type: Transform - pos: 27.5,-25.5 - parent: 1668 - - uid: 5807 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 1668 - - uid: 5808 - components: - - type: Transform - pos: 1.5,-27.5 - parent: 1668 - - uid: 5809 - components: - - type: Transform - pos: 2.5,-27.5 - parent: 1668 - - uid: 5810 - components: - - type: Transform - pos: 3.5,-27.5 - parent: 1668 - - uid: 5811 - components: - - type: Transform - pos: 4.5,-27.5 - parent: 1668 - - uid: 5812 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 1668 - - uid: 5813 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 1668 - - uid: 6006 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 1668 - - uid: 6007 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 1668 - - uid: 6008 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 1668 - - uid: 6009 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 1668 - - uid: 6010 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 1668 - - uid: 6011 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 1668 - - uid: 6012 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 1668 - - uid: 6013 - components: - - type: Transform - pos: 10.5,-31.5 - parent: 1668 - - uid: 6014 - components: - - type: Transform - pos: 9.5,-31.5 - parent: 1668 - - uid: 6015 - components: - - type: Transform - pos: 8.5,-31.5 - parent: 1668 - - uid: 6016 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 1668 - - uid: 6017 - components: - - type: Transform - pos: 6.5,-31.5 - parent: 1668 - - uid: 6018 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 1668 - - uid: 6019 - components: - - type: Transform - pos: -6.5,-28.5 - parent: 1668 - - uid: 6020 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 1668 - - uid: 6021 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 1668 - - uid: 6022 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 1668 - - uid: 6023 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 1668 - - uid: 6026 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 1668 - - uid: 6027 - components: - - type: Transform - pos: -4.5,-27.5 - parent: 1668 - - uid: 6028 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 1668 - - uid: 6029 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 1668 - - uid: 6030 - components: - - type: Transform - pos: -6.5,-31.5 - parent: 1668 - - uid: 6031 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 1668 - - uid: 6032 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 1668 - - uid: 6033 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 1668 - - uid: 6034 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 1668 - - uid: 6035 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 1668 - - uid: 6036 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 1668 - - uid: 6037 - components: - - type: Transform - pos: -13.5,-31.5 - parent: 1668 - - uid: 6038 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 1668 - - uid: 6039 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 1668 - - uid: 6040 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 1668 - - uid: 6041 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 1668 - - uid: 6042 - components: - - type: Transform - pos: -14.5,-27.5 - parent: 1668 - - uid: 6043 - components: - - type: Transform - pos: -14.5,-26.5 - parent: 1668 - - uid: 6044 - components: - - type: Transform - pos: -14.5,-25.5 - parent: 1668 - - uid: 6045 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 1668 - - uid: 6046 - components: - - type: Transform - pos: -16.5,-25.5 - parent: 1668 - - uid: 6047 - components: - - type: Transform - pos: -17.5,-25.5 - parent: 1668 - - uid: 6048 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 1668 - - uid: 6049 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 1668 - - uid: 6050 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 1668 - - uid: 6051 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 1668 - - uid: 6052 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 1668 - - uid: 6053 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 1668 - - uid: 6054 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 1668 - - uid: 6166 - components: - - type: Transform - pos: -6.5,-32.5 - parent: 1668 - - uid: 6167 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 1668 - - uid: 6168 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 1668 - - uid: 6169 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 1668 - - uid: 6170 - components: - - type: Transform - pos: -2.5,-32.5 - parent: 1668 - - uid: 6171 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 1668 - - uid: 6172 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 1668 - - uid: 6173 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 1668 - - uid: 6174 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 1668 - - uid: 6175 - components: - - type: Transform - pos: 3.5,-32.5 - parent: 1668 - - uid: 6176 - components: - - type: Transform - pos: 2.5,-32.5 - parent: 1668 - - uid: 6177 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 1668 - - uid: 6178 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 1668 - - uid: 6179 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 1668 - - uid: 6253 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 1668 - - uid: 6254 - components: - - type: Transform - pos: -3.5,-34.5 - parent: 1668 - - uid: 6255 - components: - - type: Transform - pos: -3.5,-35.5 - parent: 1668 - - uid: 6256 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 1668 - - uid: 6257 - components: - - type: Transform - pos: -1.5,-35.5 - parent: 1668 - - uid: 6258 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 1668 - - uid: 6259 - components: - - type: Transform - pos: 0.5,-35.5 - parent: 1668 - - uid: 6260 - components: - - type: Transform - pos: 1.5,-35.5 - parent: 1668 - - uid: 6261 - components: - - type: Transform - pos: 2.5,-35.5 - parent: 1668 - - uid: 6262 - components: - - type: Transform - pos: 2.5,-34.5 - parent: 1668 - - uid: 6263 - components: - - type: Transform - pos: 2.5,-33.5 - parent: 1668 - - uid: 6264 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 1668 - - uid: 6265 - components: - - type: Transform - pos: 0.5,-34.5 - parent: 1668 - - uid: 6266 - components: - - type: Transform - pos: -1.5,-34.5 - parent: 1668 - - uid: 6594 - components: - - type: Transform - pos: 27.5,-29.5 - parent: 1668 - - uid: 6631 - components: - - type: Transform - pos: 27.5,-28.5 - parent: 1668 - - uid: 6773 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 1668 - - uid: 6777 - components: - - type: Transform - pos: 27.5,-30.5 - parent: 1668 - - uid: 6786 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 1668 -- proto: CableMV - entities: - - uid: 1146 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 1668 - - uid: 1147 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 1668 - - uid: 1148 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 1668 - - uid: 1149 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 1668 - - uid: 1150 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 1668 - - uid: 1151 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 1668 - - uid: 1153 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 1668 - - uid: 1154 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 1668 - - uid: 1155 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 1668 - - uid: 1156 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 1668 - - uid: 1157 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 1668 - - uid: 1158 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 1668 - - uid: 1159 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 1668 - - uid: 1160 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 1668 - - uid: 1161 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 1668 - - uid: 1162 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 1668 - - uid: 1163 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 1668 - - uid: 1164 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 1668 - - uid: 1165 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 1668 - - uid: 1166 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 1668 - - uid: 1167 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 1668 - - uid: 1168 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 1668 - - uid: 1169 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 1668 - - uid: 1170 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 1668 - - uid: 1171 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 1668 - - uid: 1172 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 1668 - - uid: 1173 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 1668 - - uid: 1174 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 1668 - - uid: 1175 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 1668 - - uid: 1176 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1668 - - uid: 1182 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 1668 - - uid: 1321 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1668 - - uid: 1323 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 1668 - - uid: 1324 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 1668 - - uid: 1325 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 1668 - - uid: 1326 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 1668 - - uid: 1327 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1668 - - uid: 1328 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 1668 - - uid: 1329 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 1668 - - uid: 1330 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 1668 - - uid: 1331 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 1668 - - uid: 1332 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 1668 - - uid: 1333 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 1668 - - uid: 1334 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 1668 - - uid: 1335 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 1668 - - uid: 1336 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 1668 - - uid: 1337 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 1668 - - uid: 1338 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 1668 - - uid: 1339 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 1668 - - uid: 1340 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 1668 - - uid: 1483 - components: - - type: Transform - pos: 27.5,-31.5 - parent: 1668 - - uid: 1486 - components: - - type: Transform - pos: 28.5,-31.5 - parent: 1668 - - uid: 1487 - components: - - type: Transform - pos: 30.5,-31.5 - parent: 1668 - - uid: 1658 - components: - - type: Transform - pos: 31.5,-31.5 - parent: 1668 - - uid: 1805 - components: - - type: Transform - pos: -3.5,20.5 - parent: 1668 - - uid: 1806 - components: - - type: Transform - pos: -3.5,21.5 - parent: 1668 - - uid: 1807 - components: - - type: Transform - pos: -4.5,21.5 - parent: 1668 - - uid: 1808 - components: - - type: Transform - pos: -5.5,21.5 - parent: 1668 - - uid: 1809 - components: - - type: Transform - pos: -5.5,20.5 - parent: 1668 - - uid: 1810 - components: - - type: Transform - pos: -5.5,19.5 - parent: 1668 - - uid: 1811 - components: - - type: Transform - pos: -4.5,19.5 - parent: 1668 - - uid: 1812 - components: - - type: Transform - pos: -6.5,19.5 - parent: 1668 - - uid: 1813 - components: - - type: Transform - pos: -6.5,18.5 - parent: 1668 - - uid: 1814 - components: - - type: Transform - pos: -6.5,17.5 - parent: 1668 - - uid: 1815 - components: - - type: Transform - pos: -5.5,17.5 - parent: 1668 - - uid: 1816 - components: - - type: Transform - pos: -4.5,17.5 - parent: 1668 - - uid: 1817 - components: - - type: Transform - pos: -6.5,16.5 - parent: 1668 - - uid: 1818 - components: - - type: Transform - pos: -6.5,15.5 - parent: 1668 - - uid: 1819 - components: - - type: Transform - pos: -6.5,14.5 - parent: 1668 - - uid: 1820 - components: - - type: Transform - pos: -6.5,13.5 - parent: 1668 - - uid: 1821 - components: - - type: Transform - pos: -6.5,12.5 - parent: 1668 - - uid: 1822 - components: - - type: Transform - pos: -7.5,12.5 - parent: 1668 - - uid: 1823 - components: - - type: Transform - pos: -8.5,12.5 - parent: 1668 - - uid: 1824 - components: - - type: Transform - pos: -8.5,13.5 - parent: 1668 - - uid: 1825 - components: - - type: Transform - pos: -5.5,12.5 - parent: 1668 - - uid: 1826 - components: - - type: Transform - pos: -5.5,11.5 - parent: 1668 - - uid: 1827 - components: - - type: Transform - pos: -4.5,11.5 - parent: 1668 - - uid: 1828 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1668 - - uid: 1829 - components: - - type: Transform - pos: -8.5,19.5 - parent: 1668 - - uid: 1830 - components: - - type: Transform - pos: -9.5,19.5 - parent: 1668 - - uid: 1831 - components: - - type: Transform - pos: -10.5,19.5 - parent: 1668 - - uid: 1832 - components: - - type: Transform - pos: -10.5,18.5 - parent: 1668 - - uid: 1833 - components: - - type: Transform - pos: -10.5,17.5 - parent: 1668 - - uid: 1834 - components: - - type: Transform - pos: -11.5,17.5 - parent: 1668 - - uid: 1835 - components: - - type: Transform - pos: -12.5,17.5 - parent: 1668 - - uid: 1836 - components: - - type: Transform - pos: -13.5,17.5 - parent: 1668 - - uid: 1837 - components: - - type: Transform - pos: -14.5,17.5 - parent: 1668 - - uid: 1838 - components: - - type: Transform - pos: -14.5,18.5 - parent: 1668 - - uid: 1839 - components: - - type: Transform - pos: 2.5,20.5 - parent: 1668 - - uid: 1840 - components: - - type: Transform - pos: 1.5,20.5 - parent: 1668 - - uid: 1841 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1668 - - uid: 1842 - components: - - type: Transform - pos: -0.5,20.5 - parent: 1668 - - uid: 1843 - components: - - type: Transform - pos: -0.5,19.5 - parent: 1668 - - uid: 1844 - components: - - type: Transform - pos: -0.5,18.5 - parent: 1668 - - uid: 1845 - components: - - type: Transform - pos: -0.5,17.5 - parent: 1668 - - uid: 1846 - components: - - type: Transform - pos: -0.5,16.5 - parent: 1668 - - uid: 1847 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1668 - - uid: 1848 - components: - - type: Transform - pos: -0.5,14.5 - parent: 1668 - - uid: 1849 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1668 - - uid: 1850 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1668 - - uid: 1851 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1668 - - uid: 1852 - components: - - type: Transform - pos: -0.5,10.5 - parent: 1668 - - uid: 1853 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1668 - - uid: 1854 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1668 - - uid: 1855 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1668 - - uid: 1856 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1668 - - uid: 1857 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1668 - - uid: 1858 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1668 - - uid: 1859 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1668 - - uid: 1860 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1668 - - uid: 1862 - components: - - type: Transform - pos: -2.5,3.5 - parent: 1668 - - uid: 1863 - components: - - type: Transform - pos: -2.5,2.5 - parent: 1668 - - uid: 2014 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1668 - - uid: 2015 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1668 - - uid: 2016 - components: - - type: Transform - pos: 1.5,17.5 - parent: 1668 - - uid: 2017 - components: - - type: Transform - pos: -0.5,21.5 - parent: 1668 - - uid: 2018 - components: - - type: Transform - pos: -1.5,21.5 - parent: 1668 - - uid: 2019 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1668 - - uid: 2056 - components: - - type: Transform - pos: -3.5,5.5 - parent: 1668 - - uid: 2947 - components: - - type: Transform - pos: 15.5,19.5 - parent: 1668 - - uid: 2948 - components: - - type: Transform - pos: 15.5,18.5 - parent: 1668 - - uid: 2949 - components: - - type: Transform - pos: 14.5,18.5 - parent: 1668 - - uid: 2950 - components: - - type: Transform - pos: 14.5,17.5 - parent: 1668 - - uid: 2951 - components: - - type: Transform - pos: 14.5,16.5 - parent: 1668 - - uid: 2952 - components: - - type: Transform - pos: 14.5,15.5 - parent: 1668 - - uid: 2953 - components: - - type: Transform - pos: 14.5,14.5 - parent: 1668 - - uid: 2954 - components: - - type: Transform - pos: 14.5,13.5 - parent: 1668 - - uid: 2955 - components: - - type: Transform - pos: 15.5,13.5 - parent: 1668 - - uid: 2956 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1604 components: - type: Transform pos: 16.5,13.5 parent: 1668 - - uid: 2957 + - uid: 1605 components: - type: Transform - pos: 17.5,13.5 + pos: 10.5,13.5 parent: 1668 - - uid: 2958 +- proto: AirlockBrigLocked + entities: + - uid: 1094 components: - type: Transform - pos: 17.5,14.5 + pos: 20.5,25.5 parent: 1668 - - uid: 2959 - components: - - type: Transform - pos: 17.5,15.5 - parent: 1668 - - uid: 2960 - components: - - type: Transform - pos: 17.5,16.5 - parent: 1668 - - uid: 2961 - components: - - type: Transform - pos: 17.5,17.5 - parent: 1668 - - uid: 2962 - components: - - type: Transform - pos: 17.5,12.5 - parent: 1668 - - uid: 2963 - components: - - type: Transform - pos: 18.5,12.5 - parent: 1668 - - uid: 2964 - components: - - type: Transform - pos: 19.5,12.5 - parent: 1668 - - uid: 2965 - components: - - type: Transform - pos: 20.5,12.5 - parent: 1668 - - uid: 2966 - components: - - type: Transform - pos: 21.5,12.5 - parent: 1668 - - uid: 2967 - components: - - type: Transform - pos: 22.5,12.5 - parent: 1668 - - uid: 2968 - components: - - type: Transform - pos: 23.5,12.5 - parent: 1668 - - uid: 2969 - components: - - type: Transform - pos: 24.5,12.5 - parent: 1668 - - uid: 2970 - components: - - type: Transform - pos: 24.5,13.5 - parent: 1668 - - uid: 2971 - components: - - type: Transform - pos: 24.5,14.5 - parent: 1668 - - uid: 2972 - components: - - type: Transform - pos: 19.5,13.5 - parent: 1668 - - uid: 2973 - components: - - type: Transform - pos: 19.5,14.5 - parent: 1668 - - uid: 2974 - components: - - type: Transform - pos: 19.5,15.5 - parent: 1668 - - uid: 2975 - components: - - type: Transform - pos: 19.5,16.5 - parent: 1668 - - uid: 2976 + - uid: 1955 components: - type: Transform pos: 19.5,17.5 parent: 1668 - - uid: 2977 - components: - - type: Transform - pos: 19.5,18.5 - parent: 1668 - - uid: 2978 - components: - - type: Transform - pos: 19.5,19.5 - parent: 1668 - - uid: 2979 - components: - - type: Transform - pos: 19.5,20.5 - parent: 1668 - - uid: 2980 - components: - - type: Transform - pos: 19.5,21.5 - parent: 1668 - - uid: 2981 - components: - - type: Transform - pos: 20.5,21.5 - parent: 1668 - - uid: 2982 - components: - - type: Transform - pos: 21.5,21.5 - parent: 1668 - - uid: 2983 - components: - - type: Transform - pos: 25.5,12.5 - parent: 1668 - - uid: 2984 - components: - - type: Transform - pos: 26.5,12.5 - parent: 1668 - - uid: 2985 - components: - - type: Transform - pos: 27.5,12.5 - parent: 1668 - - uid: 2986 - components: - - type: Transform - pos: 28.5,12.5 - parent: 1668 - - uid: 2987 - components: - - type: Transform - pos: 29.5,12.5 - parent: 1668 - - uid: 2988 - components: - - type: Transform - pos: 30.5,12.5 - parent: 1668 - - uid: 2989 - components: - - type: Transform - pos: 31.5,12.5 - parent: 1668 - - uid: 2990 - components: - - type: Transform - pos: 32.5,12.5 - parent: 1668 - - uid: 2991 - components: - - type: Transform - pos: 33.5,12.5 - parent: 1668 - - uid: 2992 - components: - - type: Transform - pos: 34.5,12.5 - parent: 1668 - - uid: 2993 - components: - - type: Transform - pos: 34.5,13.5 - parent: 1668 - - uid: 2994 - components: - - type: Transform - pos: 34.5,14.5 - parent: 1668 - - uid: 2995 - components: - - type: Transform - pos: 34.5,15.5 - parent: 1668 - - uid: 2996 - components: - - type: Transform - pos: 34.5,16.5 - parent: 1668 - - uid: 2997 - components: - - type: Transform - pos: 34.5,17.5 - parent: 1668 - - uid: 2998 - components: - - type: Transform - pos: 34.5,18.5 - parent: 1668 - - uid: 2999 - components: - - type: Transform - pos: 34.5,19.5 - parent: 1668 - - uid: 3000 - components: - - type: Transform - pos: 35.5,19.5 - parent: 1668 - - uid: 3001 - components: - - type: Transform - pos: 13.5,15.5 - parent: 1668 - - uid: 3002 - components: - - type: Transform - pos: 12.5,15.5 - parent: 1668 - - uid: 3003 - components: - - type: Transform - pos: 11.5,15.5 - parent: 1668 - - uid: 3004 - components: - - type: Transform - pos: 10.5,15.5 - parent: 1668 - - uid: 3005 - components: - - type: Transform - pos: 9.5,15.5 - parent: 1668 - - uid: 3006 - components: - - type: Transform - pos: 8.5,15.5 - parent: 1668 - - uid: 3007 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1668 - - uid: 3008 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1668 - - uid: 3009 - components: - - type: Transform - pos: 11.5,16.5 - parent: 1668 - - uid: 3010 - components: - - type: Transform - pos: 11.5,17.5 - parent: 1668 - - uid: 3011 - components: - - type: Transform - pos: 11.5,18.5 - parent: 1668 - - uid: 3012 - components: - - type: Transform - pos: 11.5,19.5 - parent: 1668 - - uid: 3013 - components: - - type: Transform - pos: 11.5,20.5 - parent: 1668 - - uid: 3014 - components: - - type: Transform - pos: 11.5,21.5 - parent: 1668 - - uid: 3015 - components: - - type: Transform - pos: 10.5,21.5 - parent: 1668 - - uid: 3016 - components: - - type: Transform - pos: 9.5,21.5 - parent: 1668 - - uid: 3017 - components: - - type: Transform - pos: 9.5,20.5 - parent: 1668 - - uid: 3018 - components: - - type: Transform - pos: 9.5,19.5 - parent: 1668 - - uid: 3019 - components: - - type: Transform - pos: 9.5,18.5 - parent: 1668 - - uid: 3020 - components: - - type: Transform - pos: 8.5,18.5 - parent: 1668 - - uid: 3021 - components: - - type: Transform - pos: 7.5,18.5 - parent: 1668 - - uid: 3022 - components: - - type: Transform - pos: 9.5,22.5 - parent: 1668 - - uid: 3023 - components: - - type: Transform - pos: 9.5,23.5 - parent: 1668 - - uid: 3024 - components: - - type: Transform - pos: 9.5,24.5 - parent: 1668 - - uid: 3025 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1668 - - uid: 3026 - components: - - type: Transform - pos: 9.5,26.5 - parent: 1668 - - uid: 3027 - components: - - type: Transform - pos: 9.5,27.5 - parent: 1668 - - uid: 3028 - components: - - type: Transform - pos: 9.5,28.5 - parent: 1668 - - uid: 3029 - components: - - type: Transform - pos: 9.5,29.5 - parent: 1668 - - uid: 3030 - components: - - type: Transform - pos: 9.5,30.5 - parent: 1668 - - uid: 3031 - components: - - type: Transform - pos: 8.5,30.5 - parent: 1668 - - uid: 3032 - components: - - type: Transform - pos: 7.5,30.5 - parent: 1668 - - uid: 3575 - components: - - type: Transform - pos: -15.5,6.5 - parent: 1668 - - uid: 3576 - components: - - type: Transform - pos: -15.5,5.5 - parent: 1668 - - uid: 3578 - components: - - type: Transform - pos: -14.5,6.5 - parent: 1668 - - uid: 3579 - components: - - type: Transform - pos: -13.5,6.5 - parent: 1668 - - uid: 3580 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1668 - - uid: 3581 - components: - - type: Transform - pos: -17.5,5.5 - parent: 1668 - - uid: 3582 - components: - - type: Transform - pos: -18.5,5.5 - parent: 1668 - - uid: 3583 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1668 - - uid: 3584 - components: - - type: Transform - pos: -20.5,5.5 - parent: 1668 - - uid: 3585 - components: - - type: Transform - pos: -21.5,5.5 - parent: 1668 - - uid: 3586 - components: - - type: Transform - pos: -22.5,5.5 - parent: 1668 - - uid: 3587 - components: - - type: Transform - pos: -22.5,6.5 - parent: 1668 - - uid: 3588 - components: - - type: Transform - pos: -22.5,7.5 - parent: 1668 - - uid: 3589 - components: - - type: Transform - pos: -22.5,8.5 - parent: 1668 - - uid: 3590 - components: - - type: Transform - pos: -22.5,9.5 - parent: 1668 - - uid: 3591 - components: - - type: Transform - pos: -22.5,10.5 - parent: 1668 - - uid: 3592 - components: - - type: Transform - pos: -22.5,11.5 - parent: 1668 - - uid: 3593 - components: - - type: Transform - pos: -22.5,12.5 - parent: 1668 - - uid: 3594 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1668 - - uid: 3595 - components: - - type: Transform - pos: -21.5,11.5 - parent: 1668 - - uid: 3596 - components: - - type: Transform - pos: -20.5,11.5 - parent: 1668 - - uid: 3597 - components: - - type: Transform - pos: -19.5,11.5 - parent: 1668 - - uid: 3598 - components: - - type: Transform - pos: -18.5,11.5 - parent: 1668 - - uid: 3599 - components: - - type: Transform - pos: -17.5,11.5 - parent: 1668 - - uid: 3600 - components: - - type: Transform - pos: -16.5,11.5 - parent: 1668 - - uid: 3601 - components: - - type: Transform - pos: -16.5,12.5 - parent: 1668 - - uid: 3602 - components: - - type: Transform - pos: -16.5,13.5 - parent: 1668 - - uid: 4105 - components: - - type: Transform - pos: -31.5,2.5 - parent: 1668 - - uid: 4106 - components: - - type: Transform - pos: -31.5,3.5 - parent: 1668 - - uid: 4107 - components: - - type: Transform - pos: -31.5,4.5 - parent: 1668 - - uid: 4108 - components: - - type: Transform - pos: -31.5,5.5 - parent: 1668 - - uid: 4109 - components: - - type: Transform - pos: -31.5,6.5 - parent: 1668 - - uid: 4110 - components: - - type: Transform - pos: -30.5,4.5 - parent: 1668 - - uid: 4111 - components: - - type: Transform - pos: -29.5,4.5 - parent: 1668 - - uid: 4112 - components: - - type: Transform - pos: -28.5,4.5 - parent: 1668 - - uid: 4113 - components: - - type: Transform - pos: -27.5,4.5 - parent: 1668 - - uid: 4114 - components: - - type: Transform - pos: -27.5,5.5 - parent: 1668 - - uid: 4115 - components: - - type: Transform - pos: -27.5,6.5 - parent: 1668 - - uid: 4116 - components: - - type: Transform - pos: -31.5,7.5 - parent: 1668 - - uid: 4117 - components: - - type: Transform - pos: -31.5,1.5 - parent: 1668 - - uid: 4118 - components: - - type: Transform - pos: -31.5,0.5 - parent: 1668 - - uid: 4119 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 1668 - - uid: 4120 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 1668 - - uid: 4121 - components: - - type: Transform - pos: -29.5,-0.5 - parent: 1668 - - uid: 4122 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 1668 - - uid: 4123 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 1668 - - uid: 4124 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 1668 - - uid: 4125 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 1668 - - uid: 4126 - components: - - type: Transform - pos: -24.5,-0.5 - parent: 1668 - - uid: 4127 - components: - - type: Transform - pos: -23.5,-0.5 - parent: 1668 - - uid: 4128 - components: - - type: Transform - pos: -22.5,-0.5 - parent: 1668 - - uid: 4129 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 1668 - - uid: 4130 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 1668 - - uid: 4131 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1668 - - uid: 4132 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 1668 - - uid: 4133 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 1668 - - uid: 4134 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 1668 - - uid: 4135 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 1668 - - uid: 4136 - components: - - type: Transform - pos: -17.5,0.5 - parent: 1668 - - uid: 4137 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1668 - - uid: 4138 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 1668 - - uid: 4139 - components: - - type: Transform - pos: -15.5,-0.5 - parent: 1668 - - uid: 4140 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 1668 - - uid: 4141 - components: - - type: Transform - pos: -13.5,-0.5 - parent: 1668 - - uid: 4142 - components: - - type: Transform - pos: -13.5,-1.5 - parent: 1668 - - uid: 4143 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 1668 - - uid: 4257 - components: - - type: Transform - pos: 29.5,-31.5 - parent: 1668 - - uid: 4807 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 1668 - - uid: 4817 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 1668 - - uid: 4818 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 1668 - - uid: 4819 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 1668 - - uid: 4820 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 1668 - - uid: 4821 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 1668 - - uid: 4822 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1668 - - uid: 4823 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1668 - - uid: 4824 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 1668 - - uid: 4825 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 1668 - - uid: 4826 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 1668 - - uid: 4827 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 1668 - - uid: 4828 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 1668 - - uid: 4829 - components: - - type: Transform - pos: 12.5,-22.5 - parent: 1668 - - uid: 4830 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 1668 - - uid: 4831 - components: - - type: Transform - pos: 10.5,-22.5 - parent: 1668 - - uid: 4832 - components: - - type: Transform - pos: 9.5,-22.5 - parent: 1668 - - uid: 4833 - components: - - type: Transform - pos: 8.5,-22.5 - parent: 1668 - - uid: 4834 - components: - - type: Transform - pos: 8.5,-23.5 - parent: 1668 - - uid: 4835 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 1668 - - uid: 4836 - components: - - type: Transform - pos: 7.5,-24.5 - parent: 1668 - - uid: 4837 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 1668 - - uid: 4838 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 1668 - - uid: 4839 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 1668 - - uid: 4840 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 1668 - - uid: 4841 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 1668 - - uid: 4842 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 1668 - - uid: 4843 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 1668 - - uid: 4844 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 1668 - - uid: 4845 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 1668 - - uid: 4846 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 1668 - - uid: 4847 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 1668 - - uid: 4848 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 1668 - - uid: 4849 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 1668 - - uid: 4850 - components: - - type: Transform - pos: 3.5,-18.5 - parent: 1668 - - uid: 4851 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 1668 - - uid: 4852 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 1668 - - uid: 4853 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 1668 - - uid: 4854 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 1668 - - uid: 4855 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 1668 - - uid: 4857 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 1668 - - uid: 4858 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 1668 - - uid: 4859 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1668 - - uid: 4860 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1668 - - uid: 4861 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1668 - - uid: 4862 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1668 - - uid: 4863 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - uid: 4864 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - uid: 4865 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1668 - - uid: 4866 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 1668 - - uid: 4867 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1668 - - uid: 4868 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 1668 - - uid: 4869 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 1668 - - uid: 4870 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 1668 - - uid: 4871 - components: - - type: Transform - pos: -0.5,-21.5 - parent: 1668 - - uid: 4872 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 1668 - - uid: 4873 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 1668 - - uid: 4874 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 1668 - - uid: 4875 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 1668 - - uid: 4876 - components: - - type: Transform - pos: -1.5,-25.5 - parent: 1668 - - uid: 4877 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 1668 - - uid: 4878 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 1668 - - uid: 4879 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 1668 - - uid: 4880 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 1668 - - uid: 4881 - components: - - type: Transform - pos: -5.5,-25.5 - parent: 1668 - - uid: 4882 - components: - - type: Transform - pos: -6.5,-25.5 - parent: 1668 - - uid: 4883 - components: - - type: Transform - pos: -7.5,-25.5 - parent: 1668 - - uid: 4884 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 1668 - - uid: 4885 - components: - - type: Transform - pos: -9.5,-25.5 - parent: 1668 - - uid: 4886 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 1668 - - uid: 4887 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 1668 - - uid: 4888 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 1668 - - uid: 4889 - components: - - type: Transform - pos: -2.5,-18.5 - parent: 1668 - - uid: 4890 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 1668 - - uid: 4891 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 1668 - - uid: 4892 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 1668 - - uid: 4893 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 1668 - - uid: 4894 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 1668 - - uid: 4895 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 1668 - - uid: 4896 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 1668 - - uid: 4897 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 1668 - - uid: 4966 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 1668 - - uid: 4967 - components: - - type: Transform - pos: -1.5,-17.5 - parent: 1668 - - uid: 4976 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 1668 - - uid: 4978 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 1668 - - uid: 4979 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 1668 - - uid: 4980 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 1668 - - uid: 4981 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 1668 - - uid: 4982 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 1668 - - uid: 4983 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 1668 - - uid: 4984 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 1668 - - uid: 4985 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 1668 - - uid: 4986 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 1668 - - uid: 4987 - components: - - type: Transform - pos: 21.5,-10.5 - parent: 1668 - - uid: 4988 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 1668 - - uid: 4989 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 1668 - - uid: 4990 - components: - - type: Transform - pos: 19.5,-19.5 - parent: 1668 - - uid: 4991 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 1668 - - uid: 5277 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 1668 - - uid: 5278 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 1668 - - uid: 5279 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 1668 - - uid: 5280 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 1668 - - uid: 5281 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 1668 - - uid: 5282 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 1668 - - uid: 5283 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 1668 - - uid: 5284 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 1668 - - uid: 5285 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 1668 - - uid: 5286 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1668 - - uid: 5287 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 1668 - - uid: 5288 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 1668 - - uid: 5289 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 1668 - - uid: 5290 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 1668 - - uid: 5291 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 1668 - - uid: 5292 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 1668 - - uid: 5293 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 1668 - - uid: 5294 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 1668 - - uid: 5295 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 1668 - - uid: 5296 - components: - - type: Transform - pos: 31.5,-10.5 - parent: 1668 - - uid: 5297 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 1668 - - uid: 5298 - components: - - type: Transform - pos: 33.5,-10.5 - parent: 1668 - - uid: 5299 - components: - - type: Transform - pos: 34.5,-10.5 - parent: 1668 - - uid: 5300 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1668 - - uid: 5301 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 1668 - - uid: 5302 - components: - - type: Transform - pos: 23.5,-23.5 - parent: 1668 - - uid: 5303 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 1668 - - uid: 5304 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 1668 - - uid: 5305 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 1668 - - uid: 5306 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 1668 - - uid: 5307 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 1668 - - uid: 5424 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 1668 - - uid: 5425 - components: - - type: Transform - pos: 16.5,-27.5 - parent: 1668 - - uid: 5426 - components: - - type: Transform - pos: 16.5,-26.5 - parent: 1668 - - uid: 5427 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 1668 - - uid: 5428 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 1668 - - uid: 5429 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 1668 - - uid: 5430 - components: - - type: Transform - pos: 19.5,-25.5 - parent: 1668 - - uid: 5431 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 1668 - - uid: 5432 - components: - - type: Transform - pos: 21.5,-25.5 - parent: 1668 - - uid: 5433 - components: - - type: Transform - pos: 22.5,-25.5 - parent: 1668 - - uid: 5434 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 1668 - - uid: 5435 - components: - - type: Transform - pos: 24.5,-25.5 - parent: 1668 - - uid: 5436 - components: - - type: Transform - pos: 24.5,-24.5 - parent: 1668 - - uid: 5437 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 1668 - - uid: 5438 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 1668 - - uid: 5439 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 1668 - - uid: 5440 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 1668 - - uid: 5832 - components: - - type: Transform - pos: 10.5,6.5 - parent: 1668 - - uid: 5833 - components: - - type: Transform - pos: 9.5,6.5 - parent: 1668 - - uid: 5834 - components: - - type: Transform - pos: 9.5,5.5 - parent: 1668 - - uid: 5835 - components: - - type: Transform - pos: 9.5,4.5 - parent: 1668 - - uid: 5836 - components: - - type: Transform - pos: 9.5,3.5 - parent: 1668 - - uid: 5837 - components: - - type: Transform - pos: 9.5,2.5 - parent: 1668 - - uid: 5838 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1668 - - uid: 5839 - components: - - type: Transform - pos: 10.5,1.5 - parent: 1668 - - uid: 5840 - components: - - type: Transform - pos: 10.5,0.5 - parent: 1668 - - uid: 5841 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 1668 - - uid: 5842 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 1668 - - uid: 5843 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 1668 - - uid: 5844 - components: - - type: Transform - pos: 11.5,6.5 - parent: 1668 - - uid: 5845 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1668 - - uid: 5846 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1668 - - uid: 5854 - components: - - type: Transform - pos: 20.5,6.5 - parent: 1668 - - uid: 5855 - components: - - type: Transform - pos: 20.5,5.5 - parent: 1668 - - uid: 5856 - components: - - type: Transform - pos: 19.5,5.5 - parent: 1668 - - uid: 5857 - components: - - type: Transform - pos: 18.5,5.5 - parent: 1668 - - uid: 5858 - components: - - type: Transform - pos: 17.5,5.5 - parent: 1668 - - uid: 5859 - components: - - type: Transform - pos: 16.5,5.5 - parent: 1668 - - uid: 5860 - components: - - type: Transform - pos: 15.5,5.5 - parent: 1668 - - uid: 5861 - components: - - type: Transform - pos: 14.5,5.5 - parent: 1668 - - uid: 5862 - components: - - type: Transform - pos: 13.5,5.5 - parent: 1668 - - uid: 5863 - components: - - type: Transform - pos: 12.5,5.5 - parent: 1668 - - uid: 5865 - components: - - type: Transform - pos: 20.5,4.5 - parent: 1668 - - uid: 5866 - components: - - type: Transform - pos: 20.5,3.5 - parent: 1668 - - uid: 5867 - components: - - type: Transform - pos: 20.5,2.5 - parent: 1668 - - uid: 5868 - components: - - type: Transform - pos: 20.5,1.5 - parent: 1668 - - uid: 5869 - components: - - type: Transform - pos: 20.5,0.5 - parent: 1668 - - uid: 5870 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 1668 - - uid: 5871 - components: - - type: Transform - pos: 20.5,-1.5 - parent: 1668 - - uid: 5872 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 1668 - - uid: 5873 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 1668 - - uid: 5874 - components: - - type: Transform - pos: 20.5,-4.5 - parent: 1668 - - uid: 5875 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 1668 - - uid: 6055 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 1668 - - uid: 6056 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 1668 - - uid: 6057 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 1668 - - uid: 6058 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 1668 - - uid: 6059 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 1668 - - uid: 6060 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 1668 - - uid: 6061 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 1668 - - uid: 6062 - components: - - type: Transform - pos: -18.5,-25.5 - parent: 1668 - - uid: 6063 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 1668 - - uid: 6064 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 1668 - - uid: 6065 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 1668 - - uid: 6066 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 1668 - - uid: 6104 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 1668 - - uid: 6105 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 1668 - - uid: 6106 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 1668 - - uid: 6107 - components: - - type: Transform - pos: -14.5,-26.5 - parent: 1668 - - uid: 6108 - components: - - type: Transform - pos: -14.5,-27.5 - parent: 1668 - - uid: 6109 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 1668 - - uid: 6110 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 1668 - - uid: 6111 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 1668 - - uid: 6182 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 1668 - - uid: 6183 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 1668 - - uid: 6184 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1668 - - uid: 6185 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 1668 - - uid: 6186 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 1668 - - uid: 6187 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 1668 - - uid: 6188 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 1668 - - uid: 6189 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 1668 - - uid: 6190 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1668 - - uid: 6191 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 1668 - - uid: 6192 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 1668 - - uid: 6193 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 1668 - - uid: 6194 - components: - - type: Transform - pos: 11.5,-30.5 - parent: 1668 - - uid: 6195 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 1668 - - uid: 6196 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 1668 - - uid: 6197 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 1668 - - uid: 6198 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 1668 - - uid: 6199 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 1668 - - uid: 6200 - components: - - type: Transform - pos: 14.5,-27.5 - parent: 1668 - - uid: 6201 - components: - - type: Transform - pos: 15.5,-27.5 - parent: 1668 - - uid: 6336 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 1668 - - uid: 6337 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 1668 - - uid: 6338 - components: - - type: Transform - pos: -6.5,-31.5 - parent: 1668 - - uid: 6339 - components: - - type: Transform - pos: -5.5,-31.5 - parent: 1668 - - uid: 6340 - components: - - type: Transform - pos: -4.5,-31.5 - parent: 1668 - - uid: 6341 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 1668 - - uid: 6342 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 1668 - - uid: 6343 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 1668 - - uid: 6344 - components: - - type: Transform - pos: -3.5,-34.5 - parent: 1668 - - uid: 6345 - components: - - type: Transform - pos: -2.5,-34.5 - parent: 1668 - - uid: 6398 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 1668 - - uid: 6399 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 1668 - - uid: 6400 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 1668 - - uid: 6401 - components: - - type: Transform - pos: -1.5,-37.5 - parent: 1668 - - uid: 6402 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 1668 - - uid: 6403 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 1668 - - uid: 6404 - components: - - type: Transform - pos: -1.5,-39.5 - parent: 1668 - - uid: 6405 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 1668 - - uid: 6406 - components: - - type: Transform - pos: -1.5,-41.5 - parent: 1668 - - uid: 6407 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 1668 - - uid: 6408 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 1668 - - uid: 6515 - components: - - type: Transform - pos: 5.5,30.5 - parent: 1668 - - uid: 6516 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1668 - - uid: 6517 - components: - - type: Transform - pos: 7.5,29.5 - parent: 1668 - - uid: 6518 - components: - - type: Transform - pos: 7.5,28.5 - parent: 1668 - - uid: 6519 - components: - - type: Transform - pos: 7.5,27.5 - parent: 1668 - - uid: 6520 - components: - - type: Transform - pos: 7.5,26.5 - parent: 1668 - - uid: 6547 - components: - - type: Transform - pos: 8.5,26.5 - parent: 1668 - - uid: 6548 - components: - - type: Transform - pos: 10.5,26.5 - parent: 1668 - - uid: 6549 - components: - - type: Transform - pos: 11.5,26.5 - parent: 1668 - - uid: 6550 - components: - - type: Transform - pos: 11.5,27.5 - parent: 1668 - - uid: 6551 - components: - - type: Transform - pos: 11.5,28.5 - parent: 1668 - - uid: 6552 - components: - - type: Transform - pos: 11.5,29.5 - parent: 1668 - - uid: 6553 - components: - - type: Transform - pos: 11.5,30.5 - parent: 1668 - - uid: 6554 - components: - - type: Transform - pos: 12.5,30.5 - parent: 1668 - - uid: 6577 - components: - - type: Transform - pos: 13.5,30.5 - parent: 1668 - - uid: 6849 - components: - - type: Transform - pos: 32.5,-31.5 - parent: 1668 - - uid: 6850 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 1668 - - uid: 6851 - components: - - type: Transform - pos: 32.5,-29.5 - parent: 1668 - - uid: 6852 - components: - - type: Transform - pos: 32.5,-28.5 - parent: 1668 - - uid: 6853 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 1668 -- proto: CableTerminal +- proto: AirlockCargoGlassLocked entities: - - uid: 2191 + - uid: 2611 components: - type: Transform - pos: 27.5,-29.5 + pos: -1.5,22.5 parent: 1668 - - uid: 5075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 1668 - - uid: 5076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 1668 - - uid: 5077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 1668 -- proto: CargoPallet +- proto: AirlockCargoLocked entities: - - uid: 6924 - components: - - type: Transform - pos: -6.5,26.5 - parent: 1668 - - uid: 6925 - components: - - type: Transform - pos: -7.5,26.5 - parent: 1668 - - uid: 6926 - components: - - type: Transform - pos: -8.5,26.5 - parent: 1668 - - uid: 6927 - components: - - type: Transform - pos: -6.5,28.5 - parent: 1668 - - uid: 6928 - components: - - type: Transform - pos: -7.5,28.5 - parent: 1668 - - uid: 6929 - components: - - type: Transform - pos: -8.5,28.5 - parent: 1668 -- proto: Carpet - entities: - - uid: 2714 - components: - - type: Transform - pos: 6.5,18.5 - parent: 1668 - - uid: 2715 - components: - - type: Transform - pos: 6.5,19.5 - parent: 1668 - - uid: 2716 - components: - - type: Transform - pos: 5.5,18.5 - parent: 1668 - - uid: 2717 - components: - - type: Transform - pos: 5.5,19.5 - parent: 1668 -- proto: CarpetGreen - entities: - - uid: 148 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1668 - - uid: 149 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 1668 - - uid: 204 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 1668 - - uid: 205 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 1668 - - uid: 207 - components: - - type: Transform - pos: -0.5,0.5 - parent: 1668 - - uid: 1428 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1668 - - uid: 3728 - components: - - type: Transform - pos: -16.5,10.5 - parent: 1668 - - uid: 3729 - components: - - type: Transform - pos: -16.5,11.5 - parent: 1668 - - uid: 3730 - components: - - type: Transform - pos: -15.5,10.5 - parent: 1668 - uid: 3731 components: - type: Transform - pos: -15.5,11.5 + pos: 7.5,23.5 parent: 1668 - - uid: 3732 + - uid: 3911 components: - type: Transform - pos: -19.5,11.5 + pos: 8.5,23.5 parent: 1668 - - uid: 3733 - components: - - type: Transform - pos: -19.5,10.5 - parent: 1668 - - uid: 3735 - components: - - type: Transform - pos: -18.5,11.5 - parent: 1668 - - uid: 3736 - components: - - type: Transform - pos: -18.5,10.5 - parent: 1668 - - uid: 3738 - components: - - type: Transform - pos: -19.5,5.5 - parent: 1668 - - uid: 3739 - components: - - type: Transform - pos: -19.5,6.5 - parent: 1668 - - uid: 3740 - components: - - type: Transform - pos: -18.5,5.5 - parent: 1668 - - uid: 3741 - components: - - type: Transform - pos: -18.5,6.5 - parent: 1668 -- proto: Catwalk +- proto: AirlockCentralCommand entities: - - uid: 347 + - uid: 1128 components: - type: Transform - pos: 34.5,2.5 + pos: 30.5,-7.5 parent: 1668 - - uid: 1065 + - uid: 1134 components: + - type: MetaData + name: The After Hours Bar - type: Transform - pos: 34.5,-3.5 + pos: 30.5,-14.5 parent: 1668 - - uid: 1066 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 1668 - - uid: 1067 - components: - - type: Transform - pos: 34.5,4.5 - parent: 1668 - - uid: 1179 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 1668 - - uid: 2032 - components: - - type: Transform - pos: -0.5,18.5 - parent: 1668 - - uid: 2033 - components: - - type: Transform - pos: -0.5,19.5 - parent: 1668 - - uid: 2034 - components: - - type: Transform - pos: -0.5,20.5 - parent: 1668 - - uid: 2035 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1668 - - uid: 2036 - components: - - type: Transform - pos: 1.5,20.5 - parent: 1668 - - uid: 2037 - components: - - type: Transform - pos: -1.5,20.5 - parent: 1668 - - uid: 2038 - components: - - type: Transform - pos: -2.5,20.5 - parent: 1668 - - uid: 2046 - components: - - type: Transform - pos: -0.5,23.5 - parent: 1668 - - uid: 2047 - components: - - type: Transform - pos: -1.5,23.5 - parent: 1668 - - uid: 2048 - components: - - type: Transform - pos: -2.5,23.5 - parent: 1668 - - uid: 2049 - components: - - type: Transform - pos: -2.5,24.5 - parent: 1668 - - uid: 3239 - components: - - type: Transform - pos: -2.5,26.5 - parent: 1668 - - uid: 3240 - components: - - type: Transform - pos: -2.5,27.5 - parent: 1668 - - uid: 3241 - components: - - type: Transform - pos: -2.5,28.5 - parent: 1668 - - uid: 3242 - components: - - type: Transform - pos: -2.5,29.5 - parent: 1668 - - uid: 3243 - components: - - type: Transform - pos: -2.5,30.5 - parent: 1668 - - uid: 3244 - components: - - type: Transform - pos: -2.5,31.5 - parent: 1668 - - uid: 3246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,32.5 - parent: 1668 - - uid: 3251 - components: - - type: Transform - pos: 14.5,17.5 - parent: 1668 - - uid: 3252 - components: - - type: Transform - pos: 14.5,18.5 - parent: 1668 - - uid: 3253 - components: - - type: Transform - pos: 15.5,18.5 - parent: 1668 - - uid: 3709 - components: - - type: Transform - pos: -16.5,4.5 - parent: 1668 - - uid: 3710 - components: - - type: Transform - pos: -15.5,4.5 - parent: 1668 - - uid: 3711 - components: - - type: Transform - pos: -14.5,4.5 - parent: 1668 - - uid: 3712 - components: - - type: Transform - pos: -14.5,6.5 - parent: 1668 - - uid: 4146 - components: - - type: Transform - pos: -33.5,0.5 - parent: 1668 - - uid: 4147 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 1668 - - uid: 4181 - components: - - type: Transform - pos: -27.5,3.5 - parent: 1668 - - uid: 4182 - components: - - type: Transform - pos: -27.5,4.5 - parent: 1668 - - uid: 4183 - components: - - type: Transform - pos: -27.5,5.5 - parent: 1668 - - uid: 4568 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 1668 - - uid: 4569 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 1668 - - uid: 4570 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 1668 - - uid: 4571 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 1668 - - uid: 4572 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 1668 - - uid: 4573 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 1668 - - uid: 4574 - components: - - type: Transform - pos: -10.5,-11.5 - parent: 1668 - - uid: 5197 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 1668 - - uid: 5198 - components: - - type: Transform - pos: 31.5,-25.5 - parent: 1668 - - uid: 5199 - components: - - type: Transform - pos: 33.5,-25.5 - parent: 1668 - - uid: 5200 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 1668 - - uid: 5201 - components: - - type: Transform - pos: 30.5,-25.5 - parent: 1668 - - uid: 5202 - components: - - type: Transform - pos: 34.5,-25.5 - parent: 1668 - - uid: 5203 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 1668 - - uid: 5204 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 1668 - - uid: 5205 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 1668 - - uid: 5206 - components: - - type: Transform - pos: 31.5,-23.5 - parent: 1668 - - uid: 5207 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 1668 - - uid: 5208 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 1668 - - uid: 5209 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 1668 - - uid: 5210 - components: - - type: Transform - pos: 31.5,-21.5 - parent: 1668 - - uid: 5211 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 1668 - - uid: 5212 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 1668 - - uid: 5213 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 1668 - - uid: 5323 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 1668 - - uid: 5324 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 1668 - - uid: 5325 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 1668 - - uid: 5326 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 1668 - - uid: 6142 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 1668 - - uid: 6143 - components: - - type: Transform - pos: -22.5,-24.5 - parent: 1668 - - uid: 6440 - components: - - type: Transform - pos: -1.5,-45.5 - parent: 1668 - - uid: 6441 - components: - - type: Transform - pos: 0.5,-45.5 - parent: 1668 -- proto: CentcomIDCard - entities: - - uid: 3721 - components: - - type: Transform - pos: -16.521366,8.567018 - parent: 1668 -- proto: CentcomPDA - entities: - - uid: 6617 - components: - - type: Transform - pos: -20.428675,10.647655 - parent: 1668 -- proto: Chair - entities: - - uid: 517 - components: - - type: Transform - pos: 22.5,5.5 - parent: 1668 - - uid: 518 - components: - - type: Transform - pos: 23.5,5.5 - parent: 1668 - - uid: 519 - components: - - type: Transform - pos: 24.5,5.5 - parent: 1668 - - uid: 520 - components: - - type: Transform - pos: 28.5,5.5 - parent: 1668 - - uid: 521 - components: - - type: Transform - pos: 29.5,5.5 - parent: 1668 - - uid: 522 - components: - - type: Transform - pos: 30.5,5.5 - parent: 1668 - - uid: 532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-6.5 - parent: 1668 - - uid: 533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 1668 - - uid: 534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-6.5 - parent: 1668 - - uid: 535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 1668 - - uid: 536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - - uid: 537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 1668 - - uid: 538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 1668 - - uid: 539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 1668 - - uid: 540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,1.5 - parent: 1668 - - uid: 541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,3.5 - parent: 1668 - - uid: 634 - components: - - type: Transform - pos: 10.5,1.5 - parent: 1668 - - uid: 635 - components: - - type: Transform - pos: 11.5,1.5 - parent: 1668 - - uid: 636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1668 - - uid: 637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 1668 - - uid: 638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 1668 - - uid: 639 - components: - - type: Transform - pos: 13.5,1.5 - parent: 1668 - - uid: 1644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1668 - - uid: 1645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1668 - - uid: 2168 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1668 - - uid: 2169 + - uid: 1271 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,15.5 + pos: 18.5,-25.5 parent: 1668 - - uid: 2170 + - uid: 1272 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,14.5 + pos: 18.5,-26.5 parent: 1668 - - uid: 2171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 1668 - - uid: 2172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 1668 - - uid: 2173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 1668 - - uid: 2174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 1668 - - uid: 2175 + - uid: 1273 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,9.5 + pos: 18.5,-27.5 parent: 1668 - - uid: 2176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 1668 - - uid: 2415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 1668 - - uid: 2416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,16.5 - parent: 1668 - - uid: 2417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 1668 - - uid: 2418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 1668 - - uid: 2419 - components: - - type: Transform - pos: 26.5,21.5 - parent: 1668 - - uid: 2420 - components: - - type: Transform - pos: 30.5,21.5 - parent: 1668 - - uid: 2427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 1668 - - uid: 2428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 1668 - - uid: 2429 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 1668 - - uid: 2430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 1668 - - uid: 2431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1668 - - uid: 2432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,16.5 - parent: 1668 - - uid: 2433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 1668 - - uid: 2434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 1668 - - uid: 2441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 1668 - - uid: 2472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 1668 - - uid: 2473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 1668 - - uid: 2474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,13.5 - parent: 1668 - - uid: 2475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1668 - - uid: 2476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 1668 - - uid: 2477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,13.5 - parent: 1668 - - uid: 2478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 1668 - - uid: 2479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 1668 - - uid: 2480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 1668 - - uid: 2481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 1668 - - uid: 2482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1668 - - uid: 2483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,12.5 - parent: 1668 - - uid: 2484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 1668 - - uid: 2485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 1668 - - uid: 2827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 1668 - - uid: 2828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1668 - - uid: 3172 - components: - - type: Transform - pos: 8.5,15.5 - parent: 1668 - - uid: 3173 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1668 - - uid: 3174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 1668 - - uid: 3175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,10.5 - parent: 1668 - - uid: 3176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 1668 - - uid: 3177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 1668 - - uid: 3827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,23.5 - parent: 1668 - - uid: 4152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1668 - - uid: 4153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1668 - - uid: 4154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1668 - - uid: 4155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 1668 - - uid: 4156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 1668 - - uid: 4157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 1668 - - uid: 4160 - components: - - type: Transform - pos: -31.5,6.5 - parent: 1668 - - uid: 4161 - components: - - type: Transform - pos: -32.5,6.5 - parent: 1668 - - uid: 4162 - components: - - type: Transform - pos: -33.5,6.5 - parent: 1668 - - uid: 4163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,3.5 - parent: 1668 - - uid: 4164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,3.5 - parent: 1668 - - uid: 4165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 1668 - - uid: 5246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-24.5 - parent: 1668 - - uid: 5249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-24.5 - parent: 1668 - - uid: 5308 - components: - - type: Transform - pos: 27.5,-21.5 - parent: 1668 - - uid: 5309 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 1668 - - uid: 5384 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 1668 - - uid: 5385 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 1668 - - uid: 6148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 1668 - - uid: 6149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1668 - - uid: 6152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 1668 - - uid: 6153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 1668 - - uid: 6240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 1668 - - uid: 6243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-27.5 - parent: 1668 - - uid: 6391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1668 - - uid: 6392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 1668 - - uid: 6393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 1668 - - uid: 6394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1668 - - uid: 6567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 1668 - - uid: 6568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-33.5 - parent: 1668 - - uid: 6569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-33.5 - parent: 1668 - - uid: 6570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-33.5 - parent: 1668 - - uid: 6579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 1668 - - uid: 6580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 1668 - - uid: 6585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 1668 - - uid: 6586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-30.5 - parent: 1668 - - uid: 6587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-33.5 - parent: 1668 - - uid: 6588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 1668 - - uid: 6589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 1668 - - uid: 6590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 1668 - - uid: 6748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 1668 -- proto: ChairOfficeDark +- proto: AirlockCentralCommandGlass entities: - - uid: 506 + - uid: 152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-8.5 + pos: 0.5,-7.5 parent: 1668 - - uid: 507 + - uid: 153 components: - type: Transform - pos: 27.5,-10.5 + pos: -1.5,-7.5 parent: 1668 - - uid: 604 + - uid: 164 components: - type: Transform - pos: 12.5,3.5 + pos: -0.5,-7.5 parent: 1668 - - uid: 605 + - uid: 310 components: - type: Transform - pos: 14.5,3.5 + pos: 7.5,-1.5 parent: 1668 - - uid: 817 + - uid: 311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 + pos: 18.5,-0.5 parent: 1668 - - uid: 818 + - uid: 312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 + pos: 18.5,-1.5 parent: 1668 - - uid: 1401 + - uid: 313 components: - type: Transform - pos: -1.5,-1.5 + pos: 7.5,-0.5 parent: 1668 - - uid: 1402 + - uid: 316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 + pos: 7.5,0.5 parent: 1668 - - uid: 1403 + - uid: 317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + pos: 18.5,0.5 parent: 1668 - - uid: 1404 + - uid: 587 components: - type: Transform - pos: 0.5,-1.5 + pos: -8.5,-1.5 parent: 1668 - - uid: 1405 + - uid: 588 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 + pos: -8.5,-0.5 parent: 1668 - - uid: 1646 + - uid: 589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 + pos: -8.5,0.5 parent: 1668 - - uid: 1647 + - uid: 590 components: - type: Transform - pos: -8.5,9.5 - parent: 1668 - - uid: 1648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 1668 - - uid: 1649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1668 - - uid: 2744 - components: - - type: Transform - pos: 9.5,17.5 - parent: 1668 - - uid: 3621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,4.5 - parent: 1668 - - uid: 3622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,5.5 - parent: 1668 - - uid: 3623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1668 - - uid: 3880 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 1668 - - uid: 3881 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 1668 - - uid: 3882 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 1668 - - uid: 3884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 1668 - - uid: 3886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-8.5 - parent: 1668 - - uid: 3887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-8.5 - parent: 1668 - - uid: 3888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 1668 - - uid: 5243 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 1668 - - uid: 5336 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 1668 - - uid: 5337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 1668 - - uid: 6939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1668 - - uid: 6940 - components: - - type: Transform - pos: -10.5,30.5 - parent: 1668 - - uid: 6941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,25.5 - parent: 1668 -- proto: ChairWood - entities: - - uid: 4617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 1668 -- proto: ChemDispenser - entities: - - uid: 824 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 1668 -- proto: ChemistryHotplate - entities: - - uid: 254 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 1668 -- proto: ChemMaster - entities: - - uid: 825 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 1668 - - uid: 4425 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 1668 -- proto: ChessBoard - entities: - - uid: 3762 - components: - - type: Transform - pos: -23.529772,4.584259 - parent: 1668 -- proto: CigarGold - entities: - - uid: 2465 - components: - - type: Transform - pos: 30.393238,23.676378 - parent: 1668 - - uid: 2466 - components: - - type: Transform - pos: 30.502613,23.598253 - parent: 1668 - - uid: 3746 - components: - - type: Transform - pos: -23.553053,10.781973 - parent: 1668 - - uid: 3747 - components: - - type: Transform - pos: -23.443678,10.672598 - parent: 1668 - - uid: 3877 - components: - - type: Transform - pos: -26.36634,-3.4881558 - parent: 1668 - - uid: 3878 - components: - - type: Transform - pos: -26.30384,-3.5194058 - parent: 1668 -- proto: CloningPod - entities: - - uid: 722 - components: - - type: Transform - pos: 11.5,-13.5 - parent: 1668 - - type: Construction - containers: - - machine_parts - - machine_board -- proto: ClosetChefFilled - entities: - - uid: 4579 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 1668 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1071 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 1668 - - uid: 1072 - components: - - type: Transform - pos: 34.5,5.5 - parent: 1668 - - uid: 2044 - components: - - type: Transform - pos: -3.5,24.5 - parent: 1668 - - uid: 4148 - components: - - type: Transform - pos: -33.5,1.5 - parent: 1668 - - uid: 4149 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 1668 - - uid: 4159 - components: - - type: Transform - pos: -30.5,6.5 - parent: 1668 - - uid: 5352 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 1668 - - uid: 6147 - components: - - type: Transform - pos: -22.5,-22.5 - parent: 1668 - - uid: 6252 - components: - - type: Transform - pos: -14.5,-16.5 - parent: 1668 -- proto: ClosetFireFilled - entities: - - uid: 1073 - components: - - type: Transform - pos: 34.5,1.5 - parent: 1668 - - uid: 1074 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 1668 - - uid: 4158 - components: - - type: Transform - pos: -29.5,6.5 - parent: 1668 - - uid: 5356 - components: - - type: Transform - pos: 19.5,-26.5 - parent: 1668 - - uid: 6146 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 1668 -- proto: ClosetL3JanitorFilled - entities: - - uid: 6229 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 1668 -- proto: ClosetLegalFilled - entities: - - uid: 2490 - components: - - type: Transform - pos: 19.5,23.5 - parent: 1668 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 2442 - components: - - type: Transform - pos: 21.5,-26.5 - parent: 1668 - - uid: 5331 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 1668 - - uid: 5332 - components: - - type: Transform - pos: 34.5,-18.5 - parent: 1668 -- proto: ClosetSteelBase - entities: - - uid: 2491 - components: - - type: Transform - pos: 20.5,23.5 - parent: 1668 -- proto: ClosetToolFilled - entities: - - uid: 3254 - components: - - type: Transform - pos: 14.5,19.5 - parent: 1668 -- proto: ClothingBackpackDuffelCargo - entities: - - uid: 6932 - components: - - type: Transform - pos: -5.4863143,25.64425 - parent: 1668 -- proto: ClothingBackpackERTSecurity - entities: - - uid: 2901 - components: - - type: Transform - pos: 16.642612,32.410297 - parent: 1668 - - uid: 2902 - components: - - type: Transform - pos: 16.439487,32.566547 - parent: 1668 - - uid: 2903 - components: - - type: Transform - pos: 2.6113625,32.457172 - parent: 1668 - - uid: 2904 - components: - - type: Transform - pos: 2.4551125,32.613422 - parent: 1668 -- proto: ClothingBackpackSatchelHolding - entities: - - uid: 3737 - components: - - type: Transform - pos: -26.540686,12.537982 - parent: 1668 -- proto: ClothingBeltChiefEngineerFilled - entities: - - uid: 6956 - components: - - type: Transform - pos: 20.568373,-22.468605 - parent: 1668 -- proto: ClothingBeltSecurityFilled - entities: - - uid: 1460 - components: - - type: Transform - pos: -6.4730563,-12.590733 - parent: 1668 - - uid: 3151 - components: - - type: Transform - pos: 9.512553,25.678463 - parent: 1668 - - uid: 3152 - components: - - type: Transform - pos: 9.637553,25.537838 - parent: 1668 -- proto: ClothingBeltSheathFilled - entities: - - uid: 3725 - components: - - type: Transform - pos: -15.72449,12.605259 - parent: 1668 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 2241 - components: - - type: Transform - pos: -9.339353,8.480244 - parent: 1668 - - uid: 3909 - components: - - type: Transform - pos: -13.494019,-9.4266615 - parent: 1668 - - uid: 5345 - components: - - type: Transform - pos: 25.530863,-26.462372 - parent: 1668 -- proto: ClothingEyesGlassesChemical - entities: - - uid: 6846 - components: - - type: Transform - pos: 3.5108106,-10.103214 - parent: 1668 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 2204 - components: - - type: Transform - pos: 16.59961,30.616188 - parent: 1668 - - uid: 2205 - components: - - type: Transform - pos: 16.490234,30.741188 - parent: 1668 - - uid: 4173 - components: - - type: Transform - pos: 2.5571308,30.616188 - parent: 1668 - - uid: 4388 - components: - - type: Transform - pos: 2.4477558,30.694313 - parent: 1668 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 2449 - components: - - type: Transform - pos: -15.8832245,12.471813 - parent: 1668 - - uid: 6947 - components: - - type: Transform - pos: -27.440563,-8.922831 - parent: 1668 - - uid: 6948 - components: - - type: Transform - pos: -27.440563,-8.922831 - parent: 1668 - - uid: 6949 - components: - - type: Transform - pos: -27.440563,-8.922831 - parent: 1668 -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 5371 - components: - - type: Transform - pos: 26.529047,-22.34483 - parent: 1668 -- proto: ClothingHandsGlovesColorBlue - entities: - - uid: 6950 - components: - - type: Transform - pos: -26.706188,-9.407206 - parent: 1668 - - uid: 6951 - components: - - type: Transform - pos: -26.706188,-9.407206 - parent: 1668 - - uid: 6952 - components: - - type: Transform - pos: -26.706188,-9.407206 - parent: 1668 -- proto: ClothingHandsGlovesCombat - entities: - - uid: 255 - components: - - type: Transform - pos: 2.4165058,30.959938 - parent: 1668 - - uid: 297 - components: - - type: Transform - pos: 2.6508808,30.850563 - parent: 1668 - - uid: 823 - components: - - type: Transform - pos: 16.41518,30.975563 - parent: 1668 - - uid: 833 - components: - - type: Transform - pos: 16.57143,30.913063 - parent: 1668 - - uid: 3724 - components: - - type: Transform - pos: -16.552616,8.708888 - parent: 1668 -- proto: ClothingHeadHatWelding - entities: - - uid: 2197 - components: - - type: Transform - pos: -1.4187617,24.501104 - parent: 1668 - - uid: 3700 - components: - - type: Transform - pos: -16.435745,6.5478344 - parent: 1668 - - uid: 5372 - components: - - type: Transform - pos: 27.357172,-22.34483 - parent: 1668 - - uid: 5373 - components: - - type: Transform - pos: 27.544672,-22.46983 - parent: 1668 -- proto: ClothingHeadsetAltCentCom - entities: - - uid: 1435 - components: - - type: Transform - pos: 0.47396702,1.5393463 - parent: 1668 - - uid: 3823 - components: - - type: Transform - pos: 2.6429226,32.7473 - parent: 1668 - - uid: 3824 - components: - - type: Transform - pos: 2.7522976,32.637924 - parent: 1668 - - uid: 3825 - components: - - type: Transform - pos: 16.661858,32.6848 - parent: 1668 - - uid: 3826 - components: - - type: Transform - pos: 16.771233,32.575424 - parent: 1668 -- proto: ClothingMaskGas - entities: - - uid: 2224 - components: - - type: Transform - pos: -11.500146,17.576977 - parent: 1668 -- proto: ClothingMaskGasAtmos - entities: - - uid: 5346 - components: - - type: Transform - pos: 21.493792,-17.470217 - parent: 1668 -- proto: ClothingMaskGasDeathSquad - entities: - - uid: 299 - components: - - type: Transform - pos: 16.360958,32.006813 - parent: 1668 - - uid: 821 - components: - - type: Transform - pos: 2.59024,31.975563 - parent: 1668 - - uid: 822 - components: - - type: Transform - pos: 2.34024,32.022438 - parent: 1668 - - uid: 1434 - components: - - type: Transform - pos: 16.595333,31.897438 - parent: 1668 -- proto: ClothingNeckBronzeheart - entities: - - uid: 4377 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 1668 -- proto: ClothingNeckCloakNanotrasen - entities: - - uid: 2452 - components: - - type: Transform - pos: -27.456188,-9.313456 - parent: 1668 - - uid: 2737 - components: - - type: Transform - pos: -27.456188,-9.313456 - parent: 1668 - - uid: 4266 - components: - - type: Transform - pos: -27.456188,-9.313456 - parent: 1668 - - uid: 4615 - components: - - type: Transform - pos: -27.456188,-9.313456 - parent: 1668 -- proto: ClothingNeckGoldmedal - entities: - - uid: 4378 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 1668 -- proto: ClothingNeckLawyerbadge - entities: - - uid: 4379 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 1668 - - uid: 6936 - components: - - type: Transform - pos: 19.539907,21.362776 - parent: 1668 -- proto: ClothingOuterArmorCaptainCarapace - entities: - - uid: 3771 - components: - - type: Transform - pos: -12.455681,6.5291095 - parent: 1668 -- proto: ClothingOuterHardsuitDeathsquad - entities: - - uid: 2897 - components: - - type: Transform - pos: 3.403695,32.551796 - parent: 1668 - - uid: 2898 - components: - - type: Transform - pos: 3.653695,32.69242 - parent: 1668 - - uid: 2899 - components: - - type: Transform - pos: 15.372445,32.53617 - parent: 1668 - - 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=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null - - uid: 2900 - components: - - type: Transform - pos: 15.653695,32.676796 - parent: 1668 - - 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=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingShoesBootsLaceup - entities: - - uid: 3722 - components: - - type: Transform - pos: -16.568241,9.145143 - parent: 1668 - - uid: 6953 - components: - - type: Transform - pos: -27.518688,-8.610331 - parent: 1668 - - uid: 6954 - components: - - type: Transform - pos: -27.518688,-8.610331 - parent: 1668 - - uid: 6955 - components: - - type: Transform - pos: -27.518688,-8.610331 - parent: 1668 -- proto: ClothingShoesBootsMagAdv - entities: - - uid: 2909 - components: - - type: Transform - pos: 3.4296377,30.58716 - parent: 1668 - - uid: 2910 - components: - - type: Transform - pos: 3.6171377,30.446535 - parent: 1668 - - uid: 2911 - components: - - type: Transform - pos: 15.407025,30.634035 - parent: 1668 - - uid: 2912 - components: - - type: Transform - pos: 15.6414,30.415285 - parent: 1668 -- proto: ClothingShoesLeather - entities: - - uid: 3775 - components: - - type: Transform - pos: -10.574664,4.498021 - parent: 1668 -- proto: ClothingUniformJumpsuitDeathSquad - entities: - - uid: 2206 - components: - - type: Transform - pos: 15.35466,32.444313 - parent: 1668 - - uid: 2722 - components: - - type: Transform - pos: 3.637115,32.584938 - parent: 1668 - - uid: 4398 - components: - - type: Transform - pos: 3.40274,32.428688 - parent: 1668 - - uid: 4723 - components: - - type: Transform - pos: 15.651535,32.600563 - parent: 1668 -- proto: ClothingUniformJumpsuitNanotrasen - entities: - - uid: 2446 - components: - - type: Transform - pos: -27.362438,-9.485331 - parent: 1668 - - uid: 2451 - components: - - type: Transform - pos: -27.362438,-9.485331 - parent: 1668 - - uid: 2453 - components: - - type: Transform - pos: -27.362438,-9.485331 - parent: 1668 - - uid: 2728 - components: - - type: Transform - pos: -27.362438,-9.485331 - parent: 1668 -- proto: ComfyChair - entities: - - uid: 502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1668 - - uid: 2194 - components: - - type: Transform - pos: -0.5,24.5 - parent: 1668 - - uid: 2421 - components: - - type: Transform - pos: 28.5,21.5 - parent: 1668 - - uid: 2447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - - uid: 2450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1668 - - uid: 2492 - components: - - type: Transform - pos: 20.5,21.5 - parent: 1668 - - uid: 2493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 1668 - - uid: 2494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,19.5 - parent: 1668 - - uid: 3171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 1668 - - uid: 3611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,11.5 - parent: 1668 - - uid: 3612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,11.5 - parent: 1668 - - uid: 3613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 1668 - - uid: 3614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,11.5 - parent: 1668 - - uid: 3615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,11.5 - parent: 1668 - - uid: 3616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1668 - - uid: 3617 - components: - - type: Transform - pos: -24.5,5.5 - parent: 1668 - - uid: 3618 - components: - - type: Transform - pos: -23.5,5.5 - parent: 1668 - - uid: 3619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 1668 - - uid: 3620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 1668 - - uid: 3718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,12.5 - parent: 1668 - - uid: 3879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-6.5 - parent: 1668 - - uid: 4189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,13.5 - parent: 1668 - - uid: 4437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1668 - - uid: 4441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 1668 - - uid: 4442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1668 - - uid: 4443 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1668 - - uid: 4444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1668 - - uid: 4445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1668 - - uid: 4446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 1668 - - uid: 4447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1668 - - uid: 4448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1668 - - uid: 4449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1668 - - uid: 4450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1668 - - uid: 4451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 1668 - - uid: 4453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1668 - - uid: 4458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1668 - - uid: 4470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 1668 - - uid: 4472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 1668 - - uid: 5422 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 1668 - - uid: 6614 - components: - - type: Transform - pos: 18.5,15.5 - parent: 1668 - - uid: 6616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 1668 -- proto: ComputerAlert - entities: - - uid: 655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 1668 - - uid: 4973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 1668 - - uid: 5338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 1668 -- proto: computerBodyScanner - entities: - - uid: 611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1668 -- proto: ComputerCargoBounty - entities: - - uid: 6923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 1668 -- proto: ComputerCargoOrders - entities: - - uid: 1624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,11.5 - parent: 1668 - - uid: 1650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 1668 - - uid: 1653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,14.5 - parent: 1668 -- proto: ComputerCargoShuttle - entities: - - uid: 1625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,12.5 - parent: 1668 - - uid: 1651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,15.5 - parent: 1668 - - uid: 1652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,14.5 - parent: 1668 - - uid: 3818 - components: - - type: Transform - pos: -13.5,17.5 - parent: 1668 -- proto: ComputerCloningConsole - entities: - - uid: 575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 722: - - CloningPodSender: CloningPodReceiver - 723: - - MedicalScannerSender: MedicalScannerReceiver -- proto: ComputerComms - entities: - - uid: 652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 1668 - - uid: 3447 - components: - - type: Transform - pos: -19.5,12.5 - parent: 1668 - - uid: 3629 - components: - - type: Transform - pos: -18.5,6.5 - parent: 1668 - - uid: 3630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 1668 - - uid: 3837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-7.5 - parent: 1668 -- proto: ComputerCrewMonitoring - entities: - - uid: 593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 1668 - - uid: 608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 1668 - - uid: 656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 1668 -- proto: ComputerCriminalRecords - entities: - - uid: 498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 + pos: 0.5,6.5 parent: 1668 - uid: 591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 + pos: -0.5,6.5 parent: 1668 - - uid: 653 + - uid: 592 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1668 + - uid: 4310 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 1668 + - uid: 4311 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1668 + - uid: 4312 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 1668 + - uid: 4625 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 1668 + - uid: 4626 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 1668 + - uid: 4627 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 1668 + - uid: 4628 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 1668 + - uid: 8595 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-2.5 + pos: -3.5,-14.5 parent: 1668 - - uid: 813 + - uid: 8596 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-13.5 + pos: -3.5,-13.5 parent: 1668 - - uid: 2426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 1668 - - uid: 3258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 1668 -- proto: ComputerId - entities: - - uid: 589 + - uid: 8597 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,3.5 + pos: -3.5,-12.5 parent: 1668 - - uid: 651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1668 - - uid: 3448 - components: - - type: Transform - pos: -18.5,12.5 - parent: 1668 - - uid: 3907 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 1668 -- proto: ComputerMedicalRecords +- proto: AirlockCentralCommandGlassLocked entities: - - uid: 657 + - uid: 2899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 + pos: -21.5,8.5 parent: 1668 -- proto: ComputerPalletConsole + - uid: 2900 + components: + - type: Transform + pos: -16.5,8.5 + parent: 1668 + - uid: 4614 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 1668 + - uid: 4624 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 1668 + - uid: 7283 + components: + - type: Transform + pos: -43.5,2.5 + parent: 1668 + - uid: 7284 + components: + - type: Transform + pos: -49.5,2.5 + parent: 1668 + - uid: 7285 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 1668 + - uid: 7331 + components: + - type: Transform + pos: -32.5,8.5 + parent: 1668 +- proto: AirlockCentralCommandLocked entities: - - uid: 6930 + - uid: 2663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,27.5 + pos: -16.5,3.5 parent: 1668 -- proto: ComputerPowerMonitoring - entities: - - uid: 3256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 1668 - - uid: 3573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 1668 - - uid: 4971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 1668 -- proto: ComputerShuttleCargo - entities: - - uid: 3719 - components: - - type: Transform - pos: -12.5,17.5 - parent: 1668 -- proto: ComputerStationRecords - entities: - - uid: 3720 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1668 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 1668 - - uid: 654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 1668 - - uid: 814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-13.5 - parent: 1668 - - uid: 2250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 1668 - - uid: 2745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 1668 -- proto: ComputerTelevision - entities: - - uid: 3715 + - uid: 2828 components: - type: Transform pos: -14.5,12.5 parent: 1668 -- proto: ConveyorBelt + - uid: 2829 + components: + - type: MetaData + name: Admiralty Office + - type: Transform + pos: -20.5,2.5 + parent: 1668 + - uid: 3368 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 1668 + - uid: 7183 + components: + - type: MetaData + name: Head Administration Office + - type: Transform + pos: -33.5,2.5 + parent: 1668 +- proto: AirlockChemistryGlassLocked entities: - - uid: 1576 + - uid: 786 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1668 +- proto: AirlockChemistryLocked + entities: + - uid: 190 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1668 +- proto: AirlockCommandGlassLocked + entities: + - uid: 6753 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 1668 + - uid: 6754 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 1668 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 3028 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1668 + - uid: 3303 + components: + - type: Transform + pos: -5.5,23.5 + parent: 1668 + - uid: 3357 + components: + - type: Transform + pos: -11.5,23.5 + parent: 1668 +- proto: AirlockEngineeringLocked + entities: + - uid: 3029 + components: + - type: Transform + pos: 19.5,27.5 + parent: 1668 + - uid: 4165 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1668 + - uid: 8797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-11.5 + parent: 1668 +- proto: AirlockExternal + entities: + - uid: 4615 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 1668 + - uid: 4616 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 1668 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 4090 + components: + - type: Transform + pos: -21.5,18.5 + parent: 1668 +- proto: AirlockExternalGlass + entities: + - uid: 3660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 1668 + - uid: 3661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,33.5 + parent: 1668 + - uid: 7171 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 1668 + - uid: 7172 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 1668 + - uid: 7173 + components: + - type: Transform + pos: -52.5,0.5 + parent: 1668 + - uid: 7486 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 1668 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 1668 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 1668 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 1668 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,1.5 + parent: 1668 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 1668 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 1668 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 1668 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 1668 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 1668 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,2.5 + parent: 1668 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,3.5 + parent: 1668 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,4.5 + parent: 1668 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,5.5 + parent: 1668 + - uid: 5531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-24.5 + parent: 1668 + - uid: 5532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-24.5 + parent: 1668 + - uid: 5533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-24.5 + parent: 1668 + - uid: 5539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-24.5 + parent: 1668 + - uid: 5611 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 1668 + - uid: 5612 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 1668 + - uid: 5613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-24.5 + parent: 1668 + - uid: 5614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-24.5 + parent: 1668 + - uid: 7436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-24.5 + parent: 1668 + - uid: 7441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-24.5 + parent: 1668 + - uid: 7442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-24.5 + parent: 1668 + - uid: 7443 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 1668 + - uid: 7444 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 1668 + - uid: 7445 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 1668 +- proto: AirlockFreezer + entities: + - uid: 2798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,14.5 + parent: 1668 +- proto: AirlockFreezerLocked + entities: + - uid: 1068 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 1668 + - uid: 1073 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1668 +- proto: AirlockGlassShuttle + entities: + - uid: 3642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,36.5 + parent: 1668 + - uid: 3643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,36.5 + parent: 1668 + - uid: 7168 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,24.5 + pos: -55.5,-1.5 parent: 1668 - - uid: 1577 + - uid: 7169 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,24.5 + pos: -55.5,-0.5 parent: 1668 - - uid: 1578 + - uid: 7170 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,24.5 + pos: -55.5,0.5 parent: 1668 - - uid: 1579 + - uid: 7485 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,24.5 + pos: -42.5,-26.5 parent: 1668 - - uid: 1580 +- proto: AirlockHatch + entities: + - uid: 2351 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 1668 + - uid: 2352 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 1668 + - uid: 4292 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 1668 + - uid: 4304 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1668 + - uid: 4305 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 1668 + - uid: 4306 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1668 + - uid: 4629 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 1668 + - uid: 4630 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 1668 +- proto: AirlockHydroGlassLocked + entities: + - uid: 968 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1668 +- proto: AirlockJanitorLocked + entities: + - uid: 4158 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1668 +- proto: AirlockLawyerLocked + entities: + - uid: 1950 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1668 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 552 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1668 + - uid: 553 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1668 +- proto: AirlockMedicalLocked + entities: + - uid: 191 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,24.5 + pos: 18.5,-5.5 parent: 1668 +- proto: AirlockScienceGlassLocked + entities: + - uid: 9130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-28.5 + parent: 1668 +- proto: AirlockSecurityGlass + entities: + - uid: 4613 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 1668 + - uid: 4621 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 1668 + - uid: 4622 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 1668 + - uid: 4623 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 1668 +- proto: AirlockSecurityGlassLocked + entities: - uid: 1581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,24.5 + rot: 1.5707963267948966 rad + pos: 8.5,10.5 parent: 1668 - uid: 1582 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,28.5 + pos: 18.5,10.5 parent: 1668 - - uid: 1583 +- proto: AirlockSecurityLocked + entities: + - uid: 556 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1668 + - uid: 598 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 1668 + - uid: 784 + components: + - type: Transform + pos: 13.5,17.5 + parent: 1668 + - uid: 3243 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1668 +- proto: AirlockShuttle + entities: + - uid: 4617 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,28.5 + pos: 21.5,-48.5 parent: 1668 - - uid: 1584 + - uid: 4618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-48.5 + parent: 1668 +- proto: AmmoniaCanister + entities: + - uid: 4116 + components: + - type: Transform + pos: -23.5,29.5 + parent: 1668 +- proto: AmmoTechFab + entities: + - uid: 2161 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1668 +- proto: APCBasic + entities: + - uid: 2865 + components: + - type: Transform + pos: -19.5,14.5 + parent: 1668 + - uid: 2943 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1668 +- proto: APCHyperCapacity + entities: + - uid: 215 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,28.5 + pos: 18.5,3.5 parent: 1668 - - uid: 1585 + - uid: 338 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1668 + - uid: 471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1668 + - uid: 743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 1668 + - uid: 873 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1668 + - uid: 874 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1668 + - uid: 1391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-24.5 + parent: 1668 + - uid: 1392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-24.5 + parent: 1668 + - uid: 1393 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1668 + - uid: 1394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 1668 + - uid: 1395 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,28.5 + pos: 31.5,-20.5 parent: 1668 - - uid: 1586 + - uid: 1637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 1668 + - uid: 3041 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1668 + - uid: 3080 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,28.5 + pos: 20.5,19.5 parent: 1668 - - uid: 1587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1668 - - uid: 5902 - components: - - type: Transform - pos: -19.5,-33.5 - parent: 1668 - - uid: 5903 - components: - - type: Transform - pos: -19.5,-32.5 - parent: 1668 - - uid: 5904 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 1668 -- proto: CrateArmoryLaser - entities: - - uid: 6533 - components: - - type: Transform - pos: -7.5,22.5 - parent: 1668 -- proto: CrateArmoryShotgun - entities: - - uid: 6532 - components: - - type: Transform - pos: -9.5,24.5 - parent: 1668 -- proto: CrateArmorySMG - entities: - - uid: 6531 - components: - - type: Transform - pos: -6.5,26.5 - parent: 1668 -- proto: CrateEmergencyRadiation - entities: - - uid: 5379 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 1668 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 792 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 1668 -- proto: CrateEngineeringCableBulk - entities: - - uid: 5328 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 1668 -- proto: CrateEngineeringCableLV - entities: - - uid: 5380 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 1668 -- proto: CrateEngineeringCableMV - entities: - - uid: 5381 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 1668 -- proto: CrateEngineeringShuttle - entities: - - uid: 2144 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 1668 -- proto: CrateFoodPizza - entities: - - uid: 6528 - components: - - type: Transform - pos: -8.5,22.5 - parent: 1668 -- proto: CrateFunPlushie - entities: - - uid: 6530 - components: - - type: Transform - pos: -8.5,28.5 - parent: 1668 -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 6527 - components: - - type: Transform - pos: -5.5,17.5 - parent: 1668 -- proto: CrateMedicalSurgery - entities: - - uid: 629 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 1668 -- proto: CrateMousetrapBoxes - entities: - - uid: 6529 - components: - - type: Transform - pos: -7.5,26.5 - parent: 1668 -- proto: CrateParticleDecelerators - entities: - - uid: 6995 - components: - - type: Transform - pos: -7.5,28.5 - parent: 1668 -- proto: CrowbarRed - entities: - - uid: 515 - components: - - type: Transform - pos: 20.552847,-10.547255 - parent: 1668 - - uid: 1451 - components: - - type: Transform - pos: 14.506881,6.5434804 - parent: 1668 - - uid: 2225 - components: - - type: Transform - pos: -11.468896,17.467602 - parent: 1668 - - uid: 2467 - components: - - type: Transform - pos: 22.533863,23.410753 - parent: 1668 - - uid: 2870 - components: - - type: Transform - pos: 4.561338,19.119057 - parent: 1668 - - uid: 3899 - components: - - type: Transform - pos: -12.531932,-6.3835163 - parent: 1668 - - uid: 5347 - components: - - type: Transform - pos: 21.478167,-17.501467 - parent: 1668 -- proto: CryogenicSleepUnit - entities: - - uid: 3154 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 1668 - - uid: 3633 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 1668 -- proto: CryoPod - entities: - - uid: 6642 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 1668 -- proto: DeathsquadPDA - entities: - - uid: 298 - components: - - type: Transform - pos: 2.579019,31.366188 - parent: 1668 - - uid: 579 - components: - - type: Transform - pos: 16.399555,31.459938 - parent: 1668 - - uid: 820 - components: - - type: Transform - pos: 16.587055,31.366188 - parent: 1668 - - uid: 834 - components: - - type: Transform - pos: 2.407144,31.491188 - parent: 1668 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 2914 - components: - - type: Transform - pos: 10.5,2.5 - parent: 1668 - - uid: 3123 - components: - - type: Transform - pos: 19.5,6.5 - parent: 1668 - - uid: 3133 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 1668 - - uid: 3139 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 1668 - - uid: 6644 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 1668 -- proto: DeployableBarrier - entities: - uid: 3144 components: - type: Transform - pos: 6.5,29.5 + rot: 3.141592653589793 rad + pos: 28.5,9.5 parent: 1668 - - uid: 3145 - components: - - type: Transform - pos: 5.5,29.5 - parent: 1668 - - uid: 3146 - components: - - type: Transform - pos: 12.5,29.5 - parent: 1668 - - uid: 3147 - components: - - type: Transform - pos: 13.5,29.5 - parent: 1668 -- proto: DiceBag - entities: - - uid: 3763 - components: - - type: Transform - pos: -24.498522,4.631134 - parent: 1668 -- proto: DisposalBend - entities: - - uid: 2059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1668 - - uid: 2073 + - uid: 3211 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 1668 - - uid: 2074 - components: - - type: Transform - pos: -5.5,10.5 - parent: 1668 - - uid: 2076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1668 - - uid: 2086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1668 - - uid: 2091 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 1668 - - uid: 2093 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 1668 - - uid: 2117 - components: - - type: Transform - pos: 20.5,-1.5 - parent: 1668 - - uid: 2118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 1668 - - uid: 2125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1668 - - uid: 2129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 1668 - - uid: 2179 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1668 - - uid: 2180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1668 - - uid: 3639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,2.5 - parent: 1668 - - uid: 3852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1668 - - uid: 4649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 1668 - - uid: 4650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 1668 - - uid: 4925 - components: - - type: Transform - pos: -11.5,-22.5 - parent: 1668 - - uid: 4949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 - parent: 1668 - - uid: 4951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 - parent: 1668 - - uid: 4952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 1668 - - uid: 5897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 1668 -- proto: DisposalJunction - entities: - - uid: 2082 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 1668 - - uid: 4948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 1668 -- proto: DisposalJunctionFlipped - entities: - - uid: 2080 - components: - - type: Transform - pos: -5.5,3.5 - parent: 1668 - - uid: 2081 - components: - - type: Transform - pos: -5.5,0.5 - parent: 1668 - - uid: 2120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1668 - - uid: 2134 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 1668 - - uid: 3640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 1668 - - uid: 4927 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 1668 -- proto: DisposalPipe - entities: - - uid: 2060 - components: - - type: Transform - pos: -10.5,13.5 - parent: 1668 - - uid: 2061 - components: - - type: Transform - pos: -10.5,12.5 - parent: 1668 - - uid: 2062 - components: - - type: Transform - pos: -10.5,11.5 - parent: 1668 - - uid: 2063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1668 - - uid: 2064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1668 - - uid: 2065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1668 - - uid: 2066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1668 - - uid: 2067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,9.5 - parent: 1668 - - uid: 2068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 1668 - - uid: 2069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 1668 - - uid: 2070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1668 - - uid: 2071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 1668 - - uid: 2072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 1668 - - uid: 2077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1668 - - uid: 2078 - components: - - type: Transform - pos: -5.5,1.5 - parent: 1668 - - uid: 2079 - components: - - type: Transform - pos: -5.5,2.5 - parent: 1668 - - uid: 2083 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 1668 - - uid: 2084 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 1668 - - uid: 2085 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 1668 - - uid: 2087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1668 - - uid: 2088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1668 - - uid: 2089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1668 - - uid: 2090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1668 - - uid: 2094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 1668 - - uid: 2095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 1668 - - uid: 2096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 1668 - - uid: 2097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 1668 - - uid: 2098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 1668 - - uid: 2099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 1668 - - uid: 2100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 1668 - - uid: 2101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 1668 - - uid: 2102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 1668 - - uid: 2103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 1668 - - uid: 2104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-4.5 - parent: 1668 - - uid: 2105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-3.5 - parent: 1668 - - uid: 2106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-2.5 - parent: 1668 - - uid: 2107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 1668 - - uid: 2108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 1668 - - uid: 2109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 1668 - - uid: 2110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 1668 - - uid: 2111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 1668 - - uid: 2112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 1668 - - uid: 2113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1668 - - uid: 2114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 1668 - - uid: 2115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1668 - - uid: 2116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1668 - - uid: 2121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1668 - - uid: 2122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1668 - - uid: 2123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 1668 - - uid: 2124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1668 - - uid: 2126 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1668 - - uid: 2127 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 1668 - - uid: 2128 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 1668 - - uid: 2130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 1668 - - uid: 2131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 1668 - - uid: 2132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1668 - - uid: 2133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1668 - - uid: 2135 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1668 - - uid: 2136 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 1668 - - uid: 2137 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 1668 - - uid: 2138 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1668 - - uid: 2139 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - uid: 2140 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - uid: 2141 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1668 - - uid: 2181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 1668 - - uid: 2182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1668 - - uid: 2183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 1668 - - uid: 2184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1668 - - uid: 2185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1668 - - uid: 2186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1668 - - uid: 2187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1668 - - uid: 2188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1668 - - uid: 2189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1668 - - uid: 2190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1668 - - uid: 3641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,2.5 - parent: 1668 - - uid: 3642 - components: - - type: Transform - pos: -21.5,1.5 - parent: 1668 - - uid: 3643 - components: - - type: Transform - pos: -21.5,0.5 - parent: 1668 - - uid: 3644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1668 - - uid: 3645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 1668 - - uid: 3646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 1668 - - uid: 3647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1668 - - uid: 3648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 1668 - - uid: 3649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 1668 - - uid: 3650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1668 - - uid: 3651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1668 - - uid: 3652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1668 - - uid: 3653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1668 - - uid: 3654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1668 - - uid: 3655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - - uid: 3656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1668 - - uid: 3657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - - uid: 3658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 1668 - - uid: 3844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-8.5 - parent: 1668 - - uid: 3845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 1668 - - uid: 3846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 1668 - - uid: 3847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 1668 - - uid: 3848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 1668 - - uid: 3849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-3.5 - parent: 1668 - - uid: 3850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-2.5 - parent: 1668 - - uid: 3851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 1668 - - uid: 4926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1668 - - uid: 4928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-21.5 - parent: 1668 - - uid: 4929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-20.5 - parent: 1668 - - uid: 4930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-19.5 - parent: 1668 - - uid: 4931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 1668 - - uid: 4932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 1668 - - uid: 4933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 1668 - - uid: 4934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 1668 - - uid: 4935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1668 - - uid: 4936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1668 - - uid: 4937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1668 - - uid: 4938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1668 - - uid: 4939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1668 - - uid: 4940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1668 - - uid: 4941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 1668 - - uid: 4942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 1668 - - uid: 4943 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 1668 - - uid: 4944 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 1668 - - uid: 4945 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1668 - - uid: 4946 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1668 - - uid: 4947 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1668 - - uid: 4953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 1668 - - uid: 4954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1668 - - uid: 4955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 1668 - - uid: 4956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 1668 - - uid: 4957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 1668 - - uid: 4958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1668 - - uid: 4959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1668 - - uid: 4960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1668 - - uid: 4961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 1668 - - uid: 4962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1668 - - uid: 4963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1668 - - uid: 4964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1668 - - uid: 4965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1668 - - uid: 5785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 1668 - - uid: 5888 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 1668 - - uid: 5889 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 1668 - - uid: 5890 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 1668 - - uid: 5891 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 1668 - - uid: 5892 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 1668 - - uid: 5893 - components: - - type: Transform - pos: -13.5,-28.5 - parent: 1668 - - uid: 5894 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 1668 - - uid: 5895 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1668 - - uid: 5896 - components: - - type: Transform - pos: -13.5,-31.5 - parent: 1668 - - uid: 5898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1668 - - uid: 5899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 1668 - - uid: 5900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 1668 -- proto: DisposalTrunk - entities: - - uid: 2058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1668 - - uid: 2075 - components: - - type: Transform - pos: -3.5,1.5 - parent: 1668 - - uid: 2092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 1668 - - uid: 2119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1668 - - uid: 2178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1668 - - uid: 3638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,2.5 - parent: 1668 - - uid: 3843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-9.5 - parent: 1668 - - uid: 4924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-23.5 - parent: 1668 - - uid: 4950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 1668 - - uid: 5901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 1668 -- proto: DisposalUnit - entities: - - uid: 531 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 1668 - - uid: 630 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 1668 - - uid: 836 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 1668 - - uid: 1407 - components: - - type: Transform - pos: -3.5,1.5 - parent: 1668 - - uid: 1663 - components: - - type: Transform - pos: -9.5,14.5 - parent: 1668 - - uid: 2177 - components: - - type: Transform - pos: -3.5,8.5 - parent: 1668 - - uid: 3462 - components: - - type: Transform - pos: -19.5,2.5 - parent: 1668 - - uid: 3842 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 1668 - - uid: 4923 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 1668 -- proto: Dresser - entities: - - uid: 3435 - components: - - type: Transform - pos: -14.5,8.5 - parent: 1668 -- proto: DrinkFlask - entities: - - uid: 3773 - components: - - type: Transform - pos: -11.533806,6.6228595 - parent: 1668 -- proto: DrinkGoldenCup - entities: - - uid: 3769 - components: - - type: Transform - pos: -26.535545,11.773157 - parent: 1668 - - uid: 4375 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 1668 - - uid: 4376 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 1668 -- proto: DrinkHotCoffee - entities: - - uid: 5464 - components: - - type: Transform - pos: 16.572073,-29.470444 - parent: 1668 -- proto: DrinkMugHeart - entities: - - uid: 1399 - components: - - type: Transform - pos: 2.5713959,-11.619784 - parent: 1668 -- proto: DrinkShaker - entities: - - uid: 6621 - components: - - type: Transform - pos: 10.4809675,-21.408005 - parent: 1668 -- proto: DrinkShotGlass - entities: - - uid: 3889 - components: - - type: Transform - pos: -24.572554,-3.3475308 - parent: 1668 - - uid: 3890 - components: - - type: Transform - pos: -24.400679,-3.4725308 - parent: 1668 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 3875 - components: - - type: Transform - pos: -27.52259,-4.144406 - parent: 1668 -- proto: EmergencyLight - entities: - - uid: 3155 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,29.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3158 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3159 - components: - - type: Transform - pos: 24.5,13.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3160 - components: - - type: Transform - pos: 29.5,23.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3161 - components: - - type: Transform - pos: 23.5,5.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3165 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3166 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3168 - components: - - type: Transform - pos: -2.5,16.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight -- proto: EpinephrineChemistryBottle - entities: - - uid: 1462 - components: - - type: Transform - pos: 13.808971,-12.626007 - parent: 1668 - - uid: 1463 - components: - - type: Transform - pos: 13.818524,-12.297882 - parent: 1668 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 628 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 1668 - - uid: 2237 - components: - - type: Transform - pos: 8.5,6.5 - parent: 1668 - - uid: 3908 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 1668 - - uid: 3910 - components: - - type: Transform - pos: -9.5,-5.5 - parent: 1668 - - uid: 3911 - components: - - type: Transform - pos: -13.5,10.5 - parent: 1668 - - uid: 3912 - components: - - type: Transform - pos: -4.5,16.5 - parent: 1668 - - uid: 3913 - components: - - type: Transform - pos: 15.5,15.5 - parent: 1668 - - uid: 3914 - components: - - type: Transform - pos: 21.5,17.5 - parent: 1668 - - uid: 3915 - components: - - type: Transform - pos: 13.5,18.5 - parent: 1668 - - uid: 3916 - components: - - type: Transform - pos: 18.5,2.5 - parent: 1668 - - uid: 3917 - components: - - type: Transform - pos: 18.5,-3.5 - parent: 1668 - - uid: 3918 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 1668 - - uid: 4150 - components: - - type: Transform - pos: -28.5,1.5 - parent: 1668 -- proto: FaxMachineCentcom - entities: - - uid: 76 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 1668 - - type: FaxMachine - name: CentComm -- proto: filingCabinet - entities: - - uid: 594 - components: - - type: Transform - pos: 10.5,6.5 - parent: 1668 - - uid: 595 - components: - - type: Transform - pos: 11.5,6.5 - parent: 1668 - - uid: 650 - components: - - type: Transform - pos: 1.5,1.5 - parent: 1668 - - uid: 3840 - components: - - type: Transform - pos: -24.5,-9.5 - parent: 1668 - - uid: 3841 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 1668 -- proto: filingCabinetDrawer - entities: - - uid: 1628 - components: - - type: Transform - pos: -12.5,12.5 - parent: 1668 - - uid: 1660 - components: - - type: Transform pos: -11.5,14.5 parent: 1668 -- proto: filingCabinetTall + - uid: 3538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,18.5 + parent: 1668 + - uid: 3620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,28.5 + parent: 1668 + - uid: 3989 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1668 + - uid: 4852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-50.5 + parent: 1668 + - uid: 4853 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 1668 + - uid: 4854 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 1668 + - uid: 4855 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 1668 + - uid: 4856 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 1668 + - uid: 4857 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1668 + - uid: 5276 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 1668 + - uid: 5277 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 1668 + - uid: 5657 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 1668 + - uid: 6479 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 1668 + - uid: 6958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-11.5 + parent: 1668 + - uid: 6959 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 1668 + - uid: 7050 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1668 + - uid: 7185 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 1668 + - uid: 7186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,2.5 + parent: 1668 + - uid: 7187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,2.5 + parent: 1668 + - uid: 8796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-11.5 + parent: 1668 + - uid: 9134 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 1668 + - uid: 9220 + components: + - type: Transform + pos: -34.5,8.5 + parent: 1668 + - uid: 9221 + components: + - type: Transform + pos: -34.5,14.5 + parent: 1668 +- proto: Ash entities: - - uid: 1626 + - uid: 2918 components: + - type: MetaData + desc: This is Renault + name: Renault - type: Transform - pos: -12.5,8.5 + pos: -9.525765,7.7783265 parent: 1668 - - uid: 1627 - components: - - type: Transform - pos: -11.5,8.5 - parent: 1668 - - uid: 1661 - components: - - type: Transform - pos: -9.5,17.5 - parent: 1668 -- proto: FireAxeCabinetFilled +- proto: Ashtray entities: - - uid: 6647 + - uid: 2024 components: - type: Transform - pos: 15.5,-28.5 + pos: 27.892197,27.53823 parent: 1668 -- proto: FirelockGlass + - uid: 2025 + components: + - type: Transform + pos: 25.547268,-20.43761 + parent: 1668 + - uid: 2026 + components: + - type: Transform + pos: 27.562893,-24.359486 + parent: 1668 + - uid: 6765 + components: + - type: Transform + pos: -44.54551,-4.239232 + parent: 1668 + - uid: 9159 + components: + - type: Transform + pos: 20.807465,-32.49228 + parent: 1668 +- proto: AtmosDeviceFanDirectional entities: - - uid: 15 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 1668 - uid: 16 components: - type: Transform - pos: 4.5,-3.5 - parent: 1668 - - uid: 17 - components: - - type: Transform - pos: 3.5,-4.5 + rot: 1.5707963267948966 rad + pos: 33.5,2.5 parent: 1668 - uid: 18 components: - type: Transform - pos: 3.5,-5.5 - parent: 1668 - - uid: 19 - components: - - type: Transform - pos: 5.5,2.5 + rot: 1.5707963267948966 rad + pos: 33.5,1.5 parent: 1668 - uid: 20 components: - type: Transform - pos: 4.5,2.5 + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 parent: 1668 - uid: 21 components: - type: Transform - pos: 3.5,4.5 - parent: 1668 - - uid: 22 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1668 - - uid: 23 - components: - - type: Transform - pos: -4.5,4.5 - parent: 1668 - - uid: 24 - components: - - type: Transform - pos: -4.5,3.5 - parent: 1668 - - uid: 25 - components: - - type: Transform - pos: -6.5,2.5 - parent: 1668 - - uid: 26 - components: - - type: Transform - pos: -5.5,2.5 - parent: 1668 - - uid: 27 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 1668 - - uid: 28 - components: - - type: Transform - pos: -5.5,-3.5 + rot: 1.5707963267948966 rad + pos: 33.5,-5.5 parent: 1668 - uid: 29 components: - type: Transform - pos: -4.5,-4.5 + rot: 1.5707963267948966 rad + pos: 33.5,5.5 parent: 1668 - - uid: 125 + - uid: 106 components: - type: Transform - pos: 9.5,16.5 + rot: 1.5707963267948966 rad + pos: 33.5,-4.5 parent: 1668 - - uid: 131 + - uid: 123 components: - type: Transform - pos: -4.5,-5.5 + rot: 1.5707963267948966 rad + pos: 33.5,4.5 parent: 1668 - - uid: 492 + - uid: 139 components: - type: Transform - pos: 25.5,-7.5 + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 parent: 1668 - - uid: 493 + - uid: 140 components: - type: Transform - pos: 26.5,-7.5 + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 parent: 1668 - - uid: 495 + - uid: 150 components: - type: Transform - pos: 27.5,-7.5 + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 1668 + - uid: 2548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,36.5 + parent: 1668 + - uid: 2567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 1668 + - uid: 3886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,31.5 + parent: 1668 +- proto: AtmosDeviceFanTiny + entities: + - uid: 1 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1668 + - uid: 2 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 1668 + - uid: 89 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 1668 + - uid: 92 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 1668 + - uid: 104 + components: + - type: Transform + pos: 35.5,0.5 + parent: 1668 + - uid: 105 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 1668 + - uid: 108 + components: + - type: Transform + pos: 35.5,4.5 + parent: 1668 + - uid: 135 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 1668 + - uid: 146 + components: + - type: Transform + pos: 35.5,5.5 + parent: 1668 + - uid: 147 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 1668 + - uid: 195 + components: + - type: Transform + pos: 35.5,2.5 + parent: 1668 + - uid: 197 + components: + - type: Transform + pos: 35.5,1.5 + parent: 1668 + - uid: 199 + components: + - type: Transform + pos: 35.5,3.5 + parent: 1668 + - uid: 834 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1668 + - uid: 835 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1668 + - uid: 1054 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 1668 + - uid: 1064 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1668 + - uid: 1274 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 1668 + - uid: 1275 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 1668 + - uid: 2536 + components: + - type: Transform + pos: 2.5,36.5 + parent: 1668 + - uid: 2566 + components: + - type: Transform + pos: 4.5,36.5 + parent: 1668 + - uid: 2676 + components: + - type: Transform + pos: 13.5,29.5 + parent: 1668 + - uid: 3020 + components: + - type: Transform + pos: -21.5,18.5 + parent: 1668 + - uid: 4619 + components: + - type: Transform + pos: 21.5,-48.5 + parent: 1668 + - uid: 4620 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 1668 + - uid: 5646 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 1668 + - uid: 5647 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 1668 + - uid: 5648 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 1668 + - uid: 5649 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 1668 + - uid: 5650 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 1668 + - uid: 5651 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 1668 + - uid: 5652 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 1668 + - uid: 5653 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 1668 + - uid: 7165 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 1668 + - uid: 7166 + components: + - type: Transform + pos: -55.5,-0.5 + parent: 1668 + - uid: 7167 + components: + - type: Transform + pos: -55.5,0.5 + parent: 1668 + - uid: 7386 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 1668 + - uid: 7387 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 1668 + - uid: 7388 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 1668 + - uid: 7389 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 1668 + - uid: 7390 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 1668 + - uid: 7391 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 1668 + - uid: 7483 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 1668 +- proto: AtmosFixFreezerMarker + entities: + - uid: 1074 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 1668 + - uid: 1075 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1668 + - uid: 1076 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1668 + - uid: 1077 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 1668 + - uid: 1078 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 1668 + - uid: 1079 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1668 + - uid: 1080 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1668 + - uid: 1081 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 1668 + - uid: 1082 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 1668 + - uid: 1083 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1668 + - uid: 1084 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 1668 + - uid: 1085 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 1668 + - uid: 1086 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1668 + - uid: 1087 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1668 + - uid: 1088 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1668 + - uid: 1089 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 1668 + - uid: 1090 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 1668 + - uid: 1091 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 1668 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 3384 + components: + - type: Transform + pos: -31.5,25.5 + parent: 1668 + - uid: 3385 + components: + - type: Transform + pos: -31.5,27.5 + parent: 1668 + - uid: 3386 + components: + - type: Transform + pos: -29.5,27.5 + parent: 1668 + - uid: 3387 + components: + - type: Transform + pos: -31.5,26.5 + parent: 1668 + - uid: 3396 + components: + - type: Transform + pos: -30.5,27.5 + parent: 1668 + - uid: 3397 + components: + - type: Transform + pos: -30.5,26.5 + parent: 1668 + - uid: 3430 + components: + - type: Transform + pos: -29.5,26.5 + parent: 1668 + - uid: 3431 + components: + - type: Transform + pos: -29.5,25.5 + parent: 1668 + - uid: 3439 + components: + - type: Transform + pos: -30.5,25.5 + parent: 1668 +- proto: AtmosFixOxygenMarker + entities: + - uid: 3388 + components: + - type: Transform + pos: -29.5,20.5 + parent: 1668 + - uid: 3389 + components: + - type: Transform + pos: -29.5,21.5 + parent: 1668 + - uid: 3390 + components: + - type: Transform + pos: -30.5,21.5 + parent: 1668 + - uid: 3391 + components: + - type: Transform + pos: -29.5,19.5 + parent: 1668 + - uid: 3395 + components: + - type: Transform + pos: -30.5,20.5 + parent: 1668 + - uid: 3432 + components: + - type: Transform + pos: -30.5,19.5 + parent: 1668 + - uid: 3474 + components: + - type: Transform + pos: -31.5,21.5 + parent: 1668 + - uid: 3475 + components: + - type: Transform + pos: -31.5,20.5 + parent: 1668 + - uid: 3476 + components: + - type: Transform + pos: -31.5,19.5 + parent: 1668 +- proto: Autolathe + entities: + - uid: 3272 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1668 +- proto: BannerNanotrasen + entities: + - uid: 9342 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 1668 +- proto: BarSignTheLooseGoose + entities: + - uid: 4269 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1668 + - uid: 4270 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 1668 +- proto: Bed + entities: + - uid: 1358 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 1668 + - uid: 1623 + components: + - type: Transform + pos: 23.5,10.5 + parent: 1668 + - uid: 1624 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1668 + - uid: 2826 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1668 + - uid: 3729 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1668 + - uid: 6176 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 1668 +- proto: BedsheetBlack + entities: + - uid: 1359 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 1668 +- proto: BedsheetCentcom + entities: + - uid: 2827 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1668 + - uid: 6177 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 1668 +- proto: BedsheetMedical + entities: + - uid: 1389 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1668 + - uid: 1390 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1668 +- proto: BenchBlueComfy + entities: + - uid: 4325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1668 + - uid: 4326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1668 + - uid: 9089 + components: + - type: Transform + pos: -47.5,1.5 + parent: 1668 + - uid: 9090 + components: + - type: Transform + pos: -45.5,1.5 + parent: 1668 + - uid: 9092 + components: + - type: Transform + pos: -27.5,1.5 + parent: 1668 + - uid: 9093 + components: + - type: Transform + pos: -26.5,1.5 + parent: 1668 + - uid: 9103 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1668 + - uid: 9104 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1668 + - uid: 9105 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1668 + - uid: 9283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-2.5 + parent: 1668 + - uid: 9284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 1668 + - uid: 9285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 1668 +- proto: Biogenerator + entities: + - uid: 996 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 1668 +- proto: BiomassReclaimer + entities: + - uid: 754 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 1668 +- proto: BlastDoor + entities: + - uid: 3912 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1668 + - uid: 3913 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1668 + - uid: 4726 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 1668 + - uid: 4727 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 1668 + - uid: 4728 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 1668 + - uid: 4729 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 1668 + - uid: 4730 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 1668 + - uid: 4731 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 1668 + - uid: 4732 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 1668 + - uid: 4733 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 1668 + - uid: 4734 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 1668 + - uid: 4735 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 1668 + - uid: 4736 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 1668 + - uid: 4737 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 1668 + - uid: 4738 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 1668 + - uid: 4739 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 1668 + - uid: 4740 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 1668 + - uid: 4741 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 1668 + - uid: 4742 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 1668 + - uid: 4743 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 1668 + - uid: 4744 + components: + - type: Transform + pos: 9.5,-44.5 + parent: 1668 + - uid: 4745 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 1668 + - uid: 4746 + components: + - type: Transform + pos: 11.5,-44.5 + parent: 1668 + - uid: 4747 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 1668 + - uid: 4748 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 1668 + - uid: 4749 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 1668 + - uid: 4750 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 1668 + - uid: 4751 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 1668 + - uid: 4752 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 1668 + - uid: 4753 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 1668 + - uid: 4754 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 1668 + - uid: 4755 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 1668 + - uid: 4756 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 1668 + - uid: 4757 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 1668 + - uid: 4758 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 1668 + - uid: 4759 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 1668 + - uid: 6903 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 1668 + - uid: 6904 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 1668 + - uid: 6905 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 1668 +- proto: BlastDoorOpen + entities: + - uid: 3 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 1668 + - uid: 30 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1668 + - uid: 32 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1668 + - uid: 78 + components: + - type: Transform + pos: 33.5,1.5 + parent: 1668 + - uid: 138 + components: + - type: Transform + pos: 33.5,5.5 + parent: 1668 + - uid: 141 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1668 + - uid: 148 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1668 + - uid: 196 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 1668 + - uid: 198 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 1668 + - uid: 200 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1668 + - uid: 314 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1668 + - uid: 315 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1668 + - uid: 318 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1668 + - uid: 319 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1668 + - uid: 320 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1668 + - uid: 321 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1668 + - uid: 322 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1668 + - uid: 323 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1668 + - uid: 324 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1668 + - uid: 325 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1668 + - uid: 326 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1668 + - uid: 327 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1668 + - uid: 329 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1668 + - uid: 330 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1668 + - uid: 331 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1668 + - uid: 332 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1668 + - uid: 333 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1668 + - uid: 334 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1668 + - uid: 335 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1668 + - uid: 537 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1668 + - uid: 538 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1668 + - uid: 539 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1668 + - uid: 540 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1668 + - uid: 541 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1668 + - uid: 542 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1668 + - uid: 543 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1668 + - uid: 544 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1668 + - uid: 545 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1668 + - uid: 546 + components: + - type: Transform + pos: 8.5,-2.5 parent: 1668 - uid: 559 components: @@ -20973,4406 +6877,31367 @@ entities: pos: 12.5,2.5 parent: 1668 - uid: 560 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1668 + - uid: 561 components: - type: Transform pos: 14.5,2.5 parent: 1668 - - uid: 733 + - uid: 562 components: - type: Transform - pos: 2.5,-11.5 + pos: 15.5,2.5 parent: 1668 - - uid: 735 + - uid: 563 components: - type: Transform - pos: 2.5,-12.5 + pos: 16.5,2.5 parent: 1668 - - uid: 772 + - uid: 564 components: - type: Transform - pos: -3.5,-12.5 + pos: 16.5,-3.5 parent: 1668 - - uid: 773 + - uid: 565 components: - type: Transform - pos: -3.5,-11.5 + pos: 15.5,-3.5 parent: 1668 - - uid: 1619 + - uid: 566 components: - type: Transform - pos: -4.5,9.5 + pos: 14.5,-3.5 parent: 1668 - - uid: 1620 + - uid: 567 components: - type: Transform - pos: -4.5,10.5 + pos: 13.5,-3.5 parent: 1668 - - uid: 4299 + - uid: 568 components: - type: Transform - pos: 6.5,-24.5 + pos: 12.5,-3.5 parent: 1668 - - uid: 4404 + - uid: 609 components: - type: Transform - pos: -8.5,-27.5 + pos: 18.5,4.5 parent: 1668 - - uid: 4405 + - uid: 612 components: - type: Transform - pos: -8.5,-26.5 + pos: 18.5,-5.5 parent: 1668 - - uid: 4406 + - uid: 729 components: - type: Transform - pos: -8.5,-25.5 + pos: 22.5,-7.5 parent: 1668 - - uid: 4407 + - uid: 730 components: - type: Transform - pos: 7.5,-27.5 + pos: 21.5,-7.5 parent: 1668 - - uid: 4408 + - uid: 731 components: - type: Transform - pos: 7.5,-26.5 + pos: 20.5,-7.5 parent: 1668 - - uid: 4409 + - uid: 1140 components: - type: Transform - pos: 7.5,-25.5 + pos: 31.5,-8.5 parent: 1668 - - uid: 4630 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1141 components: - type: Transform - pos: -13.5,-20.5 + pos: 30.5,-8.5 parent: 1668 - - uid: 4631 + - uid: 1142 components: - type: Transform - pos: -14.5,-20.5 + pos: 29.5,-8.5 parent: 1668 - - uid: 4632 + - uid: 1143 components: - type: Transform - pos: 13.5,-20.5 + pos: 31.5,-13.5 parent: 1668 - - uid: 4633 + - uid: 1144 components: - type: Transform - pos: 12.5,-20.5 + pos: 30.5,-13.5 parent: 1668 - - uid: 4754 + - uid: 1145 components: - type: Transform - pos: 16.5,-22.5 + pos: 29.5,-13.5 parent: 1668 - - uid: 4968 + - uid: 2252 components: - type: Transform - pos: 12.5,-29.5 + pos: 16.5,21.5 parent: 1668 - - uid: 4969 + - uid: 2253 components: - type: Transform - pos: 13.5,-29.5 + pos: 15.5,21.5 parent: 1668 - - uid: 5045 + - uid: 2256 components: - type: Transform - pos: 19.5,-19.5 + pos: 11.5,21.5 parent: 1668 - - uid: 5046 + - uid: 2257 components: - type: Transform - pos: 20.5,-19.5 + pos: 10.5,21.5 parent: 1668 - - uid: 5047 + - uid: 2804 components: - type: Transform - pos: 21.5,-19.5 + pos: -19.5,15.5 parent: 1668 - - uid: 5222 + - uid: 2805 components: - type: Transform - pos: 25.5,-19.5 + pos: -19.5,16.5 parent: 1668 - - uid: 5224 +- proto: BluespaceBeaker + entities: + - uid: 908 components: - type: Transform - pos: 24.5,-19.5 + pos: 10.462108,-8.316433 parent: 1668 - - uid: 5233 +- proto: BookshelfFilled + entities: + - uid: 1990 components: - type: Transform - pos: 26.5,-19.5 + pos: 31.5,27.5 parent: 1668 - - uid: 5254 + - uid: 1991 components: - type: Transform - pos: 29.5,-18.5 + pos: 30.5,27.5 parent: 1668 - - uid: 5255 + - uid: 1992 components: - type: Transform - pos: 29.5,-17.5 + pos: 29.5,27.5 parent: 1668 - - uid: 5256 + - uid: 1993 + components: + - type: Transform + pos: 23.5,27.5 + parent: 1668 + - uid: 1994 + components: + - type: Transform + pos: 22.5,27.5 + parent: 1668 + - uid: 1995 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1668 + - uid: 2655 + components: + - type: Transform + pos: -23.5,11.5 + parent: 1668 + - uid: 4446 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 1668 + - uid: 4447 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 1668 + - uid: 6717 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 1668 + - uid: 6718 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 1668 +- proto: BookSpaceLaw + entities: + - uid: 2028 + components: + - type: Transform + pos: 25.54731,24.447483 + parent: 1668 + - uid: 6769 + components: + - type: Transform + pos: -45.467384,-10.474911 + parent: 1668 +- proto: BoozeDispenser + entities: + - uid: 1212 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 1668 + - uid: 1240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 1668 + - uid: 4082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,26.5 + parent: 1668 + - uid: 4281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-32.5 + parent: 1668 +- proto: BoxDarts + entities: + - uid: 9173 + components: + - type: Transform + pos: 20.585056,-31.441444 + parent: 1668 +- proto: BoxFolderBlack + entities: + - uid: 2863 + components: + - type: Transform + pos: -17.608786,12.723077 + parent: 1668 +- proto: BoxFolderBlue + entities: + - uid: 534 + components: + - type: Transform + pos: -0.24795187,1.5721796 + parent: 1668 + - uid: 1986 + components: + - type: Transform + pos: 28.5,23.5 + parent: 1668 + - uid: 1989 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1668 + - uid: 2083 + components: + - type: Transform + pos: 32.58944,11.550044 + parent: 1668 + - uid: 6767 + components: + - type: Transform + pos: -42.373634,-6.5999103 + parent: 1668 +- proto: BoxFolderCentCom + entities: + - uid: 10 + components: + - type: Transform + pos: -3.4334178,-1.6784649 + parent: 1668 + - uid: 535 + components: + - type: Transform + pos: -1.3885769,0.99405456 + parent: 1668 + - uid: 2086 + components: + - type: Transform + pos: 27.53265,11.702644 + parent: 1668 + - uid: 2862 + components: + - type: Transform + pos: -17.46816,12.582452 + parent: 1668 +- proto: BoxFolderCentComClipboard + entities: + - uid: 482 + components: + - type: Transform + pos: -3.6052928,-1.4909649 + parent: 1668 + - uid: 5999 + components: + - type: Transform + pos: -17.57402,4.5567474 + parent: 1668 + - uid: 9079 + components: + - type: Transform + pos: -7.0432096,-9.420659 + parent: 1668 + - uid: 9189 + components: + - type: Transform + pos: -42.40472,-7.469842 + parent: 1668 +- proto: BoxFolderClipboard + entities: + - uid: 6758 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 1668 +- proto: BoxFolderRed + entities: + - uid: 533 + components: + - type: Transform + pos: -0.71670187,1.5721796 + parent: 1668 + - uid: 1987 + components: + - type: Transform + pos: 24.5,23.5 + parent: 1668 + - uid: 1988 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1668 + - uid: 2089 + components: + - type: Transform + pos: 32.386314,11.675044 + parent: 1668 + - uid: 6768 + components: + - type: Transform + pos: -42.498634,-6.4436603 + parent: 1668 +- proto: BoxHandcuff + entities: + - uid: 1318 + components: + - type: Transform + pos: 34.528294,-12.44674 + parent: 1668 + - uid: 1743 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1668 + - uid: 9214 + components: + - type: Transform + pos: -31.104265,-7.282342 + parent: 1668 +- proto: BoxHeadset + entities: + - uid: 8815 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 1668 +- proto: BoxingBell + entities: + - uid: 4722 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 1668 +- proto: BoxLethalshot + entities: + - uid: 1093 + components: + - type: Transform + pos: 34.536674,-20.85105 + parent: 1668 +- proto: BoxMagazineLightRifle + entities: + - uid: 2337 + components: + - type: Transform + pos: 11.480659,26.837893 + parent: 1668 + - uid: 2338 + components: + - type: Transform + pos: 11.480659,26.619143 + parent: 1668 +- proto: BoxMagazinePistolPractice + entities: + - uid: 2984 + components: + - type: Transform + pos: 11.430329,8.720324 + parent: 1668 +- proto: BoxMagazinePistolSubMachineGun + entities: + - uid: 2314 + components: + - type: Transform + pos: 11.418159,34.79275 + parent: 1668 + - uid: 2315 + components: + - type: Transform + pos: 11.418159,34.589626 + parent: 1668 + - uid: 2339 + components: + - type: Transform + pos: 11.511909,22.860062 + parent: 1668 + - uid: 2341 + components: + - type: Transform + pos: 11.511909,22.641312 + parent: 1668 +- proto: BoxMagazinePistolSubMachineGunPractice + entities: + - uid: 1742 + components: + - type: Transform + pos: 11.445954,9.423449 + parent: 1668 +- proto: BoxMagazinePistolSubMachineGunTopMounted + entities: + - uid: 2334 + components: + - type: Transform + pos: 16.465034,26.650393 + parent: 1668 + - uid: 2340 + components: + - type: Transform + pos: 16.465034,26.837893 + parent: 1668 +- proto: BoxMagazineRifle + entities: + - uid: 2335 + components: + - type: Transform + pos: 11.449409,24.806643 + parent: 1668 + - uid: 2336 + components: + - type: Transform + pos: 11.433784,24.603518 + parent: 1668 + - uid: 2591 + components: + - type: Transform + pos: 11.398422,30.843575 + parent: 1668 + - uid: 2592 + components: + - type: Transform + pos: 11.384534,30.704685 + parent: 1668 + - uid: 2593 + components: + - type: Transform + pos: 11.384534,30.558851 + parent: 1668 + - uid: 6821 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6837 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineRiflePractice + entities: + - uid: 1735 + components: + - type: Transform + pos: 11.430329,9.079699 + parent: 1668 +- proto: BoxMagazineShotgun + entities: + - uid: 2362 + components: + - type: Transform + pos: 16.204163,22.856552 + parent: 1668 + - uid: 2370 + components: + - type: Transform + pos: 16.162495,24.820536 + parent: 1668 +- proto: BoxMagazineShotgunBeanbag + entities: + - uid: 2365 + components: + - type: Transform + pos: 16.631245,22.502384 + parent: 1668 + - uid: 2373 + components: + - type: Transform + pos: 16.610413,24.49762 + parent: 1668 +- proto: BoxMagazineShotgunIncendiary + entities: + - uid: 2364 + components: + - type: Transform + pos: 16.162495,22.502384 + parent: 1668 + - uid: 2372 + components: + - type: Transform + pos: 16.152079,24.508036 + parent: 1668 +- proto: BoxMagazineShotgunSlug + entities: + - uid: 2363 + components: + - type: Transform + pos: 16.672913,22.856552 + parent: 1668 + - uid: 2371 + components: + - type: Transform + pos: 16.641663,24.820536 + parent: 1668 +- proto: BoxMouthSwab + entities: + - uid: 1050 + components: + - type: Transform + pos: 7.410587,-21.300282 + parent: 1668 +- proto: BoxMRE + entities: + - uid: 9186 + components: + - type: Transform + pos: -31.27614,-8.235467 + parent: 1668 + - uid: 9200 + components: + - type: Transform + pos: -31.416765,-8.047967 + parent: 1668 +- proto: BoxShellTranquilizer + entities: + - uid: 1323 + components: + - type: Transform + pos: 34.536674,-21.41355 + parent: 1668 +- proto: BoxShotgunFlare + entities: + - uid: 1329 + components: + - type: Transform + pos: 34.567924,-22.2573 + parent: 1668 +- proto: BoxShotgunIncendiary + entities: + - uid: 1311 + components: + - type: Transform + pos: 34.52105,-21.1323 + parent: 1668 +- proto: BoxShotgunSlug + entities: + - uid: 1335 + components: + - type: Transform + pos: 34.5523,-21.72605 + parent: 1668 +- proto: BoxShotgunUranium + entities: + - uid: 1334 + components: + - type: Transform + pos: 34.567924,-21.97605 + parent: 1668 +- proto: BoxZiptie + entities: + - uid: 1744 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1668 + - uid: 6811 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6844 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6899 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BrigTimer + entities: + - uid: 1601 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1582: + - Start: Close + - Timer: Open + - uid: 1602 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1581: + - Start: Close + - Timer: Open +- proto: Bucket + entities: + - uid: 1034 + components: + - type: Transform + pos: 6.5287576,-19.333141 + parent: 1668 +- proto: ButchCleaver + entities: + - uid: 1189 + components: + - type: Transform + pos: 17.435421,-23.2928 + parent: 1668 +- proto: ButtonFrameCaution + entities: + - uid: 337 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1668 + - uid: 571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,2.5 + parent: 1668 + - uid: 572 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1668 + - uid: 2251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 1668 + - uid: 3915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 1668 + - uid: 4724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-49.5 + parent: 1668 + - uid: 4725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-49.5 + parent: 1668 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 2255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 1668 +- proto: ButtonFrameExit + entities: + - uid: 4723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-49.5 + parent: 1668 +- proto: ButtonFrameGrey + entities: + - uid: 604 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1668 + - uid: 605 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1668 +- proto: C4 + entities: + - uid: 2669 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2682 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2683 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2684 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2685 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2686 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2687 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2688 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2689 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2690 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2691 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 2698 + components: + - type: Transform + pos: 16.8675,30.598095 + parent: 1668 + - uid: 9185 + components: + - type: Transform + pos: -30.30739,-4.407342 + parent: 1668 + - uid: 9213 + components: + - type: Transform + pos: -30.573015,-4.407342 + parent: 1668 +- proto: CableApcExtension + entities: + - uid: 160 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1668 + - uid: 214 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1668 + - uid: 216 + components: + - type: Transform + pos: 19.5,3.5 + parent: 1668 + - uid: 217 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1668 + - uid: 218 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1668 + - uid: 219 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1668 + - uid: 220 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1668 + - uid: 221 + components: + - type: Transform + pos: 23.5,3.5 + parent: 1668 + - uid: 222 + components: + - type: Transform + pos: 24.5,3.5 + parent: 1668 + - uid: 223 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1668 + - uid: 224 + components: + - type: Transform + pos: 27.5,3.5 + parent: 1668 + - uid: 225 + components: + - type: Transform + pos: 28.5,3.5 + parent: 1668 + - uid: 226 + components: + - type: Transform + pos: 29.5,3.5 + parent: 1668 + - uid: 227 + components: + - type: Transform + pos: 30.5,3.5 + parent: 1668 + - uid: 228 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1668 + - uid: 229 + components: + - type: Transform + pos: 32.5,3.5 + parent: 1668 + - uid: 230 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1668 + - uid: 231 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1668 + - uid: 232 + components: + - type: Transform + pos: 26.5,5.5 + parent: 1668 + - uid: 233 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1668 + - uid: 234 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1668 + - uid: 235 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1668 + - uid: 236 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1668 + - uid: 237 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1668 + - uid: 238 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1668 + - uid: 239 + components: + - type: Transform + pos: 22.5,7.5 + parent: 1668 + - uid: 240 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1668 + - uid: 241 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1668 + - uid: 242 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1668 + - uid: 243 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1668 + - uid: 244 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1668 + - uid: 245 + components: + - type: Transform + pos: 30.5,7.5 + parent: 1668 + - uid: 246 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1668 + - uid: 247 + components: + - type: Transform + pos: 32.5,7.5 + parent: 1668 + - uid: 248 + components: + - type: Transform + pos: 31.5,1.5 + parent: 1668 + - uid: 250 + components: + - type: Transform + pos: 31.5,0.5 + parent: 1668 + - uid: 254 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 1668 + - uid: 255 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 1668 + - uid: 256 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 1668 + - uid: 257 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 1668 + - uid: 258 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 1668 + - uid: 259 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 1668 + - uid: 260 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1668 + - uid: 261 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1668 + - uid: 262 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1668 + - uid: 263 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 1668 + - uid: 264 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1668 + - uid: 265 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1668 + - uid: 266 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 1668 + - uid: 267 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1668 + - uid: 268 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 1668 + - uid: 269 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 1668 + - uid: 270 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 1668 + - uid: 271 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 1668 + - uid: 272 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1668 + - uid: 273 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 1668 + - uid: 274 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1668 + - uid: 275 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 1668 + - uid: 276 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 1668 + - uid: 277 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1668 + - uid: 278 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 1668 + - uid: 279 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1668 + - uid: 280 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 1668 + - uid: 281 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 1668 + - uid: 282 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 1668 + - uid: 283 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 1668 + - uid: 284 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 1668 + - uid: 285 + components: + - type: Transform + pos: 34.5,0.5 + parent: 1668 + - uid: 286 + components: + - type: Transform + pos: 34.5,1.5 + parent: 1668 + - uid: 287 + components: + - type: Transform + pos: 34.5,3.5 + parent: 1668 + - uid: 288 + components: + - type: Transform + pos: 34.5,4.5 + parent: 1668 + - uid: 289 + components: + - type: Transform + pos: 34.5,5.5 + parent: 1668 + - uid: 290 + components: + - type: Transform + pos: 34.5,2.5 + parent: 1668 + - uid: 291 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 1668 + - uid: 292 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 1668 + - uid: 293 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1668 + - uid: 294 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1668 + - uid: 295 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1668 + - uid: 296 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1668 + - uid: 297 + components: + - type: Transform + pos: 31.5,3.5 + parent: 1668 + - uid: 298 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1668 + - uid: 299 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 1668 + - uid: 300 + components: + - type: Transform + pos: 26.5,1.5 + parent: 1668 + - uid: 301 + components: + - type: Transform + pos: 26.5,2.5 + parent: 1668 + - uid: 302 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 1668 + - uid: 303 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 1668 + - uid: 304 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 1668 + - uid: 305 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 1668 + - uid: 306 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1668 + - uid: 339 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1668 + - uid: 340 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1668 + - uid: 341 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1668 + - uid: 342 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1668 + - uid: 343 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1668 + - uid: 344 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1668 + - uid: 345 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1668 + - uid: 347 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1668 + - uid: 349 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1668 + - uid: 354 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1668 + - uid: 356 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1668 + - uid: 360 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1668 + - uid: 361 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1668 + - uid: 384 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1668 + - uid: 385 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1668 + - uid: 387 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1668 + - uid: 388 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1668 + - uid: 389 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1668 + - uid: 390 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1668 + - uid: 393 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1668 + - uid: 396 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1668 + - uid: 397 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1668 + - uid: 398 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1668 + - uid: 399 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1668 + - uid: 401 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1668 + - uid: 402 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1668 + - uid: 403 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1668 + - uid: 404 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1668 + - uid: 408 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1668 + - uid: 412 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1668 + - uid: 413 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1668 + - uid: 414 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1668 + - uid: 415 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1668 + - uid: 416 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1668 + - uid: 417 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1668 + - uid: 418 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1668 + - uid: 419 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1668 + - uid: 420 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1668 + - uid: 421 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1668 + - uid: 422 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1668 + - uid: 423 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1668 + - uid: 424 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1668 + - uid: 425 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1668 + - uid: 426 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1668 + - uid: 427 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1668 + - uid: 428 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1668 + - uid: 429 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1668 + - uid: 430 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1668 + - uid: 431 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1668 + - uid: 432 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1668 + - uid: 433 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1668 + - uid: 434 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1668 + - uid: 435 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1668 + - uid: 436 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1668 + - uid: 437 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1668 + - uid: 438 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1668 + - uid: 439 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1668 + - uid: 440 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1668 + - uid: 441 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1668 + - uid: 442 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1668 + - uid: 443 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1668 + - uid: 444 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1668 + - uid: 445 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1668 + - uid: 446 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1668 + - uid: 447 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1668 + - uid: 448 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1668 + - uid: 449 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1668 + - uid: 450 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1668 + - uid: 451 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1668 + - uid: 452 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1668 + - uid: 453 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1668 + - uid: 454 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1668 + - uid: 455 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1668 + - uid: 456 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1668 + - uid: 457 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1668 + - uid: 459 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1668 + - uid: 460 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1668 + - uid: 462 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1668 + - uid: 463 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1668 + - uid: 464 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1668 + - uid: 465 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1668 + - uid: 466 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1668 + - uid: 467 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1668 + - uid: 468 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1668 + - uid: 469 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1668 + - uid: 470 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1668 + - uid: 473 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1668 + - uid: 836 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1668 + - uid: 837 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1668 + - uid: 838 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1668 + - uid: 839 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1668 + - uid: 840 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1668 + - uid: 841 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1668 + - uid: 842 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 1668 + - uid: 843 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1668 + - uid: 844 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1668 + - uid: 845 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1668 + - uid: 846 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1668 + - uid: 847 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1668 + - uid: 848 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1668 + - uid: 849 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1668 + - uid: 850 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1668 + - uid: 851 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 1668 + - uid: 852 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 1668 + - uid: 853 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1668 + - uid: 854 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 1668 + - uid: 855 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 1668 + - uid: 856 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1668 + - uid: 857 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 1668 + - uid: 858 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1668 + - uid: 859 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1668 + - uid: 860 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1668 + - uid: 861 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1668 + - uid: 862 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1668 + - uid: 863 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1668 + - uid: 864 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1668 + - uid: 865 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1668 + - uid: 866 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 1668 + - uid: 867 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 1668 + - uid: 868 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1668 + - uid: 869 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1668 + - uid: 870 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1668 + - uid: 871 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1668 + - uid: 872 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1668 + - uid: 875 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1668 + - uid: 876 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1668 + - uid: 877 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1668 + - uid: 878 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1668 + - uid: 879 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1668 + - uid: 880 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1668 + - uid: 881 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1668 + - uid: 882 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1668 + - uid: 883 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1668 + - uid: 884 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1668 + - uid: 885 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1668 + - uid: 886 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1668 + - uid: 887 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1668 + - uid: 888 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1668 + - uid: 889 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1668 + - uid: 890 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1668 + - uid: 891 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1668 + - uid: 892 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1668 + - uid: 893 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1668 + - uid: 894 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1668 + - uid: 895 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1668 + - uid: 896 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1668 + - uid: 897 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1668 + - uid: 898 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1668 + - uid: 899 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1668 + - uid: 900 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1668 + - uid: 901 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1668 + - uid: 909 + components: + - type: Transform + pos: 21.5,25.5 + parent: 1668 + - uid: 939 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1668 + - uid: 1396 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 1668 + - uid: 1397 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 1668 + - uid: 1398 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 1668 + - uid: 1399 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 1668 + - uid: 1400 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 1668 + - uid: 1401 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 1668 + - uid: 1402 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 1668 + - uid: 1403 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 1668 + - uid: 1404 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 1668 + - uid: 1405 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 1668 + - uid: 1406 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 1668 + - uid: 1407 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 1668 + - uid: 1408 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 1668 + - uid: 1409 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 1668 + - uid: 1410 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 1668 + - uid: 1411 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 1668 + - uid: 1412 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1668 + - uid: 1413 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1668 + - uid: 1414 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 1668 + - uid: 1415 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1668 + - uid: 1416 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 1668 + - uid: 1417 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 1668 + - uid: 1418 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1668 + - uid: 1419 components: - type: Transform pos: 29.5,-16.5 parent: 1668 - - uid: 5876 + - uid: 1420 components: - type: Transform - pos: -14.5,-29.5 + pos: 28.5,-16.5 parent: 1668 - - uid: 5877 + - uid: 1421 components: - type: Transform - pos: -13.5,-29.5 + pos: 30.5,-16.5 parent: 1668 - - uid: 6239 + - uid: 1422 components: - type: Transform - pos: 3.5,-34.5 + pos: 31.5,-16.5 parent: 1668 - - uid: 6244 + - uid: 1423 components: - type: Transform - pos: 2.5,-34.5 + pos: 32.5,-16.5 parent: 1668 - - uid: 6245 + - uid: 1424 components: - type: Transform - pos: 4.5,-34.5 + pos: 33.5,-16.5 parent: 1668 - - uid: 6267 + - uid: 1425 components: - type: Transform - pos: -5.5,-34.5 + pos: 22.5,-16.5 parent: 1668 - - uid: 6268 + - uid: 1426 components: - type: Transform - pos: -4.5,-34.5 + pos: 21.5,-16.5 parent: 1668 - - uid: 6269 + - uid: 1427 components: - type: Transform - pos: -3.5,-34.5 + pos: 21.5,-17.5 parent: 1668 -- proto: Fireplace - entities: - - uid: 3393 + - uid: 1428 components: - type: Transform - pos: -23.5,12.5 + pos: 21.5,-18.5 + parent: 1668 + - uid: 1429 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1668 + - uid: 1430 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1668 + - uid: 1431 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1668 + - uid: 1432 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1668 + - uid: 1433 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 1668 + - uid: 1434 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1668 + - uid: 1435 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1668 + - uid: 1436 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 1668 + - uid: 1437 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1668 + - uid: 1438 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 1668 + - uid: 1439 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 1668 + - uid: 1440 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 1668 + - uid: 1441 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 1668 + - uid: 1442 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 1668 + - uid: 1443 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 1668 + - uid: 1444 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 1668 + - uid: 1445 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 1668 + - uid: 1446 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 1668 + - uid: 1447 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 1668 + - uid: 1448 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 1668 + - uid: 1449 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 1668 + - uid: 1450 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 1668 + - uid: 1451 + components: + - type: Transform + pos: 22.5,-19.5 parent: 1668 -- proto: Flash - entities: - uid: 1452 components: - type: Transform - pos: 10.538131,4.4341054 + pos: 23.5,-19.5 parent: 1668 - - uid: 3748 + - uid: 1453 components: - type: Transform - pos: -26.453917,8.594473 + pos: 14.5,-24.5 parent: 1668 - - uid: 4698 + - uid: 1454 components: - type: Transform - pos: 24.48021,-8.554767 + pos: 14.5,-23.5 parent: 1668 -- proto: FloorDrain - entities: - - uid: 3421 + - uid: 1455 components: - type: Transform - pos: -20.5,15.5 + pos: 14.5,-22.5 parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6622 + - uid: 1456 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 1668 + - uid: 1457 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1668 + - uid: 1458 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 1668 + - uid: 1459 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 1668 + - uid: 1460 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1668 + - uid: 1461 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1668 + - uid: 1462 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 1668 + - uid: 1463 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 1668 + - uid: 1464 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1668 + - uid: 1465 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 1668 + - uid: 1466 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1668 + - uid: 1467 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1668 + - uid: 1468 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 1668 + - uid: 1469 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 1668 + - uid: 1470 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1668 + - uid: 1471 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1668 + - uid: 1472 components: - type: Transform pos: 12.5,-16.5 parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6623 + - uid: 1473 components: - type: Transform - pos: -16.5,-33.5 + pos: 12.5,-17.5 parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6718 + - uid: 1474 components: - type: Transform - pos: -8.5,-22.5 + pos: 12.5,-18.5 parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6876 + - uid: 1475 components: - type: Transform - pos: 20.5,-25.5 + pos: 3.5,-24.5 parent: 1668 - - type: Fixtures - fixtures: {} -- proto: FoodBoxDonkpocketPizza + - uid: 1476 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1668 + - uid: 1477 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 1668 + - uid: 1478 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 1668 + - uid: 1479 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1668 + - uid: 1480 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 1668 + - uid: 1481 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 1668 + - uid: 1482 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 1668 + - uid: 1483 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 1668 + - uid: 1484 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 1668 + - uid: 1485 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 1668 + - uid: 1486 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 1668 + - uid: 1487 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 1668 + - uid: 1488 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 1668 + - uid: 1489 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1668 + - uid: 1490 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1668 + - uid: 1491 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1668 + - uid: 1492 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1668 + - uid: 1493 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1668 + - uid: 1494 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1668 + - uid: 1495 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1668 + - uid: 1496 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1668 + - uid: 1497 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1668 + - uid: 1498 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1668 + - uid: 1499 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1668 + - uid: 1500 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1668 + - uid: 1501 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1668 + - uid: 1502 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1668 + - uid: 1503 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1668 + - uid: 1504 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1668 + - uid: 1505 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 1668 + - uid: 1506 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 1668 + - uid: 1507 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 1668 + - uid: 1508 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 1668 + - uid: 1509 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 1668 + - uid: 1510 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1668 + - uid: 1511 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 1668 + - uid: 1512 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 1668 + - uid: 1513 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 1668 + - uid: 1514 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 1668 + - uid: 1515 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 1668 + - uid: 1516 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 1668 + - uid: 1517 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1668 + - uid: 1518 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 1668 + - uid: 1519 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 1668 + - uid: 1638 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1668 + - uid: 1639 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1668 + - uid: 1640 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1668 + - uid: 1641 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1668 + - uid: 1642 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1668 + - uid: 1643 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1668 + - uid: 1644 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1668 + - uid: 1645 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1668 + - uid: 1646 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1668 + - uid: 1647 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1668 + - uid: 1648 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1668 + - uid: 1649 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1668 + - uid: 1650 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1668 + - uid: 1651 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1668 + - uid: 1652 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1668 + - uid: 1653 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1668 + - uid: 1654 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1668 + - uid: 1655 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1668 + - uid: 1656 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1668 + - uid: 1657 + components: + - type: Transform + pos: 13.5,10.5 + parent: 1668 + - uid: 1658 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1668 + - uid: 1659 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1668 + - uid: 1660 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1668 + - uid: 1661 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1668 + - uid: 1662 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1668 + - uid: 1664 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1668 + - uid: 1665 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1668 + - uid: 1666 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1668 + - uid: 1667 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1668 + - uid: 1669 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1668 + - uid: 1670 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1668 + - uid: 1671 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1668 + - uid: 1672 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1668 + - uid: 1673 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1668 + - uid: 1674 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1668 + - uid: 1675 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1668 + - uid: 1676 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1668 + - uid: 1677 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1668 + - uid: 1678 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1668 + - uid: 1679 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1668 + - uid: 1680 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1668 + - uid: 1681 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1668 + - uid: 1682 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1668 + - uid: 1683 + components: + - type: Transform + pos: 19.5,10.5 + parent: 1668 + - uid: 1686 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1668 + - uid: 1687 + components: + - type: Transform + pos: 23.5,10.5 + parent: 1668 + - uid: 1688 + components: + - type: Transform + pos: 22.5,11.5 + parent: 1668 + - uid: 1689 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1668 + - uid: 1690 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1668 + - uid: 1691 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1668 + - uid: 1692 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1668 + - uid: 1693 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1668 + - uid: 1694 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1668 + - uid: 1695 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1668 + - uid: 1696 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1668 + - uid: 1697 + components: + - type: Transform + pos: 20.5,9.5 + parent: 1668 + - uid: 1698 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1668 + - uid: 1699 + components: + - type: Transform + pos: 22.5,9.5 + parent: 1668 + - uid: 1700 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1668 + - uid: 1701 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1668 + - uid: 1702 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1668 + - uid: 1703 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1668 + - uid: 1704 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1668 + - uid: 1705 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1668 + - uid: 1706 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1668 + - uid: 1707 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1668 + - uid: 1708 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1668 + - uid: 1711 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1668 + - uid: 1712 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1668 + - uid: 1713 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1668 + - uid: 1714 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1668 + - uid: 1715 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1668 + - uid: 1716 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1668 + - uid: 1717 + components: + - type: Transform + pos: 13.5,3.5 + parent: 1668 + - uid: 1718 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1668 + - uid: 1719 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1668 + - uid: 1720 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1668 + - uid: 1721 + components: + - type: Transform + pos: 16.5,3.5 + parent: 1668 + - uid: 1722 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1668 + - uid: 1723 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1668 + - uid: 1724 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1668 + - uid: 1725 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1668 + - uid: 1726 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1668 + - uid: 1727 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1668 + - uid: 2679 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1668 + - uid: 2866 + components: + - type: Transform + pos: -19.5,14.5 + parent: 1668 + - uid: 2867 + components: + - type: Transform + pos: -19.5,13.5 + parent: 1668 + - uid: 2868 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1668 + - uid: 2869 + components: + - type: Transform + pos: -18.5,12.5 + parent: 1668 + - uid: 2870 + components: + - type: Transform + pos: -18.5,11.5 + parent: 1668 + - uid: 2871 + components: + - type: Transform + pos: -18.5,10.5 + parent: 1668 + - uid: 2872 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1668 + - uid: 2873 + components: + - type: Transform + pos: -17.5,10.5 + parent: 1668 + - uid: 2874 + components: + - type: Transform + pos: -16.5,10.5 + parent: 1668 + - uid: 2875 + components: + - type: Transform + pos: -15.5,10.5 + parent: 1668 + - uid: 2876 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1668 + - uid: 2877 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1668 + - uid: 2878 + components: + - type: Transform + pos: -14.5,12.5 + parent: 1668 + - uid: 2879 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1668 + - uid: 2880 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1668 + - uid: 2881 + components: + - type: Transform + pos: -13.5,10.5 + parent: 1668 + - uid: 2882 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1668 + - uid: 2883 + components: + - type: Transform + pos: -19.5,10.5 + parent: 1668 + - uid: 2884 + components: + - type: Transform + pos: -20.5,10.5 + parent: 1668 + - uid: 2885 + components: + - type: Transform + pos: -21.5,10.5 + parent: 1668 + - uid: 2886 + components: + - type: Transform + pos: -22.5,10.5 + parent: 1668 + - uid: 2887 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1668 + - uid: 2888 + components: + - type: Transform + pos: -22.5,12.5 + parent: 1668 + - uid: 2889 + components: + - type: Transform + pos: -18.5,14.5 + parent: 1668 + - uid: 2890 + components: + - type: Transform + pos: -18.5,15.5 + parent: 1668 + - uid: 2944 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1668 + - uid: 2945 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1668 + - uid: 2946 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1668 + - uid: 2947 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1668 + - uid: 2948 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1668 + - uid: 2949 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1668 + - uid: 2950 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1668 + - uid: 2951 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1668 + - uid: 2952 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1668 + - uid: 2953 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1668 + - uid: 2954 + components: + - type: Transform + pos: -11.5,6.5 + parent: 1668 + - uid: 2955 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1668 + - uid: 2956 + components: + - type: Transform + pos: -12.5,6.5 + parent: 1668 + - uid: 2957 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1668 + - uid: 2958 + components: + - type: Transform + pos: -18.5,3.5 + parent: 1668 + - uid: 2959 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1668 + - uid: 2960 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1668 + - uid: 2961 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1668 + - uid: 2962 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1668 + - uid: 2963 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1668 + - uid: 2964 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1668 + - uid: 2965 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1668 + - uid: 2966 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1668 + - uid: 2967 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1668 + - uid: 2968 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1668 + - uid: 2969 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1668 + - uid: 2970 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1668 + - uid: 2971 + components: + - type: Transform + pos: -22.5,6.5 + parent: 1668 + - uid: 3042 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1668 + - uid: 3043 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1668 + - uid: 3044 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1668 + - uid: 3045 + components: + - type: Transform + pos: 13.5,19.5 + parent: 1668 + - uid: 3046 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1668 + - uid: 3047 + components: + - type: Transform + pos: 13.5,20.5 + parent: 1668 + - uid: 3048 + components: + - type: Transform + pos: 13.5,21.5 + parent: 1668 + - uid: 3049 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1668 + - uid: 3050 + components: + - type: Transform + pos: 13.5,23.5 + parent: 1668 + - uid: 3051 + components: + - type: Transform + pos: 13.5,24.5 + parent: 1668 + - uid: 3052 + components: + - type: Transform + pos: 13.5,25.5 + parent: 1668 + - uid: 3053 + components: + - type: Transform + pos: 13.5,26.5 + parent: 1668 + - uid: 3054 + components: + - type: Transform + pos: 13.5,27.5 + parent: 1668 + - uid: 3055 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1668 + - uid: 3056 + components: + - type: Transform + pos: 13.5,29.5 + parent: 1668 + - uid: 3057 + components: + - type: Transform + pos: 13.5,30.5 + parent: 1668 + - uid: 3058 + components: + - type: Transform + pos: 13.5,31.5 + parent: 1668 + - uid: 3059 + components: + - type: Transform + pos: 12.5,31.5 + parent: 1668 + - uid: 3060 + components: + - type: Transform + pos: 12.5,32.5 + parent: 1668 + - uid: 3061 + components: + - type: Transform + pos: 12.5,33.5 + parent: 1668 + - uid: 3062 + components: + - type: Transform + pos: 13.5,33.5 + parent: 1668 + - uid: 3063 + components: + - type: Transform + pos: 14.5,33.5 + parent: 1668 + - uid: 3064 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1668 + - uid: 3065 + components: + - type: Transform + pos: 14.5,31.5 + parent: 1668 + - uid: 3066 + components: + - type: Transform + pos: 14.5,27.5 + parent: 1668 + - uid: 3067 + components: + - type: Transform + pos: 15.5,27.5 + parent: 1668 + - uid: 3068 + components: + - type: Transform + pos: 12.5,27.5 + parent: 1668 + - uid: 3069 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1668 + - uid: 3070 + components: + - type: Transform + pos: 14.5,25.5 + parent: 1668 + - uid: 3071 + components: + - type: Transform + pos: 15.5,25.5 + parent: 1668 + - uid: 3072 + components: + - type: Transform + pos: 12.5,25.5 + parent: 1668 + - uid: 3073 + components: + - type: Transform + pos: 11.5,25.5 + parent: 1668 + - uid: 3074 + components: + - type: Transform + pos: 12.5,23.5 + parent: 1668 + - uid: 3075 + components: + - type: Transform + pos: 11.5,23.5 + parent: 1668 + - uid: 3076 + components: + - type: Transform + pos: 14.5,23.5 + parent: 1668 + - uid: 3077 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1668 + - uid: 3078 + components: + - type: Transform + pos: 15.5,19.5 + parent: 1668 + - uid: 3079 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1668 + - uid: 3081 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1668 + - uid: 3082 + components: + - type: Transform + pos: 21.5,19.5 + parent: 1668 + - uid: 3083 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1668 + - uid: 3084 + components: + - type: Transform + pos: 23.5,19.5 + parent: 1668 + - uid: 3085 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1668 + - uid: 3086 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1668 + - uid: 3087 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1668 + - uid: 3088 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1668 + - uid: 3089 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1668 + - uid: 3090 + components: + - type: Transform + pos: 29.5,19.5 + parent: 1668 + - uid: 3091 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1668 + - uid: 3092 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1668 + - uid: 3093 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1668 + - uid: 3094 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1668 + - uid: 3095 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1668 + - uid: 3096 + components: + - type: Transform + pos: 19.5,22.5 + parent: 1668 + - uid: 3097 + components: + - type: Transform + pos: 19.5,23.5 + parent: 1668 + - uid: 3098 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1668 + - uid: 3099 + components: + - type: Transform + pos: 19.5,25.5 + parent: 1668 + - uid: 3102 + components: + - type: Transform + pos: 21.5,26.5 + parent: 1668 + - uid: 3103 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1668 + - uid: 3104 + components: + - type: Transform + pos: 23.5,26.5 + parent: 1668 + - uid: 3105 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1668 + - uid: 3106 + components: + - type: Transform + pos: 25.5,26.5 + parent: 1668 + - uid: 3107 + components: + - type: Transform + pos: 26.5,26.5 + parent: 1668 + - uid: 3108 + components: + - type: Transform + pos: 27.5,26.5 + parent: 1668 + - uid: 3109 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1668 + - uid: 3110 + components: + - type: Transform + pos: 29.5,26.5 + parent: 1668 + - uid: 3111 + components: + - type: Transform + pos: 30.5,26.5 + parent: 1668 + - uid: 3112 + components: + - type: Transform + pos: 31.5,26.5 + parent: 1668 + - uid: 3113 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1668 + - uid: 3114 + components: + - type: Transform + pos: 26.5,24.5 + parent: 1668 + - uid: 3115 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1668 + - uid: 3116 + components: + - type: Transform + pos: 22.5,21.5 + parent: 1668 + - uid: 3117 + components: + - type: Transform + pos: 22.5,22.5 + parent: 1668 + - uid: 3118 + components: + - type: Transform + pos: 23.5,22.5 + parent: 1668 + - uid: 3119 + components: + - type: Transform + pos: 23.5,23.5 + parent: 1668 + - uid: 3120 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1668 + - uid: 3121 + components: + - type: Transform + pos: 30.5,21.5 + parent: 1668 + - uid: 3122 + components: + - type: Transform + pos: 30.5,22.5 + parent: 1668 + - uid: 3123 + components: + - type: Transform + pos: 29.5,22.5 + parent: 1668 + - uid: 3124 + components: + - type: Transform + pos: 29.5,23.5 + parent: 1668 + - uid: 3125 + components: + - type: Transform + pos: 31.5,21.5 + parent: 1668 + - uid: 3126 + components: + - type: Transform + pos: 32.5,21.5 + parent: 1668 + - uid: 3127 + components: + - type: Transform + pos: 33.5,21.5 + parent: 1668 + - uid: 3128 + components: + - type: Transform + pos: 34.5,21.5 + parent: 1668 + - uid: 3129 + components: + - type: Transform + pos: 34.5,23.5 + parent: 1668 + - uid: 3130 + components: + - type: Transform + pos: 34.5,24.5 + parent: 1668 + - uid: 3131 + components: + - type: Transform + pos: 33.5,24.5 + parent: 1668 + - uid: 3132 + components: + - type: Transform + pos: 32.5,24.5 + parent: 1668 + - uid: 3133 + components: + - type: Transform + pos: 31.5,24.5 + parent: 1668 + - uid: 3134 + components: + - type: Transform + pos: 31.5,25.5 + parent: 1668 + - uid: 3135 + components: + - type: Transform + pos: 34.5,25.5 + parent: 1668 + - uid: 3136 + components: + - type: Transform + pos: 34.5,26.5 + parent: 1668 + - uid: 3137 + components: + - type: Transform + pos: 34.5,22.5 + parent: 1668 + - uid: 3138 + components: + - type: Transform + pos: 34.5,20.5 + parent: 1668 + - uid: 3139 + components: + - type: Transform + pos: 34.5,19.5 + parent: 1668 + - uid: 3140 + components: + - type: Transform + pos: 34.5,18.5 + parent: 1668 + - uid: 3141 + components: + - type: Transform + pos: 34.5,17.5 + parent: 1668 + - uid: 3142 + components: + - type: Transform + pos: 34.5,16.5 + parent: 1668 + - uid: 3143 + components: + - type: Transform + pos: 34.5,15.5 + parent: 1668 + - uid: 3145 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1668 + - uid: 3146 + components: + - type: Transform + pos: 28.5,10.5 + parent: 1668 + - uid: 3147 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1668 + - uid: 3148 + components: + - type: Transform + pos: 30.5,10.5 + parent: 1668 + - uid: 3149 + components: + - type: Transform + pos: 31.5,10.5 + parent: 1668 + - uid: 3150 + components: + - type: Transform + pos: 32.5,10.5 + parent: 1668 + - uid: 3151 + components: + - type: Transform + pos: 33.5,10.5 + parent: 1668 + - uid: 3152 + components: + - type: Transform + pos: 27.5,10.5 + parent: 1668 + - uid: 3153 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1668 + - uid: 3154 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1668 + - uid: 3155 + components: + - type: Transform + pos: 33.5,11.5 + parent: 1668 + - uid: 3156 + components: + - type: Transform + pos: 29.5,11.5 + parent: 1668 + - uid: 3223 + components: + - type: Transform + pos: -11.5,14.5 + parent: 1668 + - uid: 3227 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1668 + - uid: 3228 + components: + - type: Transform + pos: -11.5,16.5 + parent: 1668 + - uid: 3249 + components: + - type: Transform + pos: -13.5,16.5 + parent: 1668 + - uid: 3250 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1668 + - uid: 3310 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1668 + - uid: 3311 + components: + - type: Transform + pos: -8.5,15.5 + parent: 1668 + - uid: 3312 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1668 + - uid: 3313 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1668 + - uid: 3314 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1668 + - uid: 3315 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1668 + - uid: 3316 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1668 + - uid: 3317 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1668 + - uid: 3318 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1668 + - uid: 3319 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1668 + - uid: 3320 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1668 + - uid: 3321 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1668 + - uid: 3322 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1668 + - uid: 3323 + components: + - type: Transform + pos: -8.5,16.5 + parent: 1668 + - uid: 3324 + components: + - type: Transform + pos: -8.5,17.5 + parent: 1668 + - uid: 3325 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1668 + - uid: 3326 + components: + - type: Transform + pos: -8.5,19.5 + parent: 1668 + - uid: 3327 + components: + - type: Transform + pos: -8.5,20.5 + parent: 1668 + - uid: 3328 + components: + - type: Transform + pos: -8.5,21.5 + parent: 1668 + - uid: 3329 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1668 + - uid: 3330 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1668 + - uid: 3331 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1668 + - uid: 3332 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1668 + - uid: 3333 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1668 + - uid: 3334 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1668 + - uid: 3335 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1668 + - uid: 3336 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1668 + - uid: 3337 + components: + - type: Transform + pos: -4.5,22.5 + parent: 1668 + - uid: 3338 + components: + - type: Transform + pos: -5.5,22.5 + parent: 1668 + - uid: 3339 + components: + - type: Transform + pos: -6.5,22.5 + parent: 1668 + - uid: 3340 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1668 + - uid: 3341 + components: + - type: Transform + pos: -5.5,23.5 + parent: 1668 + - uid: 3342 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1668 + - uid: 3343 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1668 + - uid: 3344 + components: + - type: Transform + pos: -4.5,24.5 + parent: 1668 + - uid: 3345 + components: + - type: Transform + pos: -9.5,22.5 + parent: 1668 + - uid: 3346 + components: + - type: Transform + pos: -10.5,22.5 + parent: 1668 + - uid: 3361 + components: + - type: Transform + pos: -11.5,22.5 + parent: 1668 + - uid: 3362 + components: + - type: Transform + pos: -11.5,23.5 + parent: 1668 + - uid: 3363 + components: + - type: Transform + pos: -11.5,24.5 + parent: 1668 + - uid: 3364 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1668 + - uid: 3365 + components: + - type: Transform + pos: -12.5,24.5 + parent: 1668 + - uid: 3539 + components: + - type: Transform + pos: -19.5,18.5 + parent: 1668 + - uid: 3540 + components: + - type: Transform + pos: -19.5,19.5 + parent: 1668 + - uid: 3541 + components: + - type: Transform + pos: -19.5,20.5 + parent: 1668 + - uid: 3542 + components: + - type: Transform + pos: -20.5,20.5 + parent: 1668 + - uid: 3543 + components: + - type: Transform + pos: -21.5,20.5 + parent: 1668 + - uid: 3544 + components: + - type: Transform + pos: -22.5,20.5 + parent: 1668 + - uid: 3545 + components: + - type: Transform + pos: -23.5,20.5 + parent: 1668 + - uid: 3546 + components: + - type: Transform + pos: -24.5,20.5 + parent: 1668 + - uid: 3547 + components: + - type: Transform + pos: -25.5,20.5 + parent: 1668 + - uid: 3548 + components: + - type: Transform + pos: -26.5,20.5 + parent: 1668 + - uid: 3549 + components: + - type: Transform + pos: -28.5,20.5 + parent: 1668 + - uid: 3550 + components: + - type: Transform + pos: -27.5,20.5 + parent: 1668 + - uid: 3551 + components: + - type: Transform + pos: -29.5,20.5 + parent: 1668 + - uid: 3552 + components: + - type: Transform + pos: -30.5,20.5 + parent: 1668 + - uid: 3553 + components: + - type: Transform + pos: -26.5,21.5 + parent: 1668 + - uid: 3554 + components: + - type: Transform + pos: -26.5,22.5 + parent: 1668 + - uid: 3555 + components: + - type: Transform + pos: -26.5,23.5 + parent: 1668 + - uid: 3556 + components: + - type: Transform + pos: -26.5,24.5 + parent: 1668 + - uid: 3557 + components: + - type: Transform + pos: -26.5,25.5 + parent: 1668 + - uid: 3558 + components: + - type: Transform + pos: -26.5,26.5 + parent: 1668 + - uid: 3559 + components: + - type: Transform + pos: -27.5,26.5 + parent: 1668 + - uid: 3560 + components: + - type: Transform + pos: -28.5,26.5 + parent: 1668 + - uid: 3561 + components: + - type: Transform + pos: -29.5,26.5 + parent: 1668 + - uid: 3562 + components: + - type: Transform + pos: -30.5,26.5 + parent: 1668 + - uid: 3563 + components: + - type: Transform + pos: -19.5,21.5 + parent: 1668 + - uid: 3564 + components: + - type: Transform + pos: -19.5,22.5 + parent: 1668 + - uid: 3565 + components: + - type: Transform + pos: -19.5,23.5 + parent: 1668 + - uid: 3566 + components: + - type: Transform + pos: -19.5,24.5 + parent: 1668 + - uid: 3567 + components: + - type: Transform + pos: -19.5,25.5 + parent: 1668 + - uid: 3568 + components: + - type: Transform + pos: -19.5,26.5 + parent: 1668 + - uid: 3569 + components: + - type: Transform + pos: -18.5,26.5 + parent: 1668 + - uid: 3570 + components: + - type: Transform + pos: -17.5,26.5 + parent: 1668 + - uid: 3571 + components: + - type: Transform + pos: -16.5,26.5 + parent: 1668 + - uid: 3572 + components: + - type: Transform + pos: -18.5,24.5 + parent: 1668 + - uid: 3573 + components: + - type: Transform + pos: -17.5,24.5 + parent: 1668 + - uid: 3574 + components: + - type: Transform + pos: -16.5,24.5 + parent: 1668 + - uid: 3575 + components: + - type: Transform + pos: -20.5,26.5 + parent: 1668 + - uid: 3576 + components: + - type: Transform + pos: -21.5,26.5 + parent: 1668 + - uid: 3577 + components: + - type: Transform + pos: -22.5,26.5 + parent: 1668 + - uid: 3578 + components: + - type: Transform + pos: -23.5,26.5 + parent: 1668 + - uid: 3579 + components: + - type: Transform + pos: -24.5,26.5 + parent: 1668 + - uid: 3580 + components: + - type: Transform + pos: -25.5,26.5 + parent: 1668 + - uid: 3581 + components: + - type: Transform + pos: -20.5,23.5 + parent: 1668 + - uid: 3582 + components: + - type: Transform + pos: -21.5,23.5 + parent: 1668 + - uid: 3583 + components: + - type: Transform + pos: -22.5,23.5 + parent: 1668 + - uid: 3584 + components: + - type: Transform + pos: -23.5,23.5 + parent: 1668 + - uid: 3585 + components: + - type: Transform + pos: -14.5,16.5 + parent: 1668 + - uid: 3586 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1668 + - uid: 3587 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1668 + - uid: 3588 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1668 + - uid: 3589 + components: + - type: Transform + pos: -15.5,19.5 + parent: 1668 + - uid: 3590 + components: + - type: Transform + pos: -15.5,20.5 + parent: 1668 + - uid: 3591 + components: + - type: Transform + pos: -15.5,21.5 + parent: 1668 + - uid: 3592 + components: + - type: Transform + pos: -14.5,21.5 + parent: 1668 + - uid: 3593 + components: + - type: Transform + pos: -13.5,21.5 + parent: 1668 + - uid: 3594 + components: + - type: Transform + pos: -12.5,21.5 + parent: 1668 + - uid: 3595 + components: + - type: Transform + pos: -11.5,21.5 + parent: 1668 + - uid: 3596 + components: + - type: Transform + pos: -9.5,19.5 + parent: 1668 + - uid: 3597 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1668 + - uid: 3621 + components: + - type: Transform + pos: -2.5,28.5 + parent: 1668 + - uid: 3672 + components: + - type: Transform + pos: -1.5,28.5 + parent: 1668 + - uid: 3673 + components: + - type: Transform + pos: -0.5,28.5 + parent: 1668 + - uid: 3674 + components: + - type: Transform + pos: 0.5,28.5 + parent: 1668 + - uid: 3675 + components: + - type: Transform + pos: 1.5,28.5 + parent: 1668 + - uid: 3676 + components: + - type: Transform + pos: 2.5,28.5 + parent: 1668 + - uid: 3677 + components: + - type: Transform + pos: 3.5,28.5 + parent: 1668 + - uid: 3678 + components: + - type: Transform + pos: 3.5,29.5 + parent: 1668 + - uid: 3679 + components: + - type: Transform + pos: 3.5,30.5 + parent: 1668 + - uid: 3680 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1668 + - uid: 3681 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1668 + - uid: 3682 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1668 + - uid: 3683 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1668 + - uid: 3684 + components: + - type: Transform + pos: 4.5,31.5 + parent: 1668 + - uid: 3685 + components: + - type: Transform + pos: 5.5,31.5 + parent: 1668 + - uid: 3686 + components: + - type: Transform + pos: 6.5,31.5 + parent: 1668 + - uid: 3687 + components: + - type: Transform + pos: 5.5,32.5 + parent: 1668 + - uid: 3688 + components: + - type: Transform + pos: 5.5,33.5 + parent: 1668 + - uid: 3689 + components: + - type: Transform + pos: 5.5,34.5 + parent: 1668 + - uid: 3690 + components: + - type: Transform + pos: 5.5,35.5 + parent: 1668 + - uid: 3691 + components: + - type: Transform + pos: 1.5,32.5 + parent: 1668 + - uid: 3692 + components: + - type: Transform + pos: 1.5,33.5 + parent: 1668 + - uid: 3693 + components: + - type: Transform + pos: 1.5,34.5 + parent: 1668 + - uid: 3694 + components: + - type: Transform + pos: 1.5,35.5 + parent: 1668 + - uid: 3695 + components: + - type: Transform + pos: 0.5,35.5 + parent: 1668 + - uid: 3696 + components: + - type: Transform + pos: 6.5,35.5 + parent: 1668 + - uid: 3697 + components: + - type: Transform + pos: 3.5,27.5 + parent: 1668 + - uid: 3698 + components: + - type: Transform + pos: 3.5,26.5 + parent: 1668 + - uid: 3699 + components: + - type: Transform + pos: 3.5,25.5 + parent: 1668 + - uid: 3700 + components: + - type: Transform + pos: 3.5,23.5 + parent: 1668 + - uid: 3701 + components: + - type: Transform + pos: 3.5,24.5 + parent: 1668 + - uid: 3702 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1668 + - uid: 3703 + components: + - type: Transform + pos: 5.5,24.5 + parent: 1668 + - uid: 3704 + components: + - type: Transform + pos: 6.5,24.5 + parent: 1668 + - uid: 3705 + components: + - type: Transform + pos: 7.5,24.5 + parent: 1668 + - uid: 3706 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1668 + - uid: 3707 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1668 + - uid: 3708 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1668 + - uid: 3709 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1668 + - uid: 3710 + components: + - type: Transform + pos: 7.5,23.5 + parent: 1668 + - uid: 3711 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1668 + - uid: 3712 + components: + - type: Transform + pos: 5.5,28.5 + parent: 1668 + - uid: 3713 + components: + - type: Transform + pos: 6.5,28.5 + parent: 1668 + - uid: 3714 + components: + - type: Transform + pos: 7.5,28.5 + parent: 1668 + - uid: 3715 + components: + - type: Transform + pos: 2.5,24.5 + parent: 1668 + - uid: 3716 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1668 + - uid: 3717 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1668 + - uid: 3718 + components: + - type: Transform + pos: -0.5,24.5 + parent: 1668 + - uid: 3719 + components: + - type: Transform + pos: -0.5,25.5 + parent: 1668 + - uid: 3720 + components: + - type: Transform + pos: 7.5,25.5 + parent: 1668 + - uid: 3893 + components: + - type: Transform + pos: -1.5,29.5 + parent: 1668 + - uid: 3894 + components: + - type: Transform + pos: -1.5,30.5 + parent: 1668 + - uid: 3895 + components: + - type: Transform + pos: -1.5,31.5 + parent: 1668 + - uid: 3896 + components: + - type: Transform + pos: -0.5,31.5 + parent: 1668 + - uid: 3897 + components: + - type: Transform + pos: -2.5,32.5 + parent: 1668 + - uid: 3898 + components: + - type: Transform + pos: -1.5,32.5 + parent: 1668 + - uid: 3918 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1668 + - uid: 3923 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1668 + - uid: 3924 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1668 + - uid: 3925 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1668 + - uid: 3926 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1668 + - uid: 3927 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1668 + - uid: 3928 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1668 + - uid: 3929 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1668 + - uid: 3930 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1668 + - uid: 3931 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1668 + - uid: 3932 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1668 + - uid: 3933 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1668 + - uid: 3934 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1668 + - uid: 3935 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1668 + - uid: 3936 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1668 + - uid: 3937 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1668 + - uid: 3938 + components: + - type: Transform + pos: -0.5,20.5 + parent: 1668 + - uid: 3939 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1668 + - uid: 3941 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1668 + - uid: 3943 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1668 + - uid: 3945 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1668 + - uid: 3946 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1668 + - uid: 3948 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1668 + - uid: 3949 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1668 + - uid: 3950 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1668 + - uid: 3951 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1668 + - uid: 3952 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1668 + - uid: 3953 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1668 + - uid: 3954 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1668 + - uid: 3955 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1668 + - uid: 3956 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1668 + - uid: 3957 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1668 + - uid: 3958 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1668 + - uid: 3959 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1668 + - uid: 3960 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1668 + - uid: 3961 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1668 + - uid: 3962 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1668 + - uid: 3963 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1668 + - uid: 3964 + components: + - type: Transform + pos: 26.5,17.5 + parent: 1668 + - uid: 3965 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1668 + - uid: 3966 + components: + - type: Transform + pos: 26.5,15.5 + parent: 1668 + - uid: 3967 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1668 + - uid: 3968 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1668 + - uid: 3969 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1668 + - uid: 3970 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1668 + - uid: 3971 + components: + - type: Transform + pos: 30.5,15.5 + parent: 1668 + - uid: 3972 + components: + - type: Transform + pos: 31.5,15.5 + parent: 1668 + - uid: 3973 + components: + - type: Transform + pos: 32.5,15.5 + parent: 1668 + - uid: 3974 + components: + - type: Transform + pos: 33.5,15.5 + parent: 1668 + - uid: 3975 + components: + - type: Transform + pos: 25.5,15.5 + parent: 1668 + - uid: 3976 + components: + - type: Transform + pos: 24.5,15.5 + parent: 1668 + - uid: 3977 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1668 + - uid: 3978 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1668 + - uid: 3979 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1668 + - uid: 3980 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1668 + - uid: 3981 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1668 + - uid: 3982 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1668 + - uid: 3983 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1668 + - uid: 3984 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1668 + - uid: 3985 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1668 + - uid: 3986 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1668 + - uid: 3987 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1668 + - uid: 3988 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1668 + - uid: 5165 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 1668 + - uid: 5166 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 1668 + - uid: 5167 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 1668 + - uid: 5168 + components: + - type: Transform + pos: -3.5,-47.5 + parent: 1668 + - uid: 5169 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 1668 + - uid: 5170 + components: + - type: Transform + pos: -2.5,-47.5 + parent: 1668 + - uid: 5171 + components: + - type: Transform + pos: -1.5,-47.5 + parent: 1668 + - uid: 5172 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 1668 + - uid: 5173 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 1668 + - uid: 5174 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 1668 + - uid: 5175 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 1668 + - uid: 5176 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 1668 + - uid: 5177 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 1668 + - uid: 5178 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 1668 + - uid: 5179 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 1668 + - uid: 5180 + components: + - type: Transform + pos: -5.5,-47.5 + parent: 1668 + - uid: 5181 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 1668 + - uid: 5182 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 1668 + - uid: 5183 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 1668 + - uid: 5184 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 1668 + - uid: 5185 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 1668 + - uid: 5186 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 1668 + - uid: 5187 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 1668 + - uid: 5188 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 1668 + - uid: 5189 + components: + - type: Transform + pos: 15.5,-48.5 + parent: 1668 + - uid: 5190 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 1668 + - uid: 5191 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 1668 + - uid: 5192 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 1668 + - uid: 5193 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 1668 + - uid: 5194 + components: + - type: Transform + pos: 20.5,-48.5 + parent: 1668 + - uid: 5195 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 1668 + - uid: 5196 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 1668 + - uid: 5197 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 1668 + - uid: 5198 + components: + - type: Transform + pos: 11.5,-48.5 + parent: 1668 + - uid: 5199 + components: + - type: Transform + pos: 10.5,-48.5 + parent: 1668 + - uid: 5200 + components: + - type: Transform + pos: 9.5,-48.5 + parent: 1668 + - uid: 5201 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 1668 + - uid: 5202 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 1668 + - uid: 5203 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 1668 + - uid: 5204 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 1668 + - uid: 5205 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 1668 + - uid: 5206 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 1668 + - uid: 5207 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 1668 + - uid: 5208 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 1668 + - uid: 5209 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 1668 + - uid: 5210 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 1668 + - uid: 5211 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 1668 + - uid: 5212 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 1668 + - uid: 5213 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 1668 + - uid: 5214 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 1668 + - uid: 5215 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 1668 + - uid: 5216 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 1668 + - uid: 5217 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 1668 + - uid: 5218 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 1668 + - uid: 5219 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 1668 + - uid: 5220 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 1668 + - uid: 5221 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 1668 + - uid: 5222 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 1668 + - uid: 5223 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 1668 + - uid: 5224 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 1668 + - uid: 5225 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 1668 + - uid: 5226 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 1668 + - uid: 5227 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 1668 + - uid: 5228 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 1668 + - uid: 5229 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 1668 + - uid: 5230 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 1668 + - uid: 5231 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 1668 + - uid: 5232 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 1668 + - uid: 5233 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 1668 + - uid: 5234 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 1668 + - uid: 5235 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 1668 + - uid: 5236 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 1668 + - uid: 5237 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 1668 + - uid: 5238 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 1668 + - uid: 5239 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1668 + - uid: 5240 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 1668 + - uid: 5241 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 1668 + - uid: 5242 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 1668 + - uid: 5243 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 1668 + - uid: 5244 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 1668 + - uid: 5245 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 1668 + - uid: 5246 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 1668 + - uid: 5247 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 1668 + - uid: 5248 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 1668 + - uid: 5249 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 1668 + - uid: 5250 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 1668 + - uid: 5251 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 1668 + - uid: 5252 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 1668 + - uid: 5253 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 1668 + - uid: 5254 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 1668 + - uid: 5255 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 1668 + - uid: 5256 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 1668 + - uid: 5257 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1668 + - uid: 5258 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 1668 + - uid: 5259 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 1668 + - uid: 5260 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 1668 + - uid: 5261 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1668 + - uid: 5262 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 1668 + - uid: 5263 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 1668 + - uid: 5264 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 1668 + - uid: 5265 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 1668 + - uid: 5266 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1668 + - uid: 5267 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1668 + - uid: 5268 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 1668 + - uid: 5269 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 1668 + - uid: 5270 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 1668 + - uid: 5271 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 1668 + - uid: 5272 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 1668 + - uid: 5273 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 1668 + - uid: 5274 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 1668 + - uid: 5275 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 1668 + - uid: 5323 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 1668 + - uid: 5324 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 1668 + - uid: 5325 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 1668 + - uid: 5326 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 1668 + - uid: 5327 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 1668 + - uid: 5328 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 1668 + - uid: 5329 + components: + - type: Transform + pos: 11.5,-43.5 + parent: 1668 + - uid: 5330 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 1668 + - uid: 5331 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 1668 + - uid: 5332 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 1668 + - uid: 5333 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 1668 + - uid: 5334 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 1668 + - uid: 5335 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 1668 + - uid: 5336 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 1668 + - uid: 5337 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 1668 + - uid: 5338 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 1668 + - uid: 5339 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 1668 + - uid: 5340 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 1668 + - uid: 5341 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 1668 + - uid: 5342 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 1668 + - uid: 5343 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 1668 + - uid: 5344 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 1668 + - uid: 5345 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 1668 + - uid: 5346 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 1668 + - uid: 5347 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 1668 + - uid: 5348 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 1668 + - uid: 5349 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 1668 + - uid: 5350 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 1668 + - uid: 5351 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 1668 + - uid: 5352 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 1668 + - uid: 5353 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 1668 + - uid: 5354 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 1668 + - uid: 5355 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 1668 + - uid: 5356 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 1668 + - uid: 5357 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 1668 + - uid: 5358 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 1668 + - uid: 5359 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 1668 + - uid: 5360 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 1668 + - uid: 5361 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 1668 + - uid: 5362 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 1668 + - uid: 5363 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 1668 + - uid: 5364 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 1668 + - uid: 5365 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 1668 + - uid: 5366 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 1668 + - uid: 5367 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 1668 + - uid: 5368 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 1668 + - uid: 5369 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 1668 + - uid: 5370 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 1668 + - uid: 5371 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 1668 + - uid: 5372 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 1668 + - uid: 5373 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 1668 + - uid: 5374 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 1668 + - uid: 5375 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 1668 + - uid: 5376 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 1668 + - uid: 5377 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 1668 + - uid: 5378 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 1668 + - uid: 5379 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 1668 + - uid: 5380 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 1668 + - uid: 5381 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 1668 + - uid: 5382 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 1668 + - uid: 5383 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 1668 + - uid: 5384 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 1668 + - uid: 5385 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 1668 + - uid: 5387 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 1668 + - uid: 5388 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 1668 + - uid: 5389 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 1668 + - uid: 5390 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 1668 + - uid: 5392 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 1668 + - uid: 5393 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 1668 + - uid: 5394 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 1668 + - uid: 5395 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 1668 + - uid: 5396 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 1668 + - uid: 5398 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1668 + - uid: 5399 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 1668 + - uid: 5400 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 1668 + - uid: 5401 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1668 + - uid: 5402 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 1668 + - uid: 5403 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 1668 + - uid: 5404 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 1668 + - uid: 5405 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 1668 + - uid: 5406 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 1668 + - uid: 5407 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 1668 + - uid: 5408 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 1668 + - uid: 5409 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 1668 + - uid: 5410 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 1668 + - uid: 5411 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 1668 + - uid: 5412 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 1668 + - uid: 5413 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1668 + - uid: 5414 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 1668 + - uid: 5415 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 1668 + - uid: 5416 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1668 + - uid: 5417 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 1668 + - uid: 5418 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 1668 + - uid: 5419 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 1668 + - uid: 5420 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 1668 + - uid: 5421 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 1668 + - uid: 5422 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 1668 + - uid: 5423 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 1668 + - uid: 5424 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 1668 + - uid: 5425 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 1668 + - uid: 5426 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 1668 + - uid: 5427 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 1668 + - uid: 5428 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 1668 + - uid: 5429 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 1668 + - uid: 5430 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 1668 + - uid: 5431 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 1668 + - uid: 5432 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 1668 + - uid: 5433 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 1668 + - uid: 5434 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 1668 + - uid: 5435 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 1668 + - uid: 5436 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 1668 + - uid: 5437 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 1668 + - uid: 5438 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 1668 + - uid: 5439 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 1668 + - uid: 5440 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 1668 + - uid: 5441 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 1668 + - uid: 5442 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 1668 + - uid: 5443 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 1668 + - uid: 5444 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 1668 + - uid: 5445 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 1668 + - uid: 5446 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 1668 + - uid: 5447 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 1668 + - uid: 5448 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 1668 + - uid: 5449 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 1668 + - uid: 5670 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 1668 + - uid: 5671 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 1668 + - uid: 5672 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 1668 + - uid: 5673 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 1668 + - uid: 5674 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 1668 + - uid: 5675 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 1668 + - uid: 5676 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 1668 + - uid: 5677 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 1668 + - uid: 5678 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 1668 + - uid: 5679 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 1668 + - uid: 5680 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 1668 + - uid: 5681 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 1668 + - uid: 5682 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 1668 + - uid: 5683 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 1668 + - uid: 5684 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 1668 + - uid: 5685 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 1668 + - uid: 5686 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 1668 + - uid: 5687 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 1668 + - uid: 5688 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 1668 + - uid: 5689 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 1668 + - uid: 5690 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 1668 + - uid: 5691 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 1668 + - uid: 5692 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 1668 + - uid: 5693 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 1668 + - uid: 5694 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 1668 + - uid: 5695 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 1668 + - uid: 5696 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 1668 + - uid: 5697 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 1668 + - uid: 5698 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 1668 + - uid: 5699 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 1668 + - uid: 5700 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 1668 + - uid: 5701 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 1668 + - uid: 5702 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 1668 + - uid: 5703 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 1668 + - uid: 5704 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 1668 + - uid: 5705 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 1668 + - uid: 5706 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 1668 + - uid: 5707 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 1668 + - uid: 5708 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 1668 + - uid: 5709 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 1668 + - uid: 5710 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 1668 + - uid: 5711 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 1668 + - uid: 5712 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1668 + - uid: 5713 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1668 + - uid: 5714 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1668 + - uid: 5715 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1668 + - uid: 5716 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 1668 + - uid: 5717 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 1668 + - uid: 5882 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 1668 + - uid: 5883 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 1668 + - uid: 5884 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 1668 + - uid: 5885 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 1668 + - uid: 5886 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 1668 + - uid: 5887 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 1668 + - uid: 5896 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 1668 + - uid: 5897 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 1668 + - uid: 6132 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 1668 + - uid: 6133 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 1668 + - uid: 6134 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 1668 + - uid: 6498 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 1668 + - uid: 6499 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 1668 + - uid: 6500 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 1668 + - uid: 6501 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 1668 + - uid: 6502 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 1668 + - uid: 6503 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 1668 + - uid: 6504 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 1668 + - uid: 6505 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 1668 + - uid: 6506 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 1668 + - uid: 6507 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 1668 + - uid: 6508 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 1668 + - uid: 6509 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 1668 + - uid: 6510 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 1668 + - uid: 6511 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 1668 + - uid: 6512 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 1668 + - uid: 6513 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 1668 + - uid: 6514 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 1668 + - uid: 6515 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 1668 + - uid: 6516 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 1668 + - uid: 6517 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1668 + - uid: 6518 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 1668 + - uid: 6519 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 1668 + - uid: 6520 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 1668 + - uid: 6521 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 1668 + - uid: 6522 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 1668 + - uid: 6523 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 1668 + - uid: 6524 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 1668 + - uid: 6525 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 1668 + - uid: 6526 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 1668 + - uid: 6527 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 1668 + - uid: 6528 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 1668 + - uid: 6529 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 1668 + - uid: 6530 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 1668 + - uid: 6531 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1668 + - uid: 6532 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 1668 + - uid: 6533 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 1668 + - uid: 6534 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 1668 + - uid: 6535 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 1668 + - uid: 6536 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 1668 + - uid: 6537 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 1668 + - uid: 6538 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 1668 + - uid: 6539 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 1668 + - uid: 6540 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 1668 + - uid: 6541 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 1668 + - uid: 6542 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 1668 + - uid: 6543 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 1668 + - uid: 6544 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 1668 + - uid: 6545 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 1668 + - uid: 6546 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 1668 + - uid: 6547 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 1668 + - uid: 6548 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 1668 + - uid: 6549 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 1668 + - uid: 6550 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 1668 + - uid: 6551 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 1668 + - uid: 6552 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 1668 + - uid: 6553 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 1668 + - uid: 6554 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 1668 + - uid: 6555 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 1668 + - uid: 6556 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 1668 + - uid: 6557 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1668 + - uid: 6558 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 1668 + - uid: 6559 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 1668 + - uid: 6560 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1668 + - uid: 6561 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 1668 + - uid: 6562 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1668 + - uid: 6563 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 1668 + - uid: 6564 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 1668 + - uid: 6565 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 1668 + - uid: 6566 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 1668 + - uid: 6567 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 1668 + - uid: 6568 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 1668 + - uid: 6569 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 1668 + - uid: 6570 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 1668 + - uid: 6571 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 1668 + - uid: 6572 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1668 + - uid: 6573 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1668 + - uid: 6574 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 1668 + - uid: 6651 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 1668 + - uid: 6652 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 1668 + - uid: 6653 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 1668 + - uid: 6654 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 1668 + - uid: 6655 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 1668 + - uid: 6656 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 1668 + - uid: 6657 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 1668 + - uid: 6658 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 1668 + - uid: 6659 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 1668 + - uid: 6660 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 1668 + - uid: 6661 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 1668 + - uid: 6662 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 1668 + - uid: 6663 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 1668 + - uid: 6664 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 1668 + - uid: 6665 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 1668 + - uid: 6666 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 1668 + - uid: 6667 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 1668 + - uid: 6668 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 1668 + - uid: 6669 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 1668 + - uid: 6670 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 1668 + - uid: 7008 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 1668 + - uid: 7009 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 1668 + - uid: 7010 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 1668 + - uid: 7011 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 1668 + - uid: 7012 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 1668 + - uid: 7013 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 1668 + - uid: 7014 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 1668 + - uid: 7015 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 1668 + - uid: 7016 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 1668 + - uid: 7017 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 1668 + - uid: 7018 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 1668 + - uid: 7019 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 1668 + - uid: 7020 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 1668 + - uid: 7021 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 1668 + - uid: 7022 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 1668 + - uid: 7023 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 1668 + - uid: 7024 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 1668 + - uid: 7025 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 1668 + - uid: 7026 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 1668 + - uid: 7027 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 1668 + - uid: 7028 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 1668 + - uid: 7029 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 1668 + - uid: 7030 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 1668 + - uid: 7031 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 1668 + - uid: 7032 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 1668 + - uid: 7033 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 1668 + - uid: 7034 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 1668 + - uid: 7035 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 1668 + - uid: 7036 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 1668 + - uid: 7037 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 1668 + - uid: 7038 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 1668 + - uid: 7039 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 1668 + - uid: 7040 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 1668 + - uid: 7041 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 1668 + - uid: 7042 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 1668 + - uid: 7043 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 1668 + - uid: 7044 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 1668 + - uid: 7045 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 1668 + - uid: 7046 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 1668 + - uid: 7047 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 1668 + - uid: 7048 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 1668 + - uid: 7049 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 1668 + - uid: 7054 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1668 + - uid: 7055 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1668 + - uid: 7056 + components: + - type: Transform + pos: -29.5,0.5 + parent: 1668 + - uid: 7057 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 1668 + - uid: 7058 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1668 + - uid: 7059 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1668 + - uid: 7060 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1668 + - uid: 7061 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1668 + - uid: 7062 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1668 + - uid: 7063 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1668 + - uid: 7064 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 1668 + - uid: 7065 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1668 + - uid: 7066 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1668 + - uid: 7067 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1668 + - uid: 7068 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1668 + - uid: 7069 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1668 + - uid: 7070 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1668 + - uid: 7071 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1668 + - uid: 7072 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1668 + - uid: 7073 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1668 + - uid: 7074 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1668 + - uid: 7075 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1668 + - uid: 7076 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1668 + - uid: 7077 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1668 + - uid: 7078 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1668 + - uid: 7079 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1668 + - uid: 7080 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1668 + - uid: 7081 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 1668 + - uid: 7082 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 1668 + - uid: 7083 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 1668 + - uid: 7084 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 1668 + - uid: 7085 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 1668 + - uid: 7086 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 1668 + - uid: 7087 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 1668 + - uid: 7088 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 1668 + - uid: 7089 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 1668 + - uid: 7090 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 1668 + - uid: 7091 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 1668 + - uid: 7092 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 1668 + - uid: 7093 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 1668 + - uid: 7094 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 1668 + - uid: 7174 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 1668 + - uid: 7175 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 1668 + - uid: 7176 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 1668 + - uid: 7177 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 1668 + - uid: 7178 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 1668 + - uid: 7179 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 1668 + - uid: 7180 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 1668 + - uid: 7181 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 1668 + - uid: 7210 + components: + - type: Transform + pos: -51.5,2.5 + parent: 1668 + - uid: 7211 + components: + - type: Transform + pos: -51.5,3.5 + parent: 1668 + - uid: 7212 + components: + - type: Transform + pos: -51.5,4.5 + parent: 1668 + - uid: 7213 + components: + - type: Transform + pos: -51.5,5.5 + parent: 1668 + - uid: 7214 + components: + - type: Transform + pos: -50.5,5.5 + parent: 1668 + - uid: 7215 + components: + - type: Transform + pos: -49.5,5.5 + parent: 1668 + - uid: 7216 + components: + - type: Transform + pos: -48.5,5.5 + parent: 1668 + - uid: 7217 + components: + - type: Transform + pos: -48.5,4.5 + parent: 1668 + - uid: 7218 + components: + - type: Transform + pos: -45.5,2.5 + parent: 1668 + - uid: 7219 + components: + - type: Transform + pos: -45.5,3.5 + parent: 1668 + - uid: 7220 + components: + - type: Transform + pos: -45.5,4.5 + parent: 1668 + - uid: 7221 + components: + - type: Transform + pos: -45.5,5.5 + parent: 1668 + - uid: 7222 + components: + - type: Transform + pos: -44.5,5.5 + parent: 1668 + - uid: 7223 + components: + - type: Transform + pos: -43.5,5.5 + parent: 1668 + - uid: 7224 + components: + - type: Transform + pos: -42.5,5.5 + parent: 1668 + - uid: 7225 + components: + - type: Transform + pos: -42.5,4.5 + parent: 1668 + - uid: 7226 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 1668 + - uid: 7227 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 1668 + - uid: 7228 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 1668 + - uid: 7229 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 1668 + - uid: 7230 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 1668 + - uid: 7231 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 1668 + - uid: 7232 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 1668 + - uid: 7233 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 1668 + - uid: 7466 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 1668 + - uid: 7467 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 1668 + - uid: 7468 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 1668 + - uid: 7469 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 1668 + - uid: 7470 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 1668 + - uid: 7471 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 1668 + - uid: 7472 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 1668 + - uid: 7473 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 1668 + - uid: 7474 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 1668 + - uid: 7475 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 1668 + - uid: 7476 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 1668 + - uid: 7477 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 1668 + - uid: 7478 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 1668 + - uid: 7479 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 1668 + - uid: 7480 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 1668 + - uid: 7481 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 1668 + - uid: 7482 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 1668 + - uid: 8800 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 1668 + - uid: 8801 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1668 + - uid: 8802 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1668 + - uid: 8803 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 1668 + - uid: 8804 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1668 + - uid: 8805 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1668 + - uid: 8806 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 1668 + - uid: 8807 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 1668 + - uid: 8808 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1668 + - uid: 8809 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1668 + - uid: 8810 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1668 + - uid: 8811 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 1668 + - uid: 8812 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 1668 + - uid: 8813 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 1668 + - uid: 8814 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 1668 + - uid: 9137 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 1668 + - uid: 9138 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 1668 + - uid: 9139 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 1668 + - uid: 9140 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 1668 + - uid: 9141 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 1668 + - uid: 9142 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 1668 + - uid: 9143 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 1668 + - uid: 9144 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 1668 + - uid: 9249 + components: + - type: Transform + pos: -34.5,14.5 + parent: 1668 + - uid: 9250 + components: + - type: Transform + pos: -34.5,13.5 + parent: 1668 + - uid: 9251 + components: + - type: Transform + pos: -34.5,12.5 + parent: 1668 + - uid: 9252 + components: + - type: Transform + pos: -34.5,11.5 + parent: 1668 + - uid: 9253 + components: + - type: Transform + pos: -34.5,10.5 + parent: 1668 + - uid: 9254 + components: + - type: Transform + pos: -34.5,8.5 + parent: 1668 + - uid: 9255 + components: + - type: Transform + pos: -35.5,11.5 + parent: 1668 + - uid: 9256 + components: + - type: Transform + pos: -36.5,11.5 + parent: 1668 + - uid: 9257 + components: + - type: Transform + pos: -37.5,11.5 + parent: 1668 + - uid: 9258 + components: + - type: Transform + pos: -33.5,11.5 + parent: 1668 + - uid: 9259 + components: + - type: Transform + pos: -32.5,11.5 + parent: 1668 + - uid: 9260 + components: + - type: Transform + pos: -31.5,11.5 + parent: 1668 + - uid: 9261 + components: + - type: Transform + pos: -30.5,11.5 + parent: 1668 + - uid: 9262 + components: + - type: Transform + pos: -34.5,7.5 + parent: 1668 + - uid: 9263 + components: + - type: Transform + pos: -34.5,6.5 + parent: 1668 + - uid: 9264 + components: + - type: Transform + pos: -34.5,5.5 + parent: 1668 + - uid: 9265 + components: + - type: Transform + pos: -34.5,4.5 + parent: 1668 + - uid: 9266 + components: + - type: Transform + pos: -34.5,3.5 + parent: 1668 + - uid: 9267 + components: + - type: Transform + pos: -33.5,5.5 + parent: 1668 + - uid: 9268 + components: + - type: Transform + pos: -32.5,5.5 + parent: 1668 + - uid: 9269 + components: + - type: Transform + pos: -31.5,5.5 + parent: 1668 + - uid: 9270 + components: + - type: Transform + pos: -30.5,5.5 + parent: 1668 + - uid: 9271 + components: + - type: Transform + pos: -29.5,5.5 + parent: 1668 + - uid: 9272 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1668 + - uid: 9273 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1668 + - uid: 9274 + components: + - type: Transform + pos: -35.5,5.5 + parent: 1668 + - uid: 9275 + components: + - type: Transform + pos: -36.5,5.5 + parent: 1668 + - uid: 9276 + components: + - type: Transform + pos: -37.5,5.5 + parent: 1668 + - uid: 9277 + components: + - type: Transform + pos: -38.5,5.5 + parent: 1668 + - uid: 9278 + components: + - type: Transform + pos: -39.5,5.5 + parent: 1668 + - uid: 9279 + components: + - type: Transform + pos: -39.5,4.5 + parent: 1668 +- proto: CableApcStack entities: - - uid: 2227 + - uid: 6776 components: - type: Transform - pos: -14.517971,17.62628 - parent: 1668 - - uid: 3905 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6799 components: - type: Transform - pos: -13.406932,-7.1178913 - parent: 1668 -- proto: FoodBoxDonut + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableHV entities: - - uid: 1400 + - uid: 3198 components: - type: Transform - pos: -3.5536041,-11.463534 + pos: -13.5,15.5 parent: 1668 - - uid: 2496 + - uid: 3199 components: - type: Transform - pos: 28.583382,10.652384 + pos: -12.5,15.5 + parent: 1668 + - uid: 3201 + components: + - type: Transform + pos: -14.5,18.5 + parent: 1668 + - uid: 3202 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1668 + - uid: 3203 + components: + - type: Transform + pos: -14.5,19.5 + parent: 1668 + - uid: 3204 + components: + - type: Transform + pos: -13.5,17.5 + parent: 1668 + - uid: 3205 + components: + - type: Transform + pos: -13.5,18.5 + parent: 1668 + - uid: 3206 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1668 + - uid: 3207 + components: + - type: Transform + pos: -13.5,19.5 + parent: 1668 + - uid: 3208 + components: + - type: Transform + pos: -11.5,17.5 + parent: 1668 + - uid: 3210 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1668 + - uid: 3213 + components: + - type: Transform + pos: -12.5,19.5 + parent: 1668 + - uid: 3214 + components: + - type: Transform + pos: -11.5,18.5 + parent: 1668 + - uid: 3215 + components: + - type: Transform + pos: -12.5,18.5 + parent: 1668 + - uid: 3218 + components: + - type: Transform + pos: -11.5,16.5 + parent: 1668 + - uid: 3219 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1668 + - uid: 3735 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1668 + - uid: 3736 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1668 + - uid: 3737 + components: + - type: Transform + pos: -9.5,17.5 + parent: 1668 + - uid: 3738 + components: + - type: Transform + pos: -9.5,16.5 + parent: 1668 + - uid: 3739 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1668 + - uid: 3740 + components: + - type: Transform + pos: -9.5,14.5 + parent: 1668 + - uid: 3741 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1668 + - uid: 3742 + components: + - type: Transform + pos: -9.5,12.5 + parent: 1668 + - uid: 3743 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1668 + - uid: 3744 + components: + - type: Transform + pos: -9.5,10.5 parent: 1668 - uid: 3745 components: - type: Transform - pos: -23.474928,11.563223 + pos: -8.5,10.5 + parent: 1668 + - uid: 3746 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1668 + - uid: 3747 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1668 + - uid: 3748 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1668 + - uid: 3749 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1668 + - uid: 3750 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1668 + - uid: 3751 + components: + - type: Transform + pos: -5.5,13.5 parent: 1668 - uid: 3752 components: - type: Transform - pos: -19.463516,4.614471 + pos: -5.5,14.5 + parent: 1668 + - uid: 3753 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1668 + - uid: 3754 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1668 + - uid: 3755 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1668 + - uid: 3756 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1668 + - uid: 3757 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1668 + - uid: 3758 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1668 + - uid: 3759 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1668 + - uid: 3760 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1668 + - uid: 3761 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1668 + - uid: 3762 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1668 + - uid: 3763 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1668 + - uid: 3764 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1668 + - uid: 3765 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1668 + - uid: 3766 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1668 + - uid: 3767 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1668 + - uid: 3768 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1668 + - uid: 3769 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1668 + - uid: 3770 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1668 + - uid: 3771 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1668 + - uid: 3772 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1668 + - uid: 3773 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1668 + - uid: 3774 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1668 + - uid: 3775 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1668 + - uid: 3776 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1668 + - uid: 3777 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1668 + - uid: 3778 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1668 + - uid: 3779 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1668 + - uid: 3780 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1668 + - uid: 3781 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1668 + - uid: 3782 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1668 + - uid: 3783 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1668 + - uid: 3784 + components: + - type: Transform + pos: 19.5,22.5 + parent: 1668 + - uid: 3785 + components: + - type: Transform + pos: 19.5,23.5 + parent: 1668 + - uid: 3786 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1668 + - uid: 3787 + components: + - type: Transform + pos: 19.5,25.5 + parent: 1668 + - uid: 3788 + components: + - type: Transform + pos: 19.5,26.5 + parent: 1668 + - uid: 3789 + components: + - type: Transform + pos: 19.5,27.5 + parent: 1668 + - uid: 3790 + components: + - type: Transform + pos: 19.5,28.5 + parent: 1668 + - uid: 3791 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1668 + - uid: 3792 + components: + - type: Transform + pos: 18.5,28.5 + parent: 1668 + - uid: 4858 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1668 + - uid: 4859 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1668 + - uid: 4860 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1668 + - uid: 4861 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1668 + - uid: 4862 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1668 + - uid: 4863 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1668 + - uid: 4864 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1668 + - uid: 4865 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1668 + - uid: 4866 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1668 + - uid: 4867 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1668 + - uid: 4868 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1668 + - uid: 4869 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1668 + - uid: 4870 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1668 + - uid: 4871 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1668 + - uid: 4872 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1668 + - uid: 4873 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1668 + - uid: 4874 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1668 + - uid: 4875 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1668 + - uid: 4876 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1668 + - uid: 4877 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1668 + - uid: 4878 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1668 + - uid: 4879 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1668 + - uid: 4880 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1668 + - uid: 4881 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1668 + - uid: 4882 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1668 + - uid: 4883 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1668 + - uid: 4884 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1668 + - uid: 4885 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1668 + - uid: 4886 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1668 + - uid: 4887 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1668 + - uid: 4888 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1668 + - uid: 4889 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1668 + - uid: 4890 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1668 + - uid: 4891 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1668 + - uid: 4892 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1668 + - uid: 4893 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1668 + - uid: 4894 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1668 + - uid: 4895 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1668 + - uid: 4896 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1668 + - uid: 4897 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1668 + - uid: 4898 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1668 + - uid: 4899 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1668 + - uid: 4900 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1668 + - uid: 4901 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1668 + - uid: 4902 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1668 + - uid: 4903 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1668 + - uid: 4904 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1668 + - uid: 4905 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1668 + - uid: 4906 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1668 + - uid: 4907 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1668 + - uid: 4908 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1668 + - uid: 4909 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1668 + - uid: 4910 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1668 + - uid: 4911 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1668 + - uid: 4912 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1668 + - uid: 4913 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1668 + - uid: 4914 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1668 + - uid: 4915 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1668 + - uid: 4916 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1668 + - uid: 4917 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1668 + - uid: 4918 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1668 + - uid: 4919 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1668 + - uid: 4920 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1668 + - uid: 4921 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1668 + - uid: 4922 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1668 + - uid: 4923 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1668 + - uid: 4924 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1668 + - uid: 4925 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1668 + - uid: 4926 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1668 + - uid: 4927 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1668 + - uid: 4928 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1668 + - uid: 4929 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1668 + - uid: 4930 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 1668 + - uid: 4931 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 1668 + - uid: 4932 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1668 + - uid: 4933 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 1668 + - uid: 4934 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 1668 + - uid: 4935 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 1668 + - uid: 4936 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 1668 + - uid: 4937 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 1668 + - uid: 4938 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 1668 + - uid: 4939 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 1668 + - uid: 4940 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 1668 + - uid: 4941 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 1668 + - uid: 4942 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 1668 + - uid: 4943 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 1668 + - uid: 4944 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1668 + - uid: 4945 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 1668 + - uid: 4946 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1668 + - uid: 4947 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1668 + - uid: 4948 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1668 + - uid: 4949 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1668 + - uid: 4950 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 1668 + - uid: 4951 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 1668 + - uid: 4952 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 1668 + - uid: 4953 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 1668 + - uid: 4954 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1668 + - uid: 4955 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 1668 + - uid: 4956 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 1668 + - uid: 4957 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 1668 + - uid: 4958 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 1668 + - uid: 4959 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 1668 + - uid: 4960 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 1668 + - uid: 4961 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 1668 + - uid: 4962 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 1668 + - uid: 4963 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 1668 + - uid: 4964 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 1668 + - uid: 4965 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 1668 + - uid: 4966 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 1668 + - uid: 4967 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 1668 + - uid: 4968 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 1668 + - uid: 4969 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 1668 + - uid: 4970 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 1668 + - uid: 4971 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 1668 + - uid: 4972 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 1668 + - uid: 4973 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 1668 + - uid: 4974 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 1668 + - uid: 4975 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 1668 + - uid: 4976 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 1668 + - uid: 4977 + components: + - type: Transform + pos: 11.5,-48.5 + parent: 1668 + - uid: 4978 + components: + - type: Transform + pos: 10.5,-48.5 + parent: 1668 + - uid: 4979 + components: + - type: Transform + pos: 9.5,-48.5 + parent: 1668 + - uid: 4980 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 1668 + - uid: 4981 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 1668 + - uid: 4982 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 1668 + - uid: 4983 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 1668 + - uid: 4984 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 1668 + - uid: 4985 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 1668 + - uid: 4986 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 1668 + - uid: 4987 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 1668 + - uid: 4988 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 1668 + - uid: 4989 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 1668 + - uid: 4990 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 1668 + - uid: 4991 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 1668 + - uid: 4992 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 1668 + - uid: 4993 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 1668 + - uid: 4994 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 1668 + - uid: 4995 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 1668 + - uid: 4996 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 1668 + - uid: 4997 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 1668 + - uid: 4998 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 1668 + - uid: 4999 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 1668 + - uid: 5000 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 1668 + - uid: 5001 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 1668 + - uid: 5002 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 1668 + - uid: 5003 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 1668 + - uid: 5004 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 1668 + - uid: 5005 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 1668 + - uid: 5006 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 1668 + - uid: 5007 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 1668 + - uid: 5008 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 1668 + - uid: 5009 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 1668 + - uid: 5010 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 1668 + - uid: 5011 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 1668 + - uid: 5012 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 1668 + - uid: 5013 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 1668 + - uid: 5014 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 1668 + - uid: 5015 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 1668 + - uid: 5016 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 1668 + - uid: 5017 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 1668 + - uid: 5018 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 1668 + - uid: 5019 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 1668 + - uid: 5020 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 1668 + - uid: 5021 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 1668 + - uid: 5022 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 1668 + - uid: 5023 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 1668 + - uid: 5024 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 1668 + - uid: 5025 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 1668 + - uid: 5026 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 1668 + - uid: 5027 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 1668 + - uid: 5028 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 1668 + - uid: 5029 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1668 + - uid: 5030 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 1668 + - uid: 5031 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 1668 + - uid: 5032 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 1668 + - uid: 5033 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 1668 + - uid: 5034 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 1668 + - uid: 5035 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 1668 + - uid: 5036 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 1668 + - uid: 5037 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 1668 + - uid: 5038 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 1668 + - uid: 5039 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 1668 + - uid: 5040 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 1668 + - uid: 5041 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 1668 + - uid: 5042 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 1668 + - uid: 5043 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 1668 + - uid: 5044 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 1668 + - uid: 5045 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 1668 + - uid: 5727 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1668 + - uid: 5728 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1668 + - uid: 5729 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1668 + - uid: 5730 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1668 + - uid: 5731 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1668 + - uid: 5732 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 1668 + - uid: 5930 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1668 + - uid: 5931 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1668 + - uid: 5932 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1668 + - uid: 5933 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1668 + - uid: 5934 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1668 + - uid: 5935 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1668 + - uid: 5936 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1668 + - uid: 5937 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1668 + - uid: 5938 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1668 + - uid: 5939 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1668 + - uid: 5940 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1668 + - uid: 5941 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1668 + - uid: 5942 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1668 + - uid: 5943 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1668 + - uid: 5944 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1668 + - uid: 5945 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1668 + - uid: 5946 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1668 + - uid: 5947 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1668 + - uid: 5948 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1668 + - uid: 5949 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1668 + - uid: 5950 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1668 + - uid: 5951 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1668 + - uid: 5952 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1668 + - uid: 5953 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1668 + - uid: 5954 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1668 + - uid: 5955 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1668 + - uid: 5956 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1668 + - uid: 5957 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1668 + - uid: 5958 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1668 + - uid: 5959 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1668 + - uid: 5960 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1668 +- proto: CableHVStack + entities: + - uid: 6780 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6800 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableMV + entities: + - uid: 1780 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 1668 + - uid: 1783 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 1668 + - uid: 1784 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1668 + - uid: 1785 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 1668 + - uid: 1786 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 1668 + - uid: 1787 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 1668 + - uid: 1788 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 1668 + - uid: 1789 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 1668 + - uid: 1790 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1668 + - uid: 1791 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 1668 + - uid: 1792 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 1668 + - uid: 1793 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1668 + - uid: 1794 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 1668 + - uid: 1795 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1668 + - uid: 1796 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 1668 + - uid: 1797 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 1668 + - uid: 1798 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1668 + - uid: 1799 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1668 + - uid: 1800 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1668 + - uid: 1801 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1668 + - uid: 1802 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1668 + - uid: 1803 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1668 + - uid: 1804 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 1668 + - uid: 1805 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1668 + - uid: 1806 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1668 + - uid: 1807 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1668 + - uid: 1808 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 1668 + - uid: 1809 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1668 + - uid: 1810 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1668 + - uid: 1811 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 1668 + - uid: 1812 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 1668 + - uid: 1813 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 1668 + - uid: 1814 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 1668 + - uid: 1815 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 1668 + - uid: 1816 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 1668 + - uid: 1817 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 1668 + - uid: 1818 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 1668 + - uid: 1819 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 1668 + - uid: 1820 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 1668 + - uid: 1821 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 1668 + - uid: 1822 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 1668 + - uid: 1823 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 1668 + - uid: 1824 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 1668 + - uid: 1825 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 1668 + - uid: 1826 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 1668 + - uid: 1827 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 1668 + - uid: 1828 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1668 + - uid: 1829 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 1668 + - uid: 1830 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 1668 + - uid: 1831 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 1668 + - uid: 1832 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 1668 + - uid: 1833 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 1668 + - uid: 1834 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 1668 + - uid: 1835 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 1668 + - uid: 1836 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 1668 + - uid: 1837 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1668 + - uid: 1838 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1668 + - uid: 1839 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 1668 + - uid: 1840 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 1668 + - uid: 3200 + components: + - type: Transform + pos: -13.5,15.5 + parent: 1668 + - uid: 3220 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1668 + - uid: 3226 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1668 + - uid: 3229 + components: + - type: Transform + pos: -11.5,14.5 + parent: 1668 + - uid: 3618 + components: + - type: Transform + pos: -2.5,28.5 + parent: 1668 + - uid: 3793 + components: + - type: Transform + pos: -19.5,18.5 + parent: 1668 + - uid: 3794 + components: + - type: Transform + pos: -18.5,18.5 + parent: 1668 + - uid: 3795 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1668 + - uid: 3796 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1668 + - uid: 3797 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1668 + - uid: 3798 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1668 + - uid: 3799 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1668 + - uid: 3800 + components: + - type: Transform + pos: -15.5,15.5 + parent: 1668 + - uid: 3801 + components: + - type: Transform + pos: -14.5,15.5 + parent: 1668 + - uid: 3802 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1668 + - uid: 3803 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1668 + - uid: 3804 + components: + - type: Transform + pos: -8.5,15.5 + parent: 1668 + - uid: 3805 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1668 + - uid: 3806 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1668 + - uid: 3807 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1668 + - uid: 3808 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1668 + - uid: 3809 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1668 + - uid: 3810 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1668 + - uid: 3811 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1668 + - uid: 3812 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1668 + - uid: 3813 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1668 + - uid: 3814 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1668 + - uid: 3815 + components: + - type: Transform + pos: -6.5,16.5 + parent: 1668 + - uid: 3816 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1668 + - uid: 3817 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1668 + - uid: 3818 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1668 + - uid: 3819 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1668 + - uid: 3820 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1668 + - uid: 3821 + components: + - type: Transform + pos: 18.5,28.5 + parent: 1668 + - uid: 3822 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1668 + - uid: 3823 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1668 + - uid: 3824 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1668 + - uid: 3825 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1668 + - uid: 3826 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1668 + - uid: 3827 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1668 + - uid: 3828 + components: + - type: Transform + pos: -1.5,23.5 + parent: 1668 + - uid: 3829 + components: + - type: Transform + pos: -1.5,25.5 + parent: 1668 + - uid: 3830 + components: + - type: Transform + pos: -1.5,26.5 + parent: 1668 + - uid: 3831 + components: + - type: Transform + pos: -1.5,27.5 + parent: 1668 + - uid: 3832 + components: + - type: Transform + pos: -1.5,28.5 + parent: 1668 + - uid: 3833 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1668 + - uid: 3834 + components: + - type: Transform + pos: 19.5,28.5 + parent: 1668 + - uid: 3835 + components: + - type: Transform + pos: 19.5,27.5 + parent: 1668 + - uid: 3836 + components: + - type: Transform + pos: 19.5,26.5 + parent: 1668 + - uid: 3837 + components: + - type: Transform + pos: 19.5,25.5 + parent: 1668 + - uid: 3838 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1668 + - uid: 3839 + components: + - type: Transform + pos: 19.5,23.5 + parent: 1668 + - uid: 3840 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1668 + - uid: 3841 + components: + - type: Transform + pos: 19.5,22.5 + parent: 1668 + - uid: 3842 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1668 + - uid: 3843 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1668 + - uid: 3844 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1668 + - uid: 3845 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1668 + - uid: 3846 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1668 + - uid: 3847 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1668 + - uid: 3848 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1668 + - uid: 3849 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1668 + - uid: 3850 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1668 + - uid: 3851 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1668 + - uid: 3852 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1668 + - uid: 3853 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1668 + - uid: 3854 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1668 + - uid: 3855 + components: + - type: Transform + pos: 28.5,10.5 + parent: 1668 + - uid: 3856 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1668 + - uid: 3857 + components: + - type: Transform + pos: 29.5,11.5 + parent: 1668 + - uid: 3858 + components: + - type: Transform + pos: 29.5,12.5 + parent: 1668 + - uid: 3859 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1668 + - uid: 3860 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1668 + - uid: 3861 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1668 + - uid: 3862 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1668 + - uid: 3863 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1668 + - uid: 3864 + components: + - type: Transform + pos: 26.5,15.5 + parent: 1668 + - uid: 3865 + components: + - type: Transform + pos: 25.5,15.5 + parent: 1668 + - uid: 3866 + components: + - type: Transform + pos: 24.5,15.5 + parent: 1668 + - uid: 3867 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1668 + - uid: 3868 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1668 + - uid: 3869 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1668 + - uid: 3870 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1668 + - uid: 3871 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1668 + - uid: 3872 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1668 + - uid: 3873 + components: + - type: Transform + pos: 17.5,8.5 parent: 1668 - uid: 3874 components: - type: Transform - pos: -27.444466,-3.3787808 + pos: 16.5,8.5 + parent: 1668 + - uid: 3875 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1668 + - uid: 3876 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1668 + - uid: 3877 + components: + - type: Transform + pos: 16.5,11.5 + parent: 1668 + - uid: 3878 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1668 + - uid: 3879 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1668 + - uid: 3880 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1668 + - uid: 3881 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1668 + - uid: 3919 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1668 + - uid: 3920 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1668 + - uid: 3921 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1668 + - uid: 3922 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1668 + - uid: 3940 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1668 + - uid: 3942 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1668 + - uid: 3944 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1668 + - uid: 3947 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1668 + - uid: 4173 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1668 + - uid: 4174 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1668 + - uid: 4175 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1668 + - uid: 4176 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1668 + - uid: 4177 + components: + - type: Transform + pos: 17.5,3.5 + parent: 1668 + - uid: 4178 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1668 + - uid: 5046 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 1668 + - uid: 5047 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 1668 + - uid: 5048 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 1668 + - uid: 5049 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 1668 + - uid: 5050 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 1668 + - uid: 5051 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 1668 + - uid: 5052 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 1668 + - uid: 5053 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 1668 + - uid: 5054 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 1668 + - uid: 5055 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 1668 + - uid: 5056 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 1668 + - uid: 5057 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 1668 + - uid: 5058 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 1668 + - uid: 5059 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 1668 + - uid: 5060 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 1668 + - uid: 5061 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 1668 + - uid: 5062 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 1668 + - uid: 5063 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 1668 + - uid: 5064 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 1668 + - uid: 5065 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 1668 + - uid: 5066 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 1668 + - uid: 5067 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 1668 + - uid: 5069 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 1668 + - uid: 5070 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 1668 + - uid: 5071 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 1668 + - uid: 5072 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 1668 + - uid: 5073 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 1668 + - uid: 5074 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 1668 + - uid: 5075 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 1668 + - uid: 5076 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 1668 + - uid: 5077 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 1668 + - uid: 5080 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 1668 + - uid: 5081 + components: + - type: Transform + pos: 9.5,-48.5 + parent: 1668 + - uid: 5082 + components: + - type: Transform + pos: 10.5,-48.5 + parent: 1668 + - uid: 5083 + components: + - type: Transform + pos: 11.5,-48.5 + parent: 1668 + - uid: 5084 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 1668 + - uid: 5085 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 1668 + - uid: 5086 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 1668 + - uid: 5087 + components: + - type: Transform + pos: 15.5,-48.5 + parent: 1668 + - uid: 5088 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 1668 + - uid: 5089 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 1668 + - uid: 5090 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 1668 + - uid: 5091 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 1668 + - uid: 5092 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 1668 + - uid: 5093 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 1668 + - uid: 5094 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 1668 + - uid: 5095 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 1668 + - uid: 5096 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 1668 + - uid: 5097 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 1668 + - uid: 5098 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 1668 + - uid: 5099 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 1668 + - uid: 5100 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 1668 + - uid: 5101 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 1668 + - uid: 5102 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 1668 + - uid: 5103 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 1668 + - uid: 5104 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 1668 + - uid: 5105 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 1668 + - uid: 5106 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 1668 + - uid: 5107 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 1668 + - uid: 5108 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 1668 + - uid: 5109 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 1668 + - uid: 5110 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 1668 + - uid: 5111 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 1668 + - uid: 5112 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 1668 + - uid: 5113 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 1668 + - uid: 5114 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 1668 + - uid: 5115 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 1668 + - uid: 5116 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 1668 + - uid: 5117 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 1668 + - uid: 5118 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 1668 + - uid: 5119 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 1668 + - uid: 5120 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 1668 + - uid: 5121 + components: + - type: Transform + pos: -14.5,-31.5 + parent: 1668 + - uid: 5122 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 1668 + - uid: 5123 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 1668 + - uid: 5124 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 1668 + - uid: 5125 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 1668 + - uid: 5126 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 1668 + - uid: 5127 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 1668 + - uid: 5128 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 1668 + - uid: 5129 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 1668 + - uid: 5130 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 1668 + - uid: 5131 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 1668 + - uid: 5132 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 1668 + - uid: 5133 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 1668 + - uid: 5134 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 1668 + - uid: 5135 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 1668 + - uid: 5136 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 1668 + - uid: 5137 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 1668 + - uid: 5138 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 1668 + - uid: 5139 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 1668 + - uid: 5140 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 1668 + - uid: 5141 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1668 + - uid: 5142 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1668 + - uid: 5143 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 1668 + - uid: 5144 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 1668 + - uid: 5145 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 1668 + - uid: 5146 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 1668 + - uid: 5147 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 1668 + - uid: 5148 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 1668 + - uid: 5149 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 1668 + - uid: 5150 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 1668 + - uid: 5151 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1668 + - uid: 5152 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 1668 + - uid: 5153 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 1668 + - uid: 5154 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1668 + - uid: 5155 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 1668 + - uid: 5156 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 1668 + - uid: 5157 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 1668 + - uid: 5158 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1668 + - uid: 5159 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1668 + - uid: 5160 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1668 + - uid: 5161 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1668 + - uid: 5162 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1668 + - uid: 5163 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1668 + - uid: 5164 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 1668 + - uid: 5278 + components: + - type: Transform + pos: -5.5,-47.5 + parent: 1668 + - uid: 5279 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 1668 + - uid: 5280 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 1668 + - uid: 5281 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 1668 + - uid: 5282 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 1668 + - uid: 5283 + components: + - type: Transform + pos: -5.5,-41.5 + parent: 1668 + - uid: 5284 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 1668 + - uid: 5285 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 1668 + - uid: 5286 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 1668 + - uid: 5287 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 1668 + - uid: 5288 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 1668 + - uid: 5289 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 1668 + - uid: 5290 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 1668 + - uid: 5291 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 1668 + - uid: 5292 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 1668 + - uid: 5293 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 1668 + - uid: 5294 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 1668 + - uid: 5295 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 1668 + - uid: 5296 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 1668 + - uid: 5297 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 1668 + - uid: 5298 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 1668 + - uid: 5299 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 1668 + - uid: 5300 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 1668 + - uid: 5301 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 1668 + - uid: 5302 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 1668 + - uid: 5303 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 1668 + - uid: 5304 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 1668 + - uid: 5305 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 1668 + - uid: 5306 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 1668 + - uid: 5307 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 1668 + - uid: 5308 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 1668 + - uid: 5309 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 1668 + - uid: 5310 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 1668 + - uid: 5311 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 1668 + - uid: 5312 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 1668 + - uid: 5313 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 1668 + - uid: 5314 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 1668 + - uid: 5315 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 1668 + - uid: 5316 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 1668 + - uid: 5317 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 1668 + - uid: 5318 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 1668 + - uid: 5319 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 1668 + - uid: 5320 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 1668 + - uid: 5322 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 1668 + - uid: 5668 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 1668 + - uid: 5669 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 1668 + - uid: 5733 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 1668 + - uid: 5734 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1668 + - uid: 5735 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1668 + - uid: 5736 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1668 + - uid: 5737 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1668 + - uid: 5738 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1668 + - uid: 5739 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1668 + - uid: 5740 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1668 + - uid: 5741 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1668 + - uid: 5742 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1668 + - uid: 5743 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1668 + - uid: 5744 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1668 + - uid: 5745 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1668 + - uid: 5746 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1668 + - uid: 5747 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1668 + - uid: 5748 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1668 + - uid: 5749 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1668 + - uid: 5750 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 1668 + - uid: 5751 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 1668 + - uid: 5752 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 1668 + - uid: 5753 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1668 + - uid: 5754 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1668 + - uid: 5755 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1668 + - uid: 5756 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1668 + - uid: 5757 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1668 + - uid: 5758 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1668 + - uid: 5759 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1668 + - uid: 5760 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 1668 + - uid: 5761 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 1668 + - uid: 5762 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1668 + - uid: 5763 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1668 + - uid: 5764 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1668 + - uid: 5765 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1668 + - uid: 5766 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1668 + - uid: 5767 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1668 + - uid: 5768 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1668 + - uid: 5769 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1668 + - uid: 5770 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1668 + - uid: 5771 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1668 + - uid: 5772 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1668 + - uid: 5773 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1668 + - uid: 5774 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1668 + - uid: 5775 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1668 + - uid: 5776 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1668 + - uid: 5777 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1668 + - uid: 5778 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1668 + - uid: 5779 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1668 + - uid: 5780 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1668 + - uid: 5781 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1668 + - uid: 5782 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1668 + - uid: 5783 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1668 + - uid: 5784 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1668 + - uid: 5785 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1668 + - uid: 5786 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1668 + - uid: 5787 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1668 + - uid: 5788 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1668 + - uid: 5789 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1668 + - uid: 5790 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1668 + - uid: 5791 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1668 + - uid: 5792 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1668 + - uid: 5793 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1668 + - uid: 5794 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1668 + - uid: 5795 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1668 + - uid: 5796 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1668 + - uid: 5797 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1668 + - uid: 5798 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1668 + - uid: 5799 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1668 + - uid: 5800 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1668 + - uid: 5801 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1668 + - uid: 5802 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1668 + - uid: 5803 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1668 + - uid: 5804 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1668 + - uid: 5805 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1668 + - uid: 5806 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1668 + - uid: 5807 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1668 + - uid: 5808 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1668 + - uid: 5809 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1668 + - uid: 5810 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1668 + - uid: 5811 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1668 + - uid: 5812 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1668 + - uid: 5813 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1668 + - uid: 5814 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1668 + - uid: 5815 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1668 + - uid: 5816 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1668 + - uid: 5817 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1668 + - uid: 5818 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1668 + - uid: 5819 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1668 + - uid: 5820 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1668 + - uid: 5821 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1668 + - uid: 5822 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1668 + - uid: 5823 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1668 + - uid: 5824 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1668 + - uid: 5825 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1668 + - uid: 5826 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1668 + - uid: 5827 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1668 + - uid: 5828 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1668 + - uid: 5829 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1668 + - uid: 5830 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1668 + - uid: 5831 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1668 + - uid: 5832 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1668 + - uid: 5833 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1668 + - uid: 5834 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1668 + - uid: 5835 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1668 + - uid: 5836 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1668 + - uid: 5837 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1668 + - uid: 5838 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1668 + - uid: 5839 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1668 + - uid: 5840 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1668 + - uid: 5841 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1668 + - uid: 5842 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1668 + - uid: 5843 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1668 + - uid: 5844 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1668 + - uid: 5845 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1668 + - uid: 5846 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1668 + - uid: 5847 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1668 + - uid: 5848 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1668 + - uid: 5849 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1668 + - uid: 5850 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1668 + - uid: 5851 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1668 + - uid: 5852 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1668 + - uid: 5853 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1668 + - uid: 5854 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 1668 + - uid: 5855 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 1668 + - uid: 5856 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 1668 + - uid: 5857 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1668 + - uid: 5858 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 1668 + - uid: 5859 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 1668 + - uid: 5860 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 1668 + - uid: 5861 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1668 + - uid: 5964 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1668 + - uid: 5965 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1668 + - uid: 5966 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1668 + - uid: 5967 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1668 + - uid: 5968 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1668 + - uid: 5969 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1668 + - uid: 5970 + components: + - type: Transform + pos: -16.5,8.5 + parent: 1668 + - uid: 5971 + components: + - type: Transform + pos: -16.5,9.5 + parent: 1668 + - uid: 5972 + components: + - type: Transform + pos: -16.5,10.5 + parent: 1668 + - uid: 5973 + components: + - type: Transform + pos: -17.5,10.5 + parent: 1668 + - uid: 5974 + components: + - type: Transform + pos: -18.5,10.5 + parent: 1668 + - uid: 5975 + components: + - type: Transform + pos: -18.5,11.5 + parent: 1668 + - uid: 5976 + components: + - type: Transform + pos: -18.5,12.5 + parent: 1668 + - uid: 5977 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1668 + - uid: 5978 + components: + - type: Transform + pos: -19.5,13.5 + parent: 1668 + - uid: 5979 + components: + - type: Transform + pos: -19.5,14.5 + parent: 1668 + - uid: 5980 + components: + - type: Transform + pos: -19.5,10.5 + parent: 1668 + - uid: 5981 + components: + - type: Transform + pos: -20.5,10.5 + parent: 1668 + - uid: 5982 + components: + - type: Transform + pos: -21.5,10.5 + parent: 1668 + - uid: 5983 + components: + - type: Transform + pos: -21.5,9.5 + parent: 1668 + - uid: 5984 + components: + - type: Transform + pos: -21.5,8.5 + parent: 1668 + - uid: 5985 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1668 + - uid: 5986 + components: + - type: Transform + pos: -21.5,6.5 + parent: 1668 + - uid: 5987 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1668 + - uid: 5988 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1668 + - uid: 5989 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1668 + - uid: 5990 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1668 + - uid: 5991 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1668 + - uid: 5992 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1668 + - uid: 5993 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1668 + - uid: 5994 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1668 + - uid: 5995 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1668 + - uid: 5996 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1668 + - uid: 5997 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1668 + - uid: 6480 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1668 + - uid: 6481 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1668 + - uid: 6482 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 1668 + - uid: 6483 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1668 + - uid: 6484 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1668 + - uid: 6485 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 1668 + - uid: 6486 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1668 + - uid: 6487 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 1668 + - uid: 6488 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 1668 + - uid: 6489 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 1668 + - uid: 6490 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 1668 + - uid: 6491 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 1668 + - uid: 6492 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 1668 + - uid: 6493 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 1668 + - uid: 6494 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 1668 + - uid: 6495 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 1668 + - uid: 6496 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 1668 + - uid: 6497 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 1668 + - uid: 6960 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1668 + - uid: 6961 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 1668 + - uid: 6962 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1668 + - uid: 6963 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1668 + - uid: 6964 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1668 + - uid: 6965 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1668 + - uid: 6966 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1668 + - uid: 6967 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1668 + - uid: 6968 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 1668 + - uid: 6969 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1668 + - uid: 6970 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1668 + - uid: 6971 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1668 + - uid: 6972 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 1668 + - uid: 6973 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 1668 + - uid: 6974 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 1668 + - uid: 6975 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 1668 + - uid: 6976 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 1668 + - uid: 6977 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 1668 + - uid: 6978 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 1668 + - uid: 6979 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 1668 + - uid: 6980 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 1668 + - uid: 6981 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 1668 + - uid: 6982 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 1668 + - uid: 6983 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 1668 + - uid: 6984 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 1668 + - uid: 6985 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 1668 + - uid: 6987 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 1668 + - uid: 6988 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 1668 + - uid: 6989 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 1668 + - uid: 6990 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 1668 + - uid: 6991 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 1668 + - uid: 6994 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 1668 + - uid: 6995 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 1668 + - uid: 6996 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 1668 + - uid: 6997 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 1668 + - uid: 6998 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 1668 + - uid: 6999 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 1668 + - uid: 7000 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 1668 + - uid: 7001 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 1668 + - uid: 7002 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 1668 + - uid: 7003 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 1668 + - uid: 7004 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 1668 + - uid: 7005 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 1668 + - uid: 7006 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 1668 + - uid: 7007 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 1668 + - uid: 7051 + components: + - type: Transform + pos: -29.5,0.5 + parent: 1668 + - uid: 7052 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1668 + - uid: 7053 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1668 + - uid: 7188 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 1668 + - uid: 7189 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 1668 + - uid: 7190 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 1668 + - uid: 7191 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 1668 + - uid: 7192 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 1668 + - uid: 7193 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 1668 + - uid: 7194 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 1668 + - uid: 7195 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 1668 + - uid: 7196 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 1668 + - uid: 7197 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 1668 + - uid: 7198 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 1668 + - uid: 7199 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 1668 + - uid: 7200 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 1668 + - uid: 7201 + components: + - type: Transform + pos: -51.5,0.5 + parent: 1668 + - uid: 7202 + components: + - type: Transform + pos: -51.5,1.5 + parent: 1668 + - uid: 7203 + components: + - type: Transform + pos: -51.5,2.5 + parent: 1668 + - uid: 7204 + components: + - type: Transform + pos: -45.5,2.5 + parent: 1668 + - uid: 7205 + components: + - type: Transform + pos: -45.5,1.5 + parent: 1668 + - uid: 7206 + components: + - type: Transform + pos: -45.5,0.5 + parent: 1668 + - uid: 7207 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 1668 + - uid: 7208 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 1668 + - uid: 7209 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 1668 + - uid: 8798 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 1668 + - uid: 8799 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 1668 + - uid: 8913 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 1668 + - uid: 9135 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 1668 + - uid: 9136 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 1668 + - uid: 9222 + components: + - type: Transform + pos: -22.5,6.5 + parent: 1668 + - uid: 9223 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1668 + - uid: 9224 + components: + - type: Transform + pos: -24.5,6.5 + parent: 1668 + - uid: 9225 + components: + - type: Transform + pos: -25.5,6.5 + parent: 1668 + - uid: 9226 + components: + - type: Transform + pos: -26.5,6.5 + parent: 1668 + - uid: 9227 + components: + - type: Transform + pos: -27.5,6.5 + parent: 1668 + - uid: 9228 + components: + - type: Transform + pos: -28.5,6.5 + parent: 1668 + - uid: 9229 + components: + - type: Transform + pos: -29.5,6.5 + parent: 1668 + - uid: 9230 + components: + - type: Transform + pos: -30.5,6.5 + parent: 1668 + - uid: 9231 + components: + - type: Transform + pos: -31.5,6.5 + parent: 1668 + - uid: 9232 + components: + - type: Transform + pos: -32.5,6.5 + parent: 1668 + - uid: 9233 + components: + - type: Transform + pos: -33.5,6.5 + parent: 1668 + - uid: 9234 + components: + - type: Transform + pos: -34.5,6.5 + parent: 1668 + - uid: 9235 + components: + - type: Transform + pos: -34.5,7.5 + parent: 1668 + - uid: 9236 + components: + - type: Transform + pos: -34.5,8.5 + parent: 1668 + - uid: 9237 + components: + - type: Transform + pos: -34.5,9.5 + parent: 1668 + - uid: 9238 + components: + - type: Transform + pos: -34.5,10.5 + parent: 1668 + - uid: 9239 + components: + - type: Transform + pos: -34.5,11.5 + parent: 1668 + - uid: 9240 + components: + - type: Transform + pos: -34.5,12.5 + parent: 1668 + - uid: 9241 + components: + - type: Transform + pos: -34.5,13.5 + parent: 1668 + - uid: 9242 + components: + - type: Transform + pos: -34.5,14.5 + parent: 1668 + - uid: 9243 + components: + - type: Transform + pos: -33.5,5.5 + parent: 1668 + - uid: 9244 + components: + - type: Transform + pos: -33.5,4.5 + parent: 1668 + - uid: 9245 + components: + - type: Transform + pos: -33.5,3.5 + parent: 1668 + - uid: 9246 + components: + - type: Transform + pos: -33.5,2.5 + parent: 1668 + - uid: 9247 + components: + - type: Transform + pos: -33.5,1.5 + parent: 1668 + - uid: 9248 + components: + - type: Transform + pos: -33.5,0.5 + parent: 1668 +- proto: CableMVStack + entities: + - uid: 6777 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6798 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableTerminal + entities: + - uid: 3209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,17.5 + parent: 1668 + - uid: 3246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 1668 + - uid: 3247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,18.5 + parent: 1668 + - uid: 5961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 1668 +- proto: CaptainIDCard + entities: + - uid: 499 + components: + - type: Transform + pos: 1.5249417,-2.3881862 + parent: 1668 + - uid: 2812 + components: + - type: Transform + pos: -17.501116,11.701667 + parent: 1668 + - uid: 9196 + components: + - type: Transform + pos: -42.55799,-7.110467 + parent: 1668 +- proto: CarbonDioxideCanister + entities: + - uid: 4117 + components: + - type: Transform + pos: -23.5,28.5 + parent: 1668 +- proto: Carpet + entities: + - uid: 1194 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1668 + - uid: 1293 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 1668 + - uid: 1294 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 1668 + - uid: 1295 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 1668 + - uid: 1976 + components: + - type: Transform + pos: 24.5,20.5 + parent: 1668 + - uid: 1977 + components: + - type: Transform + pos: 24.5,21.5 + parent: 1668 + - uid: 1979 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1668 + - uid: 1984 + components: + - type: Transform + pos: 24.5,24.5 + parent: 1668 + - uid: 7271 + components: + - type: Transform + pos: -50.5,5.5 + parent: 1668 + - uid: 7272 + components: + - type: Transform + pos: -50.5,4.5 + parent: 1668 + - uid: 7302 + components: + - type: Transform + pos: -48.5,4.5 + parent: 1668 + - uid: 7304 + components: + - type: Transform + pos: -48.5,5.5 + parent: 1668 + - uid: 7308 + components: + - type: Transform + pos: -49.5,4.5 + parent: 1668 + - uid: 7310 + components: + - type: Transform + pos: -49.5,5.5 + parent: 1668 +- proto: CarpetBlue + entities: + - uid: 2094 + components: + - type: Transform + pos: 28.5,11.5 + parent: 1668 + - uid: 2095 + components: + - type: Transform + pos: 28.5,12.5 + parent: 1668 + - uid: 2096 + components: + - type: Transform + pos: 27.5,11.5 + parent: 1668 + - uid: 2097 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1668 +- proto: CarpetGreen + entities: + - uid: 14 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1668 + - uid: 490 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1668 + - uid: 491 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1668 + - uid: 495 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1668 + - uid: 525 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1668 + - uid: 526 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1668 + - uid: 2046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,25.5 + parent: 1668 + - uid: 2047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,26.5 + parent: 1668 + - uid: 2048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 1668 + - uid: 2049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,25.5 + parent: 1668 + - uid: 2050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,27.5 + parent: 1668 + - uid: 2051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,25.5 + parent: 1668 + - uid: 2052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,26.5 + parent: 1668 + - uid: 2053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,27.5 + parent: 1668 + - uid: 2054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,26.5 + parent: 1668 + - uid: 2851 + components: + - type: Transform + pos: -18.5,15.5 + parent: 1668 + - uid: 2852 + components: + - type: Transform + pos: -16.5,11.5 + parent: 1668 + - uid: 2853 + components: + - type: Transform + pos: -16.5,12.5 + parent: 1668 + - uid: 2854 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1668 + - uid: 2855 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1668 + - uid: 2856 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1668 + - uid: 2857 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1668 + - uid: 2858 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1668 + - uid: 2859 + components: + - type: Transform + pos: -12.5,12.5 + parent: 1668 + - uid: 2978 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1668 + - uid: 2979 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1668 + - uid: 2980 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1668 + - uid: 2983 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1668 + - uid: 3034 + components: + - type: Transform + pos: 26.5,24.5 + parent: 1668 + - uid: 4841 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 1668 + - uid: 6178 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 1668 + - uid: 6179 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 1668 + - uid: 6180 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 1668 + - uid: 6189 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 1668 + - uid: 7311 + components: + - type: Transform + pos: -44.5,4.5 + parent: 1668 + - uid: 7312 + components: + - type: Transform + pos: -44.5,5.5 + parent: 1668 + - uid: 7313 + components: + - type: Transform + pos: -43.5,4.5 + parent: 1668 + - uid: 7314 + components: + - type: Transform + pos: -43.5,5.5 + parent: 1668 + - uid: 7315 + components: + - type: Transform + pos: -42.5,4.5 + parent: 1668 + - uid: 7316 + components: + - type: Transform + pos: -42.5,5.5 + parent: 1668 + - uid: 9073 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1668 + - uid: 9074 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1668 + - uid: 9281 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1668 +- proto: CarpetOrange + entities: + - uid: 2074 + components: + - type: Transform + pos: 31.5,11.5 + parent: 1668 + - uid: 2076 + components: + - type: Transform + pos: 30.5,12.5 + parent: 1668 + - uid: 2085 + components: + - type: Transform + pos: 30.5,11.5 + parent: 1668 + - uid: 2090 + components: + - type: Transform + pos: 31.5,12.5 + parent: 1668 + - uid: 2091 + components: + - type: Transform + pos: 32.5,11.5 + parent: 1668 + - uid: 2092 + components: + - type: Transform + pos: 32.5,12.5 + parent: 1668 +- proto: CarpetPurple + entities: + - uid: 1289 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1668 + - uid: 1291 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 1668 + - uid: 1292 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 1668 + - uid: 1296 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 1668 + - uid: 1297 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1668 + - uid: 1298 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 1668 + - uid: 1299 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 1668 + - uid: 1300 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 1668 + - uid: 1301 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 1668 + - uid: 1302 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 1668 + - uid: 1303 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 1668 + - uid: 1304 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 1668 + - uid: 1305 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 1668 + - uid: 1306 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 1668 + - uid: 1307 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 1668 + - uid: 1308 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 1668 + - uid: 1309 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 1668 +- proto: CarpetSBlue + entities: + - uid: 1980 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1668 + - uid: 1981 + components: + - type: Transform + pos: 27.5,21.5 + parent: 1668 + - uid: 1982 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1668 + - uid: 1983 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1668 + - uid: 1985 + components: + - type: Transform + pos: 28.5,24.5 + parent: 1668 +- proto: Catwalk + entities: + - uid: 3236 + components: + - type: Transform + pos: -27.5,18.5 + parent: 1668 + - uid: 3598 + components: + - type: Transform + pos: -11.5,16.5 + parent: 1668 + - uid: 3599 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1668 + - uid: 3600 + components: + - type: Transform + pos: -13.5,16.5 + parent: 1668 + - uid: 3601 + components: + - type: Transform + pos: -14.5,16.5 + parent: 1668 + - uid: 3890 + components: + - type: Transform + pos: -3.5,34.5 parent: 1668 - uid: 3891 components: - type: Transform - pos: -22.447554,-6.441281 + pos: -3.5,35.5 parent: 1668 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 4592 + - uid: 3899 components: - type: Transform - pos: -11.611271,-26.1594 + pos: 4.5,34.5 parent: 1668 - - uid: 4593 + - uid: 3900 components: - type: Transform - pos: -11.470646,-26.268776 + pos: 4.5,35.5 parent: 1668 -- proto: FoodCondimentPacketPepper - entities: - - uid: 4619 + - uid: 3901 components: - type: Transform - pos: 2.4944715,-29.54472 + pos: 2.5,34.5 parent: 1668 -- proto: FoodCondimentPacketSalt - entities: - - uid: 4618 + - uid: 3902 components: - type: Transform - pos: 2.4007215,-29.404095 + pos: 2.5,35.5 parent: 1668 -- proto: FoodMeat + - uid: 4005 + components: + - type: Transform + pos: -27.5,19.5 + parent: 1668 + - uid: 4006 + components: + - type: Transform + pos: -27.5,21.5 + parent: 1668 + - uid: 4007 + components: + - type: Transform + pos: -27.5,22.5 + parent: 1668 + - uid: 4008 + components: + - type: Transform + pos: -27.5,23.5 + parent: 1668 + - uid: 4009 + components: + - type: Transform + pos: -27.5,24.5 + parent: 1668 + - uid: 4010 + components: + - type: Transform + pos: -27.5,25.5 + parent: 1668 + - uid: 4011 + components: + - type: Transform + pos: -27.5,26.5 + parent: 1668 + - uid: 4012 + components: + - type: Transform + pos: -27.5,27.5 + parent: 1668 + - uid: 4013 + components: + - type: Transform + pos: -27.5,28.5 + parent: 1668 + - uid: 4014 + components: + - type: Transform + pos: -27.5,20.5 + parent: 1668 + - uid: 4840 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 1668 + - uid: 4843 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 1668 + - uid: 4844 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 1668 + - uid: 4845 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 1668 + - uid: 4846 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 1668 + - uid: 4847 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 1668 + - uid: 4848 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 1668 + - uid: 4849 + components: + - type: Transform + pos: 20.5,-48.5 + parent: 1668 + - uid: 6217 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1668 + - uid: 6218 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1668 + - uid: 7339 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 1668 + - uid: 7340 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 1668 + - uid: 7341 + components: + - type: Transform + pos: -54.5,0.5 + parent: 1668 + - uid: 7342 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 1668 + - uid: 7343 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 1668 + - uid: 7344 + components: + - type: Transform + pos: -53.5,0.5 + parent: 1668 + - uid: 7446 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 1668 + - uid: 7447 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 1668 + - uid: 7448 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 1668 + - uid: 7449 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 1668 + - uid: 7450 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 1668 + - uid: 7451 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 1668 + - uid: 7452 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 1668 + - uid: 7453 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 1668 + - uid: 7454 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 1668 + - uid: 7455 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 1668 + - uid: 7456 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 1668 + - uid: 7457 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 1668 + - uid: 7458 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 1668 + - uid: 7459 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 1668 + - uid: 7484 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 1668 + - uid: 9086 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1668 +- proto: CentcomIDCard entities: + - uid: 500 + components: + - type: Transform + pos: 1.6499417,-2.5131862 + parent: 1668 + - uid: 2814 + components: + - type: Transform + pos: -17.376116,11.607917 + parent: 1668 +- proto: CentcomPDA + entities: + - uid: 22 + components: + - type: Transform + pos: 1.5543553,-2.2420077 + parent: 1668 + - uid: 935 + components: + - type: Transform + pos: 1.5543553,-2.2420077 + parent: 1668 + - uid: 2817 + components: + - type: Transform + pos: -12.531908,13.561042 + parent: 1668 +- proto: Chair + entities: + - uid: 804 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1668 + - uid: 805 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1668 + - uid: 806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 1668 + - uid: 807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 1668 + - uid: 1372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1668 + - uid: 1756 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1668 + - uid: 1760 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1668 + - uid: 1761 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1668 + - uid: 1870 + components: + - type: Transform + pos: 28.5,24.5 + parent: 1668 + - uid: 1871 + components: + - type: Transform + pos: 24.5,24.5 + parent: 1668 + - uid: 1873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 1668 + - uid: 1962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1668 + - uid: 1963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,17.5 + parent: 1668 + - uid: 1964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,18.5 + parent: 1668 + - uid: 1965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 1668 + - uid: 1966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 1668 + - uid: 1967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,17.5 + parent: 1668 + - uid: 1968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,18.5 + parent: 1668 + - uid: 1969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 1668 + - uid: 1970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,18.5 + parent: 1668 + - uid: 1971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 1668 + - uid: 1972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 1668 + - uid: 1973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 1668 + - uid: 2006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,17.5 + parent: 1668 + - uid: 2007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,18.5 + parent: 1668 + - uid: 2008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 1668 + - uid: 2009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 1668 + - uid: 2010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,17.5 + parent: 1668 + - uid: 2011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,18.5 + parent: 1668 + - uid: 2012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,17.5 + parent: 1668 + - uid: 2013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,18.5 + parent: 1668 + - uid: 2014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 1668 + - uid: 2015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,16.5 + parent: 1668 + - uid: 2016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,16.5 + parent: 1668 + - uid: 2017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,16.5 + parent: 1668 + - uid: 2018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 1668 + - uid: 2019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,16.5 + parent: 1668 + - uid: 2020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,16.5 + parent: 1668 + - uid: 2021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 1668 + - uid: 2079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,11.5 + parent: 1668 + - uid: 2080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 1668 + - uid: 2122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 1668 + - uid: 3023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 1668 + - uid: 3991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,29.5 + parent: 1668 + - uid: 3992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,29.5 + parent: 1668 + - uid: 4240 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 1668 + - uid: 4241 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 1668 + - uid: 4242 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 1668 + - uid: 4243 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 1668 + - uid: 4244 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 1668 + - uid: 4245 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 1668 + - uid: 4246 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 1668 + - uid: 4247 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 1668 + - uid: 4248 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 1668 + - uid: 4249 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 1668 + - uid: 4250 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 1668 + - uid: 4251 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 1668 + - uid: 4252 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 1668 + - uid: 4253 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 1668 + - uid: 4254 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 1668 + - uid: 4255 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 1668 + - uid: 4256 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 1668 + - uid: 4257 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 1668 + - uid: 4258 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 1668 + - uid: 4259 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 1668 + - uid: 4260 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 1668 + - uid: 7282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,4.5 + parent: 1668 +- proto: ChairFolding + entities: + - uid: 1187 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 1668 + - uid: 7280 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 1668 + - uid: 9077 + components: + - type: Transform + pos: -7.0265236,-8.483158 + parent: 1668 +- proto: ChairGreyscale + entities: + - uid: 7309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,4.5 + parent: 1668 +- proto: ChairOfficeDark + entities: + - uid: 90 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1668 + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1668 + - uid: 483 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1668 + - uid: 514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1668 + - uid: 1153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 1668 + - uid: 1621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,12.5 + parent: 1668 + - uid: 2075 + components: + - type: Transform + pos: 32.5,12.5 + parent: 1668 + - uid: 2121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.570415,11.596919 + parent: 1668 + - uid: 2895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,6.5 + parent: 1668 + - uid: 2939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1668 + - uid: 2940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 1668 + - uid: 4050 + components: + - type: Transform + pos: -2.5,31.5 + parent: 1668 + - uid: 4051 + components: + - type: Transform + pos: 2.5,23.5 + parent: 1668 + - uid: 4052 + components: + - type: Transform + pos: 3.5,23.5 + parent: 1668 + - uid: 6741 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 1668 + - uid: 6742 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 1668 + - uid: 6743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 1668 + - uid: 6744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 1668 + - uid: 6745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 1668 + - uid: 6746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-9.5 + parent: 1668 + - uid: 6747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-9.5 + parent: 1668 + - uid: 9193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-9.5 + parent: 1668 + - uid: 9211 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 1668 +- proto: ChairOfficeLight + entities: + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1668 + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1668 + - uid: 831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 1668 +- proto: ChairWood + entities: + - uid: 941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,20.5 + parent: 1668 + - uid: 1193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,20.5 + parent: 1668 + - uid: 1195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,20.5 + parent: 1668 + - uid: 1355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,20.5 + parent: 1668 + - uid: 1918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,22.5 + parent: 1668 + - uid: 1919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 1668 + - uid: 1920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,21.5 + parent: 1668 + - uid: 1923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,22.5 + parent: 1668 + - uid: 1924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,20.5 + parent: 1668 + - uid: 1925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,21.5 + parent: 1668 + - uid: 1930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 1668 + - uid: 1956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,21.5 + parent: 1668 + - uid: 1960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,22.5 + parent: 1668 + - uid: 6170 + components: + - type: Transform + pos: -23.725513,-10.482539 + parent: 1668 + - uid: 6174 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 1668 + - uid: 6175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-8.5 + parent: 1668 +- proto: ChameleonProjector + entities: + - uid: 6002 + components: + - type: Transform + pos: -12.443271,7.649471 + parent: 1668 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 1386 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1668 + - uid: 1387 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1668 + - uid: 1388 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1668 +- proto: ChemDispenser + entities: + - uid: 664 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1668 + - uid: 665 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1668 +- proto: ChemistryHotplate + entities: + - uid: 671 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1668 +- proto: ChemMaster + entities: + - uid: 661 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1668 + - uid: 662 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1668 + - uid: 4291 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 1668 +- proto: CigaretteSpent + entities: + - uid: 1188 + components: + - type: Transform + pos: 15.857297,-21.743801 + parent: 1668 +- proto: CigarGold + entities: + - uid: 2022 + components: + - type: Transform + pos: 27.501572,27.69448 + parent: 1668 + - uid: 2023 + components: + - type: Transform + pos: 27.657822,27.678856 + parent: 1668 + - uid: 2974 + components: + - type: Transform + pos: -20.578415,11.695632 + parent: 1668 + - uid: 2975 + components: + - type: Transform + pos: -20.422165,11.664382 + parent: 1668 + - uid: 6764 + components: + - type: Transform + pos: -44.404884,-4.442357 + parent: 1668 +- proto: CigarGoldCase + entities: + - uid: 2977 + components: + - type: Transform + pos: -15.491083,9.742575 + parent: 1668 + - uid: 9161 + components: + - type: Transform + pos: 21.01059,-31.695402 + parent: 1668 +- proto: CigPackSyndicate + entities: + - uid: 2976 + components: + - type: Transform + pos: -11.04193,7.539497 + parent: 1668 +- proto: CircuitImprinter + entities: + - uid: 3271 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1668 +- proto: CloningPod + entities: + - uid: 733 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 1668 +- proto: ClosetBombFilled + entities: + - uid: 3101 + components: + - type: Transform + pos: 12.5,18.5 + parent: 1668 +- proto: ClosetChefFilled + entities: + - uid: 1182 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 1668 + - uid: 5451 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 1668 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 7345 + components: + - type: Transform + pos: -54.5,1.5 + parent: 1668 + - uid: 7495 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 1668 + - uid: 9095 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1668 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 7346 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 1668 + - uid: 7494 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 1668 + - uid: 9094 + components: + - type: Transform + pos: -25.5,1.5 + parent: 1668 +- proto: ClosetFireFilled + entities: + - uid: 7347 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 1668 +- proto: ClothingBackpackDeathSquad + entities: + - uid: 2476 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2484 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2509 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2524 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackERTEngineer + entities: + - uid: 6781 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6802 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackERTLeader + entities: + - uid: 6889 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackERTMedical + entities: + - uid: 6851 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6877 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackERTSecurity + entities: + - uid: 6814 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6843 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackSatchelHolding + entities: + - uid: 2629 + components: + - type: Transform + pos: -23.461355,13.518487 + parent: 1668 +- proto: ClothingBeltChiefEngineerFilled + entities: + - uid: 4047 + components: + - type: Transform + pos: -18.5,18.5 + parent: 1668 + - uid: 6787 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6808 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 2640 + components: + - type: Transform + pos: 15.68,30.671227 + parent: 1668 + - uid: 2641 + components: + - type: Transform + pos: 15.68,30.671227 + parent: 1668 + - uid: 2642 + components: + - type: Transform + pos: 15.68,30.671227 + parent: 1668 + - uid: 2643 + components: + - type: Transform + pos: 15.68,30.671227 + parent: 1668 + - 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]50%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingBeltSecurityFilled + entities: + - uid: 6813 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6832 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6887 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltSheathFilled + entities: + - uid: 2835 + components: + - type: Transform + pos: -13.520346,9.55136 + parent: 1668 +- proto: ClothingBeltUtility + entities: + - uid: 3183 + components: + - type: Transform + pos: -4.5072412,7.451564 + parent: 1668 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 2644 + components: + - type: Transform + pos: 16.395279,30.601782 + parent: 1668 + - uid: 2645 + components: + - type: Transform + pos: 16.395279,30.601782 + parent: 1668 + - uid: 2646 + components: + - type: Transform + pos: 16.395279,30.601782 + parent: 1668 + - uid: 2647 + components: + - type: Transform + pos: 16.395279,30.601782 + parent: 1668 + - uid: 3179 + components: + - type: Transform + pos: -4.5072412,7.795314 + parent: 1668 + - uid: 9219 + components: + - type: Transform + pos: -40.43181,-6.556486 + parent: 1668 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 6772 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6792 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 2471 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2490 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2505 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2518 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2836 + components: + - type: Transform + pos: -13.082846,13.67636 + parent: 1668 + - uid: 6818 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6841 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6898 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesHudMedSec + entities: + - uid: 6856 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6868 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9201 + components: + - type: Transform + pos: 17.184582,-13.58365 + parent: 1668 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 2466 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2483 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2497 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2513 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2837 + components: + - type: Transform + pos: -13.489096,9.64511 + parent: 1668 + - uid: 6782 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6809 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6819 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6845 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6896 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 6857 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6872 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatPartyBlue + entities: + - uid: 6076 + components: + - type: Transform + pos: -16.625902,-17.058979 + parent: 1668 +- proto: ClothingHeadHatPwig + entities: + - uid: 2117 + components: + - type: Transform + pos: 25.175821,27.700735 + parent: 1668 +- proto: ClothingHeadHelmetThunderdome + entities: + - uid: 4662 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 1668 + - uid: 4663 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 1668 + - uid: 4664 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 1668 + - uid: 4665 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 1668 + - uid: 4666 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 1668 + - uid: 4667 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 1668 + - uid: 4668 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 1668 + - uid: 4669 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 1668 + - uid: 4670 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 1668 + - uid: 4671 + components: + - type: Transform + pos: 9.5,-45.5 + parent: 1668 + - uid: 4672 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 1668 + - uid: 4673 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 1668 + - uid: 4674 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 1668 + - uid: 4675 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 1668 + - uid: 4676 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 1668 + - uid: 4677 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 1668 + - uid: 4678 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 1668 + - uid: 4679 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 1668 + - uid: 4680 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 1668 + - uid: 4681 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 1668 + - uid: 4682 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 1668 + - uid: 4683 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 1668 +- proto: ClothingHeadsetAltCentCom + entities: + - uid: 504 + components: + - type: Transform + pos: 0.51578563,1.563037 + parent: 1668 + - uid: 2465 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2486 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2499 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2523 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6788 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6806 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6824 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6830 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6849 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6883 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6894 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasDeathSquad + entities: + - uid: 2469 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2488 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2502 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2516 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasERT + entities: + - uid: 6783 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6807 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6815 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6829 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6847 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6881 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6888 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskNeckGaiter + entities: + - uid: 2479 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2493 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2511 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2527 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckBronzeheart + entities: + - uid: 4218 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 1668 +- proto: ClothingNeckCloakNanotrasen + entities: + - uid: 9340 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 1668 +- proto: ClothingNeckGoldmedal + entities: + - uid: 4217 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 1668 +- proto: ClothingNeckLawyerbadge + entities: + - uid: 4219 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 1668 +- proto: ClothingOuterArmorCaptainCarapace + entities: + - uid: 1101 + components: + - type: Transform + pos: -11.664687,7.5583878 + parent: 1668 +- proto: ClothingOuterArmorHeavyRed + entities: + - uid: 4640 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 1668 + - uid: 4641 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 1668 + - uid: 4642 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 1668 + - uid: 4643 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 1668 + - uid: 4644 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 1668 + - uid: 4645 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 1668 + - uid: 4646 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 1668 + - uid: 4647 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 1668 + - uid: 4648 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 1668 + - uid: 4649 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 1668 + - uid: 4650 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 1668 + - uid: 4651 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 1668 + - uid: 4652 + components: + - type: Transform + pos: 9.5,-45.5 + parent: 1668 + - uid: 4653 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 1668 + - uid: 4654 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 1668 + - uid: 4655 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 1668 + - uid: 4656 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 1668 + - uid: 4657 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 1668 + - uid: 4658 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 1668 + - uid: 4659 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 1668 + - uid: 4660 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 1668 + - uid: 4661 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 1668 +- proto: ClothingOuterHardsuitDeathsquad + entities: + - uid: 2472 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2495 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2503 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2519 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTEngineer + entities: + - uid: 6789 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6805 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTLeader + entities: + - uid: 6893 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTMedical + entities: + - uid: 6848 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6878 + components: + - type: Transform + parent: 6865 + - 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]50%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTSecurity + entities: + - uid: 6823 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6833 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterRobesJudge + entities: + - uid: 2116 + components: + - type: Transform + pos: 25.503946,27.606985 + parent: 1668 +- proto: ClothingShoesBootsMagAdv + entities: + - uid: 2468 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2485 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2498 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2515 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4048 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1668 + - uid: 6786 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6801 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6820 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6835 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6853 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6879 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6892 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsPerformer + entities: + - uid: 6084 + components: + - type: Transform + pos: -8.014507,-17.334332 + parent: 1668 +- proto: ClothingShoesBootsSpeed + entities: + - uid: 1543 + components: + - type: Transform + pos: -9.538566,5.4158797 + parent: 1668 +- proto: ClothingShoesChameleonNoSlips + entities: + - uid: 3420 + components: + - type: Transform + pos: -13.522441,10.1285 + parent: 1668 +- proto: ClothingShoesLeather + entities: + - uid: 2992 + components: + - type: Transform + pos: -19.521015,9.144212 + parent: 1668 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 6213 + components: + - type: Transform + pos: -22.480219,-6.422328 + parent: 1668 +- proto: ClothingUniformJumpskirtHoSParadeMale + entities: + - uid: 3242 + components: + - type: Transform + parent: 3239 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpskirtPerformer + entities: + - uid: 6083 + components: + - type: Transform + pos: -8.014507,-17.209332 + parent: 1668 +- proto: ClothingUniformJumpsuitDeathSquad + entities: + - uid: 2467 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2489 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2501 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2514 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitERTEngineer + entities: + - uid: 6785 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6804 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitERTLeader + entities: + - uid: 6891 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitERTMedic + entities: + - uid: 6850 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6882 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitERTSecurity + entities: + - uid: 6812 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6834 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitNanotrasen + entities: + - uid: 9341 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 1668 +- proto: ComfyChair + entities: + - uid: 1287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-21.5 + parent: 1668 + - uid: 1869 + components: + - type: Transform + pos: 26.5,24.5 + parent: 1668 + - uid: 2040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,25.5 + parent: 1668 + - uid: 2041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,26.5 + parent: 1668 + - uid: 2042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,27.5 + parent: 1668 + - uid: 2043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,25.5 + parent: 1668 + - uid: 2044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,26.5 + parent: 1668 + - uid: 2045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 1668 + - uid: 2078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 1668 + - uid: 2823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1668 + - uid: 2834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,12.5 + parent: 1668 + - uid: 2845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,11.5 + parent: 1668 + - uid: 2846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,12.5 + parent: 1668 + - uid: 2847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,11.5 + parent: 1668 + - uid: 2848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,12.5 + parent: 1668 + - uid: 2864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,12.5 + parent: 1668 + - uid: 4706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-46.5 + parent: 1668 + - uid: 4707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-46.5 + parent: 1668 + - uid: 4708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-46.5 + parent: 1668 + - uid: 4709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-46.5 + parent: 1668 + - uid: 4710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-46.5 + parent: 1668 + - uid: 4711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-46.5 + parent: 1668 + - uid: 4712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-46.5 + parent: 1668 + - uid: 4713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-46.5 + parent: 1668 + - uid: 4714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-46.5 + parent: 1668 + - uid: 6739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 1668 + - uid: 7277 + components: + - type: Transform + pos: -43.5,6.5 + parent: 1668 + - uid: 7278 + components: + - type: Transform + pos: -49.5,6.5 + parent: 1668 + - uid: 7279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-7.5 + parent: 1668 + - uid: 9149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 1668 + - uid: 9150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-31.5 + parent: 1668 + - uid: 9151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-32.5 + parent: 1668 + - uid: 9152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 1668 + - uid: 9155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 1668 + - uid: 9156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 1668 +- proto: ComputerCargoBounty + entities: + - uid: 4021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,26.5 + parent: 1668 +- proto: ComputerCargoOrders + entities: + - uid: 3905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,23.5 + parent: 1668 + - uid: 4024 + components: + - type: Transform + pos: -2.5,32.5 + parent: 1668 +- proto: ComputerCargoShuttle + entities: + - uid: 3907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 1668 +- proto: ComputerCloningConsole + entities: + - uid: 732 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 734: + - MedicalScannerSender: MedicalScannerReceiver + 733: + - CloningPodSender: CloningPodReceiver +- proto: ComputerComms + entities: + - uid: 2820 + components: + - type: Transform + pos: -15.5,13.5 + parent: 1668 + - uid: 2821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,12.5 + parent: 1668 + - uid: 6738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-8.5 + parent: 1668 +- proto: ComputerCriminalRecords + entities: + - uid: 363 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1668 + - uid: 1620 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1668 +- proto: ComputerId + entities: + - uid: 513 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1668 + - uid: 2810 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1668 + - uid: 2941 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1668 + - uid: 7105 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 1668 +- proto: ComputerShuttleCargo + entities: + - uid: 3906 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1668 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 8816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1668 +- proto: ComputerTelevision + entities: + - uid: 1376 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1668 + - uid: 2818 + components: + - type: Transform + pos: -11.5,13.5 + parent: 1668 +- proto: ConveyorBelt + entities: + - uid: 1626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,12.5 + parent: 1668 + - uid: 1627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1668 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,30.5 + parent: 1668 + - uid: 3638 + components: + - type: Transform + pos: 5.5,34.5 + parent: 1668 + - uid: 3644 + components: + - type: Transform + pos: 7.5,30.5 + parent: 1668 + - uid: 3645 + components: + - type: Transform + pos: 7.5,31.5 + parent: 1668 + - uid: 3646 + components: + - type: Transform + pos: 5.5,32.5 + parent: 1668 + - uid: 3647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,32.5 + parent: 1668 + - uid: 3649 + components: + - type: Transform + pos: 5.5,33.5 + parent: 1668 + - uid: 3650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,32.5 + parent: 1668 + - uid: 3651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,32.5 + parent: 1668 + - uid: 3653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,35.5 + parent: 1668 + - uid: 3654 + components: + - type: Transform + pos: 5.5,35.5 + parent: 1668 + - uid: 3655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 1668 + - uid: 3656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,34.5 + parent: 1668 + - uid: 3657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,33.5 + parent: 1668 + - uid: 3658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,32.5 + parent: 1668 + - uid: 3659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,31.5 + parent: 1668 + - uid: 3662 + components: + - type: Transform + pos: 5.5,36.5 + parent: 1668 + - uid: 3663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,32.5 + parent: 1668 +- proto: CrateEngineeringCableBulk + entities: + - uid: 1573 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1668 +- proto: CrateFreezer + entities: + - uid: 1181 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 1668 +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 1012 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 1668 +- proto: CrateHydroponicsSeedsMedicinal + entities: + - uid: 1013 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 1668 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 2236 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1668 +- proto: CrateStoneGrave + entities: + - uid: 6194 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1668 + - uid: 6195 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 1668 +- proto: CrateWoodenGrave + entities: + - uid: 6191 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 1668 +- proto: CrowbarGreen + entities: + - uid: 3173 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1668 +- proto: CrowbarRed + entities: + - uid: 2125 + components: + - type: Transform + pos: 24.488554,27.53513 + parent: 1668 + - uid: 6774 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6791 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6826 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6839 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6861 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6870 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6900 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9210 + components: + - type: Transform + pos: -30.541765,-7.579217 + parent: 1668 +- proto: CryoPod + entities: + - uid: 677 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1668 + - uid: 678 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1668 + - uid: 679 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1668 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 825 + components: + - type: Transform + pos: 11.342724,-9.280043 + parent: 1668 + - uid: 826 + components: + - type: Transform + pos: 11.6205015,-9.280043 + parent: 1668 + - uid: 827 + components: + - type: Transform + pos: 11.481613,-9.592543 + parent: 1668 + - uid: 828 + components: + - type: Transform + pos: 11.759391,-9.592543 + parent: 1668 +- proto: CurtainsBlack + entities: + - uid: 8764 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 1668 + - uid: 8765 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 1668 + - uid: 8766 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 1668 + - uid: 8767 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 1668 + - uid: 8768 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 1668 + - uid: 8769 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 1668 + - uid: 8770 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 1668 + - uid: 8771 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 1668 + - uid: 8772 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 1668 + - uid: 8773 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 1668 + - uid: 8774 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 1668 + - uid: 8775 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 1668 +- proto: CurtainsGreenOpen + entities: + - uid: 3003 + components: + - type: Transform + pos: -20.5,8.5 + parent: 1668 + - uid: 3251 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1668 + - uid: 6185 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 1668 + - uid: 6186 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 1668 +- proto: CurtainsPurpleOpen + entities: + - uid: 9131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-28.5 + parent: 1668 +- proto: CurtainsWhiteOpen + entities: + - uid: 2791 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1668 +- proto: d6Dice + entities: + - uid: 9168 + components: + - type: Transform + pos: 21.166475,-32.566944 + parent: 1668 + - uid: 9169 + components: + - type: Transform + pos: 21.322725,-32.879444 + parent: 1668 +- proto: DartPurple + entities: + - uid: 9174 + components: + - type: Transform + pos: 21.538181,-31.941444 + parent: 1668 + - uid: 9175 + components: + - type: Transform + pos: 21.569431,-32.191444 + parent: 1668 + - uid: 9176 + components: + - type: Transform + pos: 20.428806,-32.222694 + parent: 1668 +- proto: DawInstrument + entities: + - uid: 1315 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 1668 +- proto: DeathNettleSeeds + entities: + - uid: 1027 + components: + - type: Transform + pos: 9.760128,-23.28871 + parent: 1668 + - uid: 1028 + components: + - type: Transform + pos: 9.760128,-23.35121 + parent: 1668 + - uid: 1029 + components: + - type: Transform + pos: 9.760128,-23.41371 + parent: 1668 + - uid: 1030 + components: + - type: Transform + pos: 9.760128,-23.47621 + parent: 1668 +- proto: DeathsquadPDA + entities: + - uid: 2470 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2487 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2500 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2517 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DebugGenerator + entities: + - uid: 3212 + components: + - type: Transform + pos: -14.5,18.5 + parent: 1668 + - uid: 3216 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1668 + - uid: 3217 + components: + - type: Transform + pos: -14.5,19.5 + parent: 1668 + - uid: 5962 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1668 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 511 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1668 + - uid: 617 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1668 + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 1668 + - uid: 632 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1668 +- proto: DefibrillatorCompact + entities: + - uid: 902 + components: + - type: Transform + pos: 11.571457,-6.407301 + parent: 1668 +- proto: DeployableBarrier + entities: + - uid: 4376 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 1668 + - uid: 4377 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 1668 + - uid: 4391 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 1668 + - uid: 4394 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 1668 +- proto: DeskBell + entities: + - uid: 1379 + components: + - type: Transform + pos: 17.519514,-19.357069 + parent: 1668 + - uid: 3917 + components: + - type: Transform + pos: 2.5,22.5 + parent: 1668 +- proto: DisposalBend + entities: + - uid: 6234 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1668 + - uid: 6235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 1668 + - uid: 6239 + components: + - type: Transform + pos: 30.5,15.5 + parent: 1668 + - uid: 6272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 1668 + - uid: 6282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1668 + - uid: 6283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1668 + - uid: 6303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1668 + - uid: 6324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1668 + - uid: 6326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1668 + - uid: 6328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1668 + - uid: 6332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1668 + - uid: 6333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 1668 + - uid: 6334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1668 + - uid: 6345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1668 + - uid: 6361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1668 + - uid: 6362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1668 + - uid: 6375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1668 + - uid: 6392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-16.5 + parent: 1668 + - uid: 6402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 1668 + - uid: 6412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 1668 + - uid: 6413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-19.5 + parent: 1668 + - uid: 6414 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1668 + - uid: 6415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-23.5 + parent: 1668 + - uid: 6416 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1668 + - uid: 6445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 1668 + - uid: 6468 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1668 + - uid: 8708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 1668 + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-29.5 + parent: 1668 +- proto: DisposalJunction + entities: + - uid: 6298 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1668 + - uid: 6313 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1668 + - uid: 6338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 1668 + - uid: 6383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-18.5 + parent: 1668 + - uid: 6417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-26.5 + parent: 1668 + - uid: 8705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 1668 +- proto: DisposalJunctionFlipped + entities: + - uid: 6253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 1668 + - uid: 6289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1668 + - uid: 6312 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1668 + - uid: 6325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1668 + - uid: 6346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1668 + - uid: 6428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-26.5 + parent: 1668 + - uid: 6478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1668 + - uid: 9102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 1668 +- proto: DisposalPipe + entities: + - uid: 6226 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1668 + - uid: 6227 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1668 + - uid: 6228 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1668 + - uid: 6229 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1668 + - uid: 6230 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1668 + - uid: 6231 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1668 + - uid: 6232 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1668 + - uid: 6233 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1668 + - uid: 6236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 1668 + - uid: 6237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,14.5 + parent: 1668 + - uid: 6240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,15.5 + parent: 1668 + - uid: 6241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 1668 + - uid: 6242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 1668 + - uid: 6243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,15.5 + parent: 1668 + - uid: 6244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 1668 + - uid: 6245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,15.5 + parent: 1668 + - uid: 6246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1668 + - uid: 6247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1668 + - uid: 6248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 1668 + - uid: 6249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 1668 + - uid: 6250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 1668 + - uid: 6251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 1668 + - uid: 6252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 1668 + - uid: 6254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 1668 + - uid: 6255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 1668 + - uid: 6256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1668 + - uid: 6257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 1668 + - uid: 6258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 1668 + - uid: 6259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1668 + - uid: 6260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 1668 + - uid: 6261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1668 + - uid: 6262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1668 + - uid: 6263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1668 + - uid: 6264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,15.5 + parent: 1668 + - uid: 6265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1668 + - uid: 6266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1668 + - uid: 6267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1668 + - uid: 6268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1668 + - uid: 6269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,15.5 + parent: 1668 + - uid: 6273 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1668 + - uid: 6274 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1668 + - uid: 6275 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1668 + - uid: 6276 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1668 + - uid: 6277 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1668 + - uid: 6278 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1668 + - uid: 6279 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1668 + - uid: 6284 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1668 + - uid: 6285 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1668 + - uid: 6286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 1668 + - uid: 6287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1668 + - uid: 6288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 1668 + - uid: 6291 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1668 + - uid: 6292 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1668 + - uid: 6293 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1668 + - uid: 6294 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1668 + - uid: 6295 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1668 + - uid: 6296 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1668 + - uid: 6297 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1668 + - uid: 6300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1668 + - uid: 6301 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1668 + - uid: 6302 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1668 + - uid: 6304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1668 + - uid: 6305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1668 + - uid: 6306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1668 + - uid: 6307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1668 + - uid: 6308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1668 + - uid: 6309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1668 + - uid: 6310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1668 + - uid: 6311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1668 + - uid: 6314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1668 + - uid: 6315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1668 + - uid: 6316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1668 + - uid: 6317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1668 + - uid: 6318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1668 + - uid: 6319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1668 + - uid: 6320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1668 + - uid: 6321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1668 + - uid: 6322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1668 + - uid: 6329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1668 + - uid: 6330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1668 + - uid: 6335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1668 + - uid: 6336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 1668 + - uid: 6337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1668 + - uid: 6339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 1668 + - uid: 6340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1668 + - uid: 6341 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1668 + - uid: 6342 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1668 + - uid: 6343 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1668 + - uid: 6344 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1668 + - uid: 6347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1668 + - uid: 6348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1668 + - uid: 6349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1668 + - uid: 6350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1668 + - uid: 6351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1668 + - uid: 6352 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1668 + - uid: 6353 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1668 + - uid: 6354 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1668 + - uid: 6355 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1668 + - uid: 6356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1668 + - uid: 6357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1668 + - uid: 6358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1668 + - uid: 6359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1668 + - uid: 6360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1668 + - uid: 6364 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1668 + - uid: 6365 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1668 + - uid: 6366 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1668 + - uid: 6367 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1668 + - uid: 6368 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1668 + - uid: 6369 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1668 + - uid: 6370 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1668 + - uid: 6371 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1668 + - uid: 6372 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1668 + - uid: 6373 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1668 + - uid: 6376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 1668 + - uid: 6377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 1668 + - uid: 6378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 1668 + - uid: 6379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1668 + - uid: 6380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1668 + - uid: 6381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1668 + - uid: 6382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1668 + - uid: 6384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 1668 + - uid: 6385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1668 + - uid: 6386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1668 + - uid: 6387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1668 + - uid: 6388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1668 + - uid: 6393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-16.5 + parent: 1668 + - uid: 6394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-16.5 + parent: 1668 + - uid: 6395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-16.5 + parent: 1668 + - uid: 6396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-16.5 + parent: 1668 + - uid: 6397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-16.5 + parent: 1668 + - uid: 6398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 1668 + - uid: 6399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 1668 + - uid: 6400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 1668 + - uid: 6401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 1668 + - uid: 6403 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1668 + - uid: 6404 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1668 + - uid: 6405 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 1668 + - uid: 6406 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 1668 + - uid: 6407 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 1668 + - uid: 6408 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 1668 + - uid: 6409 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1668 + - uid: 6410 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1668 + - uid: 6411 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 1668 + - uid: 6418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-25.5 + parent: 1668 + - uid: 6419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-24.5 + parent: 1668 + - uid: 6420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-22.5 + parent: 1668 + - uid: 6421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 1668 + - uid: 6422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-20.5 + parent: 1668 + - uid: 6423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-18.5 + parent: 1668 + - uid: 6424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-26.5 + parent: 1668 + - uid: 6425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 1668 + - uid: 6426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 1668 + - uid: 6427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 1668 + - uid: 6429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 1668 + - uid: 6430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 1668 + - uid: 6431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 1668 + - uid: 6432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 1668 + - uid: 6433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 1668 + - uid: 6434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 1668 + - uid: 6435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 1668 + - uid: 6436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 1668 + - uid: 6437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 1668 + - uid: 6438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 1668 + - uid: 6439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 1668 + - uid: 6440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1668 + - uid: 6441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 1668 + - uid: 6442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1668 + - uid: 6443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 1668 + - uid: 6444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1668 + - uid: 6446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-25.5 + parent: 1668 + - uid: 6447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-24.5 + parent: 1668 + - uid: 6448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-23.5 + parent: 1668 + - uid: 6449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 1668 + - uid: 6450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 1668 + - uid: 6451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 1668 + - uid: 6452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 1668 + - uid: 6453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + - uid: 6454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1668 + - uid: 6455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1668 + - uid: 6456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1668 + - uid: 6457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1668 + - uid: 6458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 1668 + - uid: 6459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1668 + - uid: 6460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1668 + - uid: 6461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 1668 + - uid: 6462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1668 + - uid: 6463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1668 + - uid: 6464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1668 + - uid: 6465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1668 + - uid: 6469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 1668 + - uid: 6470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 1668 + - uid: 6471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 1668 + - uid: 6472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,5.5 + parent: 1668 + - uid: 6473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1668 + - uid: 6474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,3.5 + parent: 1668 + - uid: 6475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 1668 + - uid: 6476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,1.5 + parent: 1668 + - uid: 6477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 1668 + - uid: 8677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 1668 + - uid: 8678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 1668 + - uid: 8679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-7.5 + parent: 1668 + - uid: 8680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 1668 + - uid: 8681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-5.5 + parent: 1668 + - uid: 8682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 1668 + - uid: 8683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-3.5 + parent: 1668 + - uid: 8684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-2.5 + parent: 1668 + - uid: 8685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-1.5 + parent: 1668 + - uid: 8686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 1668 + - uid: 8687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 1668 + - uid: 8688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 1668 + - uid: 8689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 1668 + - uid: 8690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 1668 + - uid: 8691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 1668 + - uid: 8692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 1668 + - uid: 8693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 1668 + - uid: 8695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1668 + - uid: 8696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 1668 + - uid: 8697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1668 + - uid: 8698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1668 + - uid: 8699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 1668 + - uid: 8700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1668 + - uid: 8701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 1668 + - uid: 8702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1668 + - uid: 8703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1668 + - uid: 8704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 1668 + - uid: 8709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 1668 + - uid: 8710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 1668 + - uid: 8711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 1668 + - uid: 8712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 1668 + - uid: 8713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 1668 + - uid: 8714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 1668 + - uid: 8715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 1668 + - uid: 8716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 1668 + - uid: 8717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 1668 + - uid: 8718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 1668 + - uid: 8719 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 1668 + - uid: 9101 + components: + - type: Transform + pos: -31.5,0.5 + parent: 1668 + - uid: 9165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-29.5 + parent: 1668 + - uid: 9166 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 1668 + - uid: 9167 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 1668 +- proto: DisposalTrunk + entities: + - uid: 6219 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1668 + - uid: 6220 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1668 + - uid: 6221 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1668 + - uid: 6222 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 1668 + - uid: 6223 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1668 + - uid: 6225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 1668 + - uid: 6238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 1668 + - uid: 6271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,23.5 + parent: 1668 + - uid: 6280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1668 + - uid: 6299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1668 + - uid: 6323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 1668 + - uid: 6327 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1668 + - uid: 6331 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1668 + - uid: 6467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,7.5 + parent: 1668 + - uid: 8676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 1668 + - uid: 8694 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1668 + - uid: 8707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-2.5 + parent: 1668 + - uid: 9072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1668 + - uid: 9163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-29.5 + parent: 1668 +- proto: DisposalUnit + entities: + - uid: 509 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1668 + - uid: 1095 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1668 + - uid: 2610 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1668 + - uid: 2613 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1668 + - uid: 2614 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1668 + - uid: 2619 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1668 + - uid: 2620 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 1668 + - uid: 3007 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1668 + - uid: 3193 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1668 + - uid: 4321 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1668 + - uid: 6224 + components: + - type: Transform + pos: 17.5,3.5 + parent: 1668 + - uid: 6270 + components: + - type: Transform + pos: -0.5,23.5 + parent: 1668 + - uid: 6281 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1668 + - uid: 6466 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1668 + - uid: 6727 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 1668 + - uid: 8706 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 1668 + - uid: 9100 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1668 + - uid: 9162 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 1668 +- proto: DisposalYJunction + entities: + - uid: 6290 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1668 + - uid: 6363 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1668 + - uid: 6374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1668 +- proto: DonkpocketBoxSpawner + entities: + - uid: 5509 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 1668 +- proto: DoorRemoteAll + entities: + - uid: 1574 + components: + - type: Transform + pos: -23.357275,9.944693 + parent: 1668 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 2477 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2481 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2508 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2525 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 2475 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2482 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2507 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2526 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DresserCaptainFilled + entities: + - uid: 2824 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1668 +- proto: DresserFilled + entities: + - uid: 6183 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 1668 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 6115 + components: + - type: Transform + pos: -14.027711,-17.1509 + parent: 1668 +- proto: DrinkFlask + entities: + - uid: 1378 + components: + - type: Transform + pos: -10.52196,7.6029615 + parent: 1668 +- proto: DrinkGlass + entities: + - uid: 2830 + components: + - type: Transform + pos: -17.830986,26.658918 + parent: 1668 + - uid: 4083 + components: + - type: Transform + pos: -17.674736,26.502668 + parent: 1668 + - uid: 6203 + components: + - type: Transform + pos: 9.230212,-36.360332 + parent: 1668 + - uid: 6209 + components: + - type: Transform + pos: 9.480212,-36.360332 + parent: 1668 + - uid: 6210 + components: + - type: Transform + pos: 9.730212,-36.360332 + parent: 1668 +- proto: DrinkGoldenCup + entities: + - uid: 2654 + components: + - type: Transform + pos: -23.50823,12.659112 + parent: 1668 + - uid: 4215 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 1668 + - uid: 4216 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 1668 +- proto: DrinkIceBucket + entities: + - uid: 2118 + components: + - type: Transform + pos: 29.819233,-18.39215 + parent: 1668 + - uid: 6211 + components: + - type: Transform + pos: 10.514935,-35.88811 + parent: 1668 +- proto: DrinkJigger + entities: + - uid: 6204 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 1668 +- proto: DrinkLean + entities: + - uid: 6205 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 1668 +- proto: DrinkMeadGlass + entities: + - uid: 6075 + components: + - type: Transform + pos: -17.021734,-17.111063 + parent: 1668 +- proto: DrinkMugGreen + entities: + - uid: 2110 + components: + - type: Transform + pos: 27.337025,12.129932 + parent: 1668 +- proto: DrinkMugMetal + entities: + - uid: 2088 + components: + - type: Transform + pos: 31.480066,11.690669 + parent: 1668 +- proto: DrinkShaker + entities: + - uid: 1373 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1668 + - uid: 4041 + components: + - type: Transform + pos: -17.502861,26.705793 + parent: 1668 + - uid: 6208 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 1668 +- proto: DrinkShotGlass + entities: + - uid: 4760 + components: + - type: Transform + pos: 5.10735,-49.49396 + parent: 1668 + - uid: 4761 + components: + - type: Transform + pos: 4.966725,-49.27521 + parent: 1668 + - uid: 4762 + components: + - type: Transform + pos: 4.841725,-49.46271 + parent: 1668 + - uid: 6761 + components: + - type: Transform + pos: -45.467384,-5.457982 + parent: 1668 + - uid: 6762 + components: + - type: Transform + pos: -45.342384,-5.379857 + parent: 1668 +- proto: DrinkWaterBottleFull + entities: + - uid: 6113 + components: + - type: Transform + pos: -8.661282,-17.104218 + parent: 1668 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 4721 + components: + - type: Transform + pos: 5.497975,-49.24396 + parent: 1668 + - uid: 6760 + components: + - type: Transform + pos: -45.592384,-5.004857 + parent: 1668 +- proto: EmergencyMedipen + entities: + - uid: 821 + components: + - type: Transform + pos: 10.4410305,-6.633928 + parent: 1668 + - uid: 822 + components: + - type: Transform + pos: 10.4410305,-6.477678 + parent: 1668 + - uid: 823 + components: + - type: Transform + pos: 10.4410305,-6.321428 + parent: 1668 + - uid: 824 + components: + - type: Transform + pos: 10.4410305,-6.180803 + parent: 1668 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 820 + components: + - type: Transform + pos: 17.394156,-4.477678 + parent: 1668 +- proto: EmpGrenade + entities: + - uid: 2622 + components: + - type: Transform + pos: 14.292023,30.84699 + parent: 1668 + - uid: 2623 + components: + - type: Transform + pos: 14.292023,30.84699 + parent: 1668 + - uid: 2624 + components: + - type: Transform + pos: 14.292023,30.84699 + parent: 1668 + - uid: 2625 + components: + - type: Transform + pos: 14.292023,30.84699 + parent: 1668 +- proto: EnergyShield + entities: + - uid: 2692 + components: + - type: Transform + pos: 13.365765,32.570316 + parent: 1668 + - uid: 2693 + components: + - type: Transform + pos: 13.365765,32.570316 + parent: 1668 + - uid: 2694 + components: + - type: Transform + pos: 13.365765,32.570316 + parent: 1668 + - uid: 2697 + components: + - type: Transform + pos: 13.365765,32.570316 + parent: 1668 +- proto: EnergySword + entities: + - uid: 2667 + components: + - type: Transform + pos: 13.91264,32.80469 + parent: 1668 + - uid: 2668 + components: + - type: Transform + pos: 13.91264,32.80469 + parent: 1668 + - uid: 2670 + components: + - type: Transform + pos: 13.91264,32.80469 + parent: 1668 + - uid: 2671 + components: + - type: Transform + pos: 13.91264,32.80469 + parent: 1668 +- proto: EpinephrineChemistryBottle + entities: + - uid: 6859 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6860 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6867 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6871 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ERTEngineerPDA + entities: + - uid: 6784 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6803 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ERTLeaderPDA + entities: + - uid: 6895 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ERTMedicPDA + entities: + - uid: 6852 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6880 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ERTSecurityPDA + entities: + - uid: 6816 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6831 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExGrenade + entities: + - uid: 2605 + components: + - type: Transform + pos: 14.510773,30.826159 + parent: 1668 + - uid: 2606 + components: + - type: Transform + pos: 14.510773,30.826159 + parent: 1668 + - uid: 2607 + components: + - type: Transform + pos: 14.510773,30.826159 + parent: 1668 + - uid: 2608 + components: + - type: Transform + pos: 14.510773,30.826159 + parent: 1668 +- proto: ExplosivesSignMed + entities: + - uid: 2539 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1668 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 615 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1668 + - uid: 616 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1668 +- proto: ExtradimensionalOrangeSeeds + entities: + - uid: 1032 + components: + - type: Transform + pos: 10.211444,-23.286423 + parent: 1668 + - uid: 1047 + components: + - type: Transform + pos: 10.211444,-23.341978 + parent: 1668 + - uid: 1048 + components: + - type: Transform + pos: 10.211444,-23.402164 + parent: 1668 + - uid: 1049 + components: + - type: Transform + pos: 10.206814,-23.462349 + parent: 1668 +- proto: FaxMachineCentcom + entities: + - uid: 505 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1668 + - type: FaxMachine + name: Centcomm +- proto: FenceWoodSmallEnd + entities: + - uid: 6159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 1668 + - uid: 6162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 1668 +- proto: FenceWoodSmallStraight + entities: + - uid: 6160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 1668 + - uid: 6161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 1668 + - uid: 6163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 1668 + - uid: 6164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 1668 + - uid: 6165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 1668 + - uid: 6166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 1668 + - uid: 6168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 1668 +- proto: filingCabinetDrawerRandom + entities: + - uid: 498 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1668 + - uid: 2084 + components: + - type: Transform + pos: 25.5,10.5 + parent: 1668 +- proto: filingCabinetRandom + entities: + - uid: 506 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1668 + - uid: 2082 + components: + - type: Transform + pos: 30.5,12.5 + parent: 1668 + - uid: 6725 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 1668 + - uid: 6726 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 1668 + - uid: 7305 + components: + - type: Transform + pos: -47.5,3.5 + parent: 1668 + - uid: 7306 + components: + - type: Transform + pos: -41.5,3.5 + parent: 1668 + - uid: 7307 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 1668 +- proto: FirelockGlass + entities: + - uid: 2725 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1668 + - uid: 3995 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1668 + - uid: 3996 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1668 + - uid: 3998 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1668 + - uid: 3999 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1668 + - uid: 4000 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1668 + - uid: 4002 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1668 + - uid: 4003 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1668 + - uid: 4004 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1668 + - uid: 4766 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 1668 + - uid: 4767 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 1668 + - uid: 4768 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 1668 + - uid: 4769 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 1668 + - uid: 4770 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 1668 + - uid: 4771 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 1668 + - uid: 4772 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 1668 + - uid: 4773 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 1668 + - uid: 4774 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 1668 + - uid: 4775 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 1668 + - uid: 4776 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 1668 + - uid: 4777 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 1668 + - uid: 4778 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 1668 + - uid: 4779 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 1668 + - uid: 4780 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1668 + - uid: 4781 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1668 + - uid: 8593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,14.5 + parent: 1668 + - uid: 8594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,14.5 + parent: 1668 +- proto: Fireplace + entities: + - uid: 2842 + components: + - type: Transform + pos: -20.5,13.5 + parent: 1668 + - uid: 6169 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 1668 +- proto: Flash + entities: + - uid: 3423 + components: + - type: Transform + pos: -22.837252,13.706506 + parent: 1668 +- proto: FlashlightSeclite + entities: + - uid: 3613 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1668 + - uid: 6756 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 1668 + - uid: 6890 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FlippoEngravedLighter + entities: + - uid: 2841 + components: + - type: Transform + pos: -15.490675,9.659155 + parent: 1668 +- proto: FloorDrain + entities: + - uid: 676 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1668 + - type: Fixtures + fixtures: {} + - uid: 755 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 1668 + - type: Fixtures + fixtures: {} + - uid: 1185 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 1668 + - type: Fixtures + fixtures: {} + - uid: 2790 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1668 + - type: Fixtures + fixtures: {} +- proto: FloraTree + entities: + - uid: 5927 + components: + - type: Transform + pos: -27.01272,3.9405928 + parent: 1668 +- proto: FoodBoxDonut + entities: + - uid: 2678 + components: + - type: Transform + pos: -20.513674,12.565362 + parent: 1668 + - uid: 4763 + components: + - type: Transform + pos: 4.16985,-49.40021 + parent: 1668 + - uid: 6757 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 1668 + - uid: 6759 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 1668 +- proto: FoodCakeBirthdaySlice + entities: + - uid: 6073 + components: + - type: Transform + pos: -17.500902,-17.308979 + parent: 1668 +- proto: FoodCarrot + entities: + - uid: 5493 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5494 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5495 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5496 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5501 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCorn + entities: + - uid: 5453 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5454 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5455 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5456 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5457 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5458 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 5459 components: - type: Transform - parent: 5458 + parent: 5452 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 5460 components: - type: Transform - parent: 5458 + parent: 5452 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 5461 components: - type: Transform - parent: 5458 + parent: 5452 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 5462 components: - type: Transform - parent: 5458 + parent: 5452 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 5848 - components: - - type: Transform - parent: 5458 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPlateSmall +- proto: FoodGoldenApple entities: - - uid: 6627 + - uid: 4220 components: - type: Transform - pos: 0.5503339,-25.456686 + pos: 2.5,-31.5 parent: 1668 - - uid: 6628 +- proto: FoodMeat + entities: + - uid: 5482 components: - type: Transform - pos: 0.5503339,-25.394186 - parent: 1668 - - uid: 6629 + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5483 components: - type: Transform - pos: 0.5503339,-25.316061 - parent: 1668 + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5484 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5485 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5486 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5487 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5488 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5489 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5490 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5491 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMushroom + entities: + - uid: 5497 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5498 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5499 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5500 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5502 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: FoodPoppy entities: - - uid: 6605 + - uid: 1709 components: - type: Transform - pos: -11.182456,6.7149878 + pos: -10.2766075,7.7393837 parent: 1668 -- proto: FoodSaladColeslaw +- proto: FoodShakerPepper entities: - - uid: 6937 + - uid: 1374 components: - type: Transform - pos: 19.664907,20.706526 + pos: 21.365316,-15.9011 parent: 1668 -- proto: FoodTartGapple +- proto: FoodShakerSalt entities: - - uid: 4380 + - uid: 1375 components: - type: Transform - pos: 2.5,-23.5 + pos: 21.580595,-15.908045 parent: 1668 -- proto: ForkPlastic +- proto: FreedomImplanter entities: - - uid: 4200 + - uid: 2473 components: - type: Transform - pos: 0.20438054,-25.436565 - parent: 1668 - - uid: 4252 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2492 components: - type: Transform - pos: 0.20438054,-25.436565 - parent: 1668 - - uid: 5451 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2504 components: - type: Transform - pos: 0.20438054,-25.436565 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2521 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FrezonCanister + entities: + - uid: 4118 + components: + - type: Transform + pos: -22.5,30.5 parent: 1668 - proto: GasFilter entities: - - uid: 6652 + - uid: 684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 + rot: 3.141592653589793 rad + pos: 18.5,-10.5 parent: 1668 + - type: GasFilter + filteredGas: CarbonDioxide - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' +- proto: GasFilterFlipped + entities: + - uid: 3497 + components: + - type: Transform + pos: -24.5,26.5 + parent: 1668 + - type: GasFilter + filteredGas: Nitrogen + - uid: 3499 + components: + - type: Transform + pos: -24.5,21.5 + parent: 1668 + - type: GasFilter + filteredGas: Oxygen + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasMinerNitrogenStationLarge entities: - - uid: 3466 + - uid: 3398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-29.5 + pos: -30.5,26.5 parent: 1668 - proto: GasMinerOxygenStationLarge entities: - - uid: 3797 + - uid: 3400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 + pos: -30.5,20.5 parent: 1668 -- proto: GasMixer +- proto: GasMixerFlipped entities: - - uid: 5070 + - uid: 3508 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-30.5 + pos: -22.5,19.5 parent: 1668 - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - targetPressure: 4500 + inletTwoConcentration: 0.77 + inletOneConcentration: 0.23 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasOutletInjector + entities: + - uid: 3477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,21.5 + parent: 1668 + - uid: 3478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,27.5 + parent: 1668 - proto: GasPassiveVent entities: - - uid: 3430 + - uid: 1768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-32.5 + rot: 3.141592653589793 rad + pos: 12.5,-22.5 parent: 1668 - - uid: 5399 + - uid: 2055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 + pos: -25.5,29.5 parent: 1668 - - uid: 6141 + - uid: 3479 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-32.5 + pos: -29.5,25.5 parent: 1668 - - uid: 6312 + - uid: 3480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-28.5 + pos: -29.5,19.5 parent: 1668 - proto: GasPipeBend entities: - - uid: 3660 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1668 - - uid: 3670 + - uid: 690 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,5.5 + pos: 15.5,-12.5 parent: 1668 - - uid: 3674 + - uid: 691 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,9.5 + pos: 15.5,-8.5 parent: 1668 - - uid: 3675 + - uid: 692 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1668 + - uid: 693 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,9.5 + pos: 18.5,-12.5 parent: 1668 - - uid: 3676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1668 - - uid: 3684 - components: - - type: Transform - pos: -15.5,11.5 - parent: 1668 - - uid: 3686 + - uid: 694 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,9.5 + pos: 17.5,-11.5 parent: 1668 - - uid: 4712 + - uid: 790 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1668 + - uid: 1710 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-32.5 + pos: -25.5,28.5 parent: 1668 - - uid: 4714 + - uid: 1732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-31.5 + pos: -24.5,28.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 1668 - - uid: 5067 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 1668 - - uid: 5069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 1668 - - uid: 5389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5513 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5519 + - uid: 3502 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-19.5 + pos: -25.5,26.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5529 + - uid: 3503 + components: + - type: Transform + pos: -25.5,27.5 + parent: 1668 + - uid: 3509 + components: + - type: Transform + pos: -22.5,25.5 + parent: 1668 + - uid: 3532 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-19.5 + pos: -24.5,20.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5540 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5598 + color: '#FF1212FF' + - uid: 7268 components: - type: Transform pos: 4.5,3.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5599 + color: '#FF1212FF' + - uid: 7269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7270 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5661 + color: '#FF1212FF' + - uid: 7317 components: - type: Transform - pos: -20.5,-1.5 + rot: 1.5707963267948966 rad + pos: -7.5,5.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5699 + color: '#0335FCFF' + - uid: 7319 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7496 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,10.5 + pos: -7.5,-6.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,27.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6309 + color: '#0335FCFF' + - uid: 7497 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-37.5 + pos: -5.5,-4.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6311 + color: '#FF1212FF' + - uid: 7686 components: - type: Transform - pos: 21.5,-31.5 + pos: -15.5,19.5 parent: 1668 - - uid: 6656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 1668 - - uid: 6657 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7687 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1668 - - uid: 6660 - components: - - type: Transform - pos: 12.5,-2.5 + pos: -15.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6663 + color: '#0335FCFF' + - uid: 7705 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-2.5 + pos: -9.5,11.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6664 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6665 + color: '#0335FCFF' + - uid: 7707 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + pos: -5.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6666 + color: '#0335FCFF' + - uid: 7719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 + pos: -4.5,18.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6678 + color: '#FF1212FF' + - uid: 7720 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6679 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6681 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6712 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeFourway - entities: - - uid: 3678 - components: - - type: Transform - pos: -21.5,9.5 - parent: 1668 - - uid: 5492 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5571 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6310 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeSensorDistribution - entities: - - uid: 3883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeSensorWaste - entities: - - uid: 3860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeStraight - entities: - - uid: 3664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,5.5 - parent: 1668 - - uid: 3665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,5.5 - parent: 1668 - - uid: 3666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1668 - - uid: 3667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,5.5 - parent: 1668 - - uid: 3668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,5.5 - parent: 1668 - - uid: 3669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 1668 - - uid: 3672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 1668 - - uid: 3673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,8.5 - parent: 1668 - - uid: 3677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 1668 - - uid: 3679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 1668 - - uid: 3680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 1668 - - uid: 3681 - components: - - type: Transform - pos: -18.5,10.5 - parent: 1668 - - uid: 3682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1668 - - uid: 3683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,11.5 - parent: 1668 - - uid: 3685 - components: - - type: Transform - pos: -15.5,10.5 - parent: 1668 - - uid: 3690 - components: - - type: Transform - pos: -21.5,10.5 - parent: 1668 - - uid: 3691 - components: - - type: Transform - pos: -21.5,11.5 - parent: 1668 - - uid: 3692 - components: - - type: Transform - pos: -21.5,12.5 - parent: 1668 - - uid: 3693 - components: - - type: Transform - pos: -21.5,13.5 - parent: 1668 - - uid: 4702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 1668 - - uid: 4711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-30.5 - parent: 1668 - - uid: 4713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-29.5 - parent: 1668 - - uid: 5068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-29.5 - parent: 1668 - - uid: 5387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 1668 - - uid: 5418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5466 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5467 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5468 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5469 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5486 - components: - - type: Transform - pos: 25.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5487 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5488 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5489 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5490 - components: - - type: Transform - pos: 25.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5491 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5504 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5545 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5546 - components: - - type: Transform - pos: -0.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5547 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5548 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5549 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5550 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5561 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5562 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5586 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5587 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5588 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5589 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5590 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5591 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5618 - components: - - type: Transform - pos: 4.5,2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5619 - components: - - type: Transform - pos: 4.5,1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5620 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5621 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5622 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5623 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5653 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5654 - components: - - type: Transform - pos: -30.5,0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5655 - components: - - type: Transform - pos: -30.5,1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5656 - components: - - type: Transform - pos: -30.5,2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5657 - components: - - type: Transform - pos: -30.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5662 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5672 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5673 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5674 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5675 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5676 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5677 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5680 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5701 - components: - - type: Transform - pos: -10.5,17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5702 - components: - - type: Transform pos: -10.5,18.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5703 - components: - - type: Transform - pos: -10.5,19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5704 + color: '#FF1212FF' + - uid: 7721 components: - type: Transform pos: -10.5,20.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5705 - components: - - type: Transform - pos: -10.5,21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5706 - components: - - type: Transform - pos: -10.5,22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5708 - components: - - type: Transform - pos: -10.5,24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5709 - components: - - type: Transform - pos: -10.5,25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5710 - components: - - type: Transform - pos: -10.5,26.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5715 + color: '#FF1212FF' + - uid: 8091 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,10.5 + pos: 11.5,32.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5716 + color: '#0335FCFF' + - uid: 8092 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8162 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8163 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,10.5 + pos: -1.5,29.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5718 - components: - - type: Transform - pos: -10.5,11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5719 - components: - - type: Transform - pos: -10.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5720 - components: - - type: Transform - pos: -10.5,13.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5721 - components: - - type: Transform - pos: -10.5,14.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5722 - components: - - type: Transform - pos: -10.5,15.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5745 - components: - - type: Transform - pos: 11.5,13.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5746 - components: - - type: Transform - pos: 11.5,14.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5747 - components: - - type: Transform - pos: 11.5,15.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5748 - components: - - type: Transform - pos: 11.5,16.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5749 - components: - - type: Transform - pos: 11.5,17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5750 - components: - - type: Transform - pos: 11.5,18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5751 - components: - - type: Transform - pos: 11.5,19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5752 - components: - - type: Transform - pos: 11.5,20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5753 - components: - - type: Transform - pos: 11.5,21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5754 - components: - - type: Transform - pos: 11.5,22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5755 - components: - - type: Transform - pos: 11.5,23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5757 - components: - - type: Transform - pos: 28.5,13.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5758 - components: - - type: Transform - pos: 28.5,14.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5759 - components: - - type: Transform - pos: 28.5,15.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5760 - components: - - type: Transform - pos: 28.5,16.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5761 - components: - - type: Transform - pos: 28.5,17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5762 - components: - - type: Transform - pos: 28.5,18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5766 + color: '#0335FCFF' + - uid: 8168 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: 1.5,24.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5767 + color: '#FF1212FF' + - uid: 8169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 + pos: 1.5,26.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5790 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5791 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5792 - components: - - type: Transform - pos: -13.5,-28.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5793 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5794 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5796 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1668 - - uid: 6138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 1668 - - uid: 6139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 1668 - - uid: 6226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6315 + color: '#FF1212FF' + - uid: 8170 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-36.5 + pos: 0.5,26.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-35.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-33.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-37.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6327 - components: - - type: Transform - pos: 4.5,-36.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6328 - components: - - type: Transform - pos: 4.5,-35.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6329 - components: - - type: Transform - pos: 4.5,-34.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6330 - components: - - type: Transform - pos: 4.5,-33.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6331 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6332 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6333 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6661 + color: '#FF1212FF' + - uid: 8187 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-2.5 + pos: 21.5,0.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6662 + color: '#0335FCFF' + - uid: 8188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 + pos: 21.5,-1.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6668 + color: '#FF1212FF' + - uid: 8190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 + pos: 29.5,-4.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6671 + color: '#FF1212FF' + - uid: 8191 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-1.5 + pos: 21.5,2.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6672 + color: '#0335FCFF' + - uid: 8192 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8254 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-1.5 + pos: 20.5,-15.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6673 + color: '#0335FCFF' + - uid: 8282 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-1.5 + pos: 21.5,-17.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6674 + color: '#FF1212FF' + - uid: 8318 components: - type: Transform - pos: 4.5,-6.5 + rot: 3.141592653589793 rad + pos: 5.5,-20.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6675 + color: '#FF1212FF' + - uid: 8320 components: - type: Transform - pos: 4.5,-7.5 + rot: 1.5707963267948966 rad + pos: 8.5,-19.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6676 + color: '#FF1212FF' + - uid: 8322 components: - type: Transform - pos: 4.5,-8.5 + pos: 8.5,-16.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6677 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6682 + color: '#0335FCFF' + - uid: 8324 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-11.5 + pos: 5.5,-17.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6683 + color: '#0335FCFF' + - uid: 8348 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-11.5 + pos: 30.5,-25.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6684 + color: '#0335FCFF' + - uid: 8349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8363 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-11.5 + pos: 33.5,-27.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6685 + color: '#FF1212FF' + - uid: 8376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8395 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-11.5 + pos: 21.5,-10.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6688 + color: '#FF1212FF' + - uid: 8397 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-12.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-26.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-27.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-28.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6710 + color: '#FF1212FF' + - uid: 8451 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-32.5 + pos: -36.5,-12.5 parent: 1668 - - uid: 6714 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8452 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-31.5 + pos: -33.5,-14.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-29.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeTJunction - entities: - - uid: 3671 + color: '#FF1212FF' + - uid: 8469 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,6.5 + pos: -4.5,8.5 parent: 1668 - - uid: 5465 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8501 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-30.5 + pos: -16.5,21.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5470 + color: '#0335FCFF' + - uid: 8521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8544 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-25.5 + pos: 21.5,25.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5473 + color: '#FF1212FF' + - uid: 8545 components: - type: Transform - pos: 16.5,-25.5 + rot: -1.5707963267948966 rad + pos: 22.5,25.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5477 + color: '#FF1212FF' + - uid: 8546 components: - type: Transform rot: 3.141592653589793 rad + pos: 21.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8552 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8577 + components: + - type: Transform + pos: 31.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8867 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8872 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8915 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8975 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9015 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeFourway + entities: + - uid: 686 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1668 + - uid: 7682 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7683 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7789 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7806 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8050 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8051 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8253 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8518 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8591 + components: + - type: Transform + pos: 31.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8603 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8735 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8756 + components: + - type: Transform + pos: -22.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9124 + components: + - type: Transform pos: 20.5,-25.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5478 + color: '#0335FCFF' +- proto: GasPipeStraight + entities: + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 1668 + - uid: 696 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1668 + - uid: 697 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1668 + - uid: 3481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,19.5 + parent: 1668 + - uid: 3482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,19.5 + parent: 1668 + - uid: 3483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,19.5 + parent: 1668 + - uid: 3484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,21.5 + parent: 1668 + - uid: 3485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,21.5 + parent: 1668 + - uid: 3486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,21.5 + parent: 1668 + - uid: 3487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,25.5 + parent: 1668 + - uid: 3488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,25.5 + parent: 1668 + - uid: 3489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,25.5 + parent: 1668 + - uid: 3490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,27.5 + parent: 1668 + - uid: 3491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,27.5 + parent: 1668 + - uid: 3492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,27.5 + parent: 1668 + - uid: 3501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,21.5 + parent: 1668 + - uid: 3504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,19.5 + parent: 1668 + - uid: 3505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,25.5 + parent: 1668 + - uid: 3506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 1668 + - uid: 3507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,19.5 + parent: 1668 + - uid: 3510 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-25.5 + pos: -22.5,20.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5542 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5543 + - uid: 3511 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-17.5 + pos: -22.5,21.5 + parent: 1668 + - uid: 3512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,22.5 + parent: 1668 + - uid: 3513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,23.5 + parent: 1668 + - uid: 3514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,24.5 + parent: 1668 + - uid: 3515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,22.5 + parent: 1668 + - uid: 3516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 1668 + - uid: 3517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,24.5 + parent: 1668 + - uid: 3518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,25.5 + parent: 1668 + - uid: 3519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,27.5 + parent: 1668 + - uid: 3522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,19.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5544 + color: '#0335FCFF' + - uid: 3523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7499 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-16.5 + pos: 4.5,-6.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5563 + color: '#0335FCFF' + - uid: 7500 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-22.5 + pos: 3.5,-6.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5572 + color: '#0335FCFF' + - uid: 7501 components: - type: Transform - pos: -1.5,-11.5 + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5592 + color: '#0335FCFF' + - uid: 7502 components: - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7511 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7512 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7513 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7514 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7515 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7516 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7518 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7519 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7520 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7521 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7549 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-4.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5593 + color: '#FF1212FF' + - uid: 7550 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-0.5 + pos: -1.5,-4.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5594 + color: '#FF1212FF' + - uid: 7552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7555 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7556 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7558 components: - type: Transform - rot: -1.5707963267948966 rad pos: -5.5,-0.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5595 + color: '#FF1212FF' + - uid: 7559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5607 - components: - - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5613 + color: '#FF1212FF' + - uid: 7560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 + pos: -5.5,1.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5627 + color: '#FF1212FF' + - uid: 7561 components: - type: Transform - pos: 0.5,-4.5 + pos: -5.5,2.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5643 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5678 + color: '#FF1212FF' + - uid: 7562 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,10.5 + pos: -4.5,3.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5679 + color: '#FF1212FF' + - uid: 7564 components: - type: Transform - pos: -0.5,12.5 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5698 + color: '#FF1212FF' + - uid: 7565 components: - type: Transform - pos: -6.5,10.5 + rot: -1.5707963267948966 rad + pos: -1.5,3.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5700 + color: '#FF1212FF' + - uid: 7566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7657 + components: + - type: Transform + pos: -50.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7692 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5707 + color: '#0335FCFF' + - uid: 7694 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7695 + components: + - type: Transform + pos: -9.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7696 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7697 + components: + - type: Transform + pos: -9.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7708 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,23.5 + pos: -2.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5772 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5789 + color: '#0335FCFF' + - uid: 7709 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-31.5 + pos: -3.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5805 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5815 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 1668 - - uid: 6653 + color: '#0335FCFF' + - uid: 7710 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 1668 - - uid: 6654 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 1668 - - uid: 6708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-32.5 + pos: -4.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPort - entities: - - uid: 208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-32.5 - parent: 1668 - - uid: 3577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 1668 - - uid: 3659 - components: - - type: Transform - pos: -14.5,6.5 - parent: 1668 - - uid: 3662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,4.5 - parent: 1668 - - uid: 6655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 1668 - - uid: 6705 - components: - - type: Transform - pos: 16.5,-31.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6706 - components: - - type: Transform - pos: 17.5,-31.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPressurePump - entities: - - uid: 3663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 1668 - - uid: 5395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 - parent: 1668 - - type: GasPressurePump - targetPressure: 385 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5400 + color: '#0335FCFF' + - uid: 7711 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-31.5 + pos: -0.5,14.5 parent: 1668 - - type: GasPressurePump - targetPressure: 4500 - type: AtmosPipeColor - color: '#990000FF' -- proto: GasThermoMachineFreezer - entities: - - uid: 6641 - components: - - type: Transform - pos: 13.5,-4.5 - parent: 1668 -- proto: GasVentPump - entities: - - uid: 3687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1668 - - uid: 3688 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,8.5 - parent: 1668 - - uid: 3689 + color: '#FF1212FF' + - uid: 7712 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 1668 - - uid: 3694 - components: - - type: Transform - pos: -21.5,14.5 - parent: 1668 - - uid: 5474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-26.5 + pos: -1.5,14.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5475 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5506 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5521 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5538 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5554 + color: '#FF1212FF' + - uid: 7713 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-22.5 + pos: -2.5,14.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5583 + color: '#FF1212FF' + - uid: 7714 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-11.5 + pos: -3.5,14.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5658 + color: '#FF1212FF' + - uid: 7716 components: - type: Transform - pos: -30.5,4.5 + pos: -4.5,15.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5659 + color: '#FF1212FF' + - uid: 7717 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7718 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7727 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-2.5 + pos: -10.5,19.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5663 + color: '#FF1212FF' + - uid: 7728 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-1.5 + pos: -11.5,20.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-3.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5666 - components: - - type: Transform - pos: -6.5,0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5667 - components: - - type: Transform - pos: 5.5,0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5671 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5696 + color: '#FF1212FF' + - uid: 7730 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,12.5 + pos: -13.5,20.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5697 + color: '#FF1212FF' + - uid: 7731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,9.5 + rot: 1.5707963267948966 rad + pos: -14.5,20.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5712 + color: '#FF1212FF' + - uid: 7732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,27.5 + rot: 1.5707963267948966 rad + pos: -15.5,20.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5713 + color: '#FF1212FF' + - uid: 7733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,23.5 + rot: 1.5707963267948966 rad + pos: -16.5,20.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5714 + color: '#FF1212FF' + - uid: 7734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,16.5 + rot: 1.5707963267948966 rad + pos: -17.5,20.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5742 + color: '#FF1212FF' + - uid: 7735 components: - type: Transform - pos: 10.5,13.5 + rot: 1.5707963267948966 rad + pos: -0.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5743 + color: '#0335FCFF' + - uid: 7736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,11.5 + rot: 1.5707963267948966 rad + pos: 0.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5744 + color: '#0335FCFF' + - uid: 7737 components: - type: Transform - pos: 18.5,13.5 + rot: 1.5707963267948966 rad + pos: 1.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5756 + color: '#0335FCFF' + - uid: 7738 components: - type: Transform - pos: 11.5,24.5 + rot: 1.5707963267948966 rad + pos: 2.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5763 + color: '#0335FCFF' + - uid: 7739 components: - type: Transform - pos: 28.5,19.5 + rot: 1.5707963267948966 rad + pos: 3.5,16.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5779 + color: '#0335FCFF' + - uid: 7740 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7808 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,-1.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5814 + color: '#FF1212FF' + - uid: 7809 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-32.5 + pos: 13.5,-1.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5824 + color: '#FF1212FF' + - uid: 7811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7817 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7818 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7820 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7821 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7823 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7824 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7825 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7827 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7828 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7830 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7831 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7832 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7833 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7834 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7836 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7837 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7838 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7840 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7841 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7843 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7844 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7845 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7846 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7848 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7849 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7851 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7852 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7853 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7854 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7855 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7856 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7878 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-31.5 + pos: 19.5,-25.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5825 + color: '#0335FCFF' + - uid: 7879 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-31.5 + pos: 15.5,-25.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5887 + color: '#0335FCFF' + - uid: 7880 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-23.5 + pos: 19.5,-27.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6003 + color: '#FF1212FF' + - uid: 7881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7956 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-25.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6227 + color: '#0335FCFF' + - uid: 7957 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-32.5 + pos: -15.5,-25.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6334 + color: '#0335FCFF' + - uid: 7959 components: - type: Transform - pos: -0.5,-36.5 + rot: 1.5707963267948966 rad + pos: -13.5,-25.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6335 + color: '#0335FCFF' + - uid: 7960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-41.5 + rot: 1.5707963267948966 rad + pos: -12.5,-25.5 parent: 1668 - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 6140 + color: '#0335FCFF' + - uid: 7961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7971 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7972 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7973 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-32.5 + pos: -2.5,-12.5 parent: 1668 -- proto: GeneratorBasic15kW - entities: - - uid: 5176 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7974 components: - type: Transform - pos: 30.5,-21.5 + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 parent: 1668 - - uid: 5177 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7975 components: - type: Transform - pos: 30.5,-25.5 + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 parent: 1668 - - uid: 5178 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8021 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8022 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8023 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8024 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8025 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8026 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8027 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8028 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8029 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8030 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8031 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8032 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8034 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8035 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8036 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8037 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8038 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8039 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8040 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8041 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8042 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8043 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8045 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8046 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8047 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8048 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8049 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8106 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8107 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8108 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8109 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8110 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8111 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8112 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8113 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8114 + components: + - type: Transform + pos: 15.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8115 + components: + - type: Transform + pos: 15.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8116 + components: + - type: Transform + pos: 15.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8117 + components: + - type: Transform + pos: 15.5,28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8118 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8119 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8120 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8121 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8122 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8124 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8125 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8126 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8127 + components: + - type: Transform + pos: -1.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8128 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8129 + components: + - type: Transform + pos: -1.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8130 + components: + - type: Transform + pos: -1.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8131 + components: + - type: Transform + pos: -1.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8132 + components: + - type: Transform + pos: -1.5,28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8134 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8135 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8136 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8139 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8140 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8141 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8193 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8194 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8195 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8255 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8256 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8257 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8258 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8259 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8260 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8261 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8263 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8311 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8312 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8313 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8355 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8356 components: - type: Transform pos: 30.5,-23.5 parent: 1668 - - uid: 5179 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8357 components: - type: Transform - pos: 34.5,-25.5 + pos: 30.5,-22.5 parent: 1668 - - uid: 5180 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8358 components: - type: Transform - pos: 34.5,-23.5 + pos: 30.5,-21.5 parent: 1668 - - uid: 5181 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8359 components: - type: Transform - pos: 34.5,-21.5 + pos: 30.5,-20.5 parent: 1668 - - uid: 5455 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8360 components: - type: Transform - pos: 32.5,-24.5 + rot: -1.5707963267948966 rad + pos: 31.5,-19.5 parent: 1668 - - uid: 5456 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8364 components: - type: Transform - pos: 32.5,-22.5 + rot: 3.141592653589793 rad + pos: 33.5,-26.5 parent: 1668 - - uid: 6596 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8365 components: - type: Transform + rot: 3.141592653589793 rad pos: 33.5,-25.5 parent: 1668 - - uid: 6597 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8366 components: - type: Transform - pos: 31.5,-25.5 + rot: 3.141592653589793 rad + pos: 33.5,-24.5 parent: 1668 - - uid: 6598 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8383 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8390 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8391 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8392 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8393 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8394 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8464 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8465 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8466 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8467 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8468 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8498 + components: + - type: Transform + pos: -16.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8553 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8554 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8555 + components: + - type: Transform + pos: 22.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8556 + components: + - type: Transform + pos: 22.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8557 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8567 + components: + - type: Transform + pos: 34.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8568 + components: + - type: Transform + pos: 34.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8569 + components: + - type: Transform + pos: 31.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8570 + components: + - type: Transform + pos: 31.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8571 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8572 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8573 + components: + - type: Transform + pos: 31.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8574 + components: + - type: Transform + pos: 31.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8575 + components: + - type: Transform + pos: 31.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8576 + components: + - type: Transform + pos: 31.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8579 + components: + - type: Transform + pos: 30.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8580 + components: + - type: Transform + pos: 30.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8581 + components: + - type: Transform + pos: 30.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8582 + components: + - type: Transform + pos: 29.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8583 + components: + - type: Transform + pos: 29.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8584 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8585 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8586 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8618 + components: + - type: Transform + pos: -50.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8619 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8620 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8621 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8622 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8623 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8624 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8625 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8626 + components: + - type: Transform + pos: -48.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8627 + components: + - type: Transform + pos: -48.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8628 + components: + - type: Transform + pos: -48.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8656 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8657 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8658 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8659 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8660 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8661 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8662 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8663 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8664 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8665 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8666 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8667 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8668 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8669 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8832 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8844 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8845 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8846 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-39.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-38.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8856 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8857 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8858 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8859 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8861 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8862 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8863 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8864 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8865 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8884 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8885 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8886 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8887 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8888 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8889 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8890 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8891 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8892 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8921 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8922 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8923 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8924 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8925 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8926 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8927 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8928 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8929 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8930 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8931 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8932 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8933 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8934 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8935 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8936 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8937 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8938 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8941 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8942 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8943 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8944 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8945 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8978 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9001 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9127 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeTJunction + entities: + - uid: 685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 1668 + - uid: 687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-10.5 + parent: 1668 + - uid: 688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-12.5 + parent: 1668 + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-8.5 + parent: 1668 + - uid: 698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 1668 + - uid: 699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 1668 + - uid: 700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 1668 + - uid: 1734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7498 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7505 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7531 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7551 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7563 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7620 + components: + - type: Transform + pos: -49.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7647 + components: + - type: Transform + pos: -34.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7745 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7776 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7810 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7835 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7859 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7871 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7875 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7886 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7912 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7958 + components: + - type: Transform + pos: -14.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7984 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8268 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8302 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8305 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8317 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8339 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8387 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8424 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8459 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8506 + components: + - type: Transform + pos: -9.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8507 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8561 + components: + - type: Transform + pos: 29.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8592 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8611 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8670 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8671 + components: + - type: Transform + pos: -40.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8675 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8732 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8748 + components: + - type: Transform + pos: -30.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8831 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8901 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8981 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9030 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9033 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPort + entities: + - uid: 791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-13.5 + parent: 1668 +- proto: GasPressurePump + entities: + - uid: 742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-12.5 + parent: 1668 + - uid: 3498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,19.5 + parent: 1668 + - uid: 3500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,25.5 + parent: 1668 +- proto: GasThermoMachineFreezer + entities: + - uid: 1175 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1668 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 683 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1668 +- proto: GasVentPump + entities: + - uid: 7547 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8176 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8474 + components: + - type: Transform + pos: -17.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8502 + components: + - type: Transform + pos: -4.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8503 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8508 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8510 + components: + - type: Transform + pos: 30.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8513 + components: + - type: Transform + pos: 34.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8550 + components: + - type: Transform + pos: 18.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8612 + components: + - type: Transform + pos: -50.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8613 + components: + - type: Transform + pos: -44.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8896 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9053 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9060 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9068 + components: + - type: Transform + pos: -33.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentPumpFreezer + entities: + - uid: 8287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 7507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7634 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7749 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7953 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8068 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8166 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8175 + components: + - type: Transform + pos: 0.5,30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8329 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8334 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8336 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8347 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8362 components: - type: Transform pos: 33.5,-23.5 parent: 1668 - - uid: 6599 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8375 components: - type: Transform - pos: 31.5,-23.5 + rot: 3.141592653589793 rad + pos: 9.5,-8.5 parent: 1668 - - uid: 6635 + - uid: 8396 components: - type: Transform - pos: 31.5,-21.5 + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 parent: 1668 - - uid: 6636 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8403 components: - type: Transform - pos: 33.5,-21.5 + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 parent: 1668 -- proto: GeneratorRTG + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8422 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8428 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8455 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8456 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8475 + components: + - type: Transform + pos: -18.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8504 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8505 + components: + - type: Transform + pos: -12.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8509 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8511 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8512 + components: + - type: Transform + pos: 33.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8589 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8590 + components: + - type: Transform + pos: 25.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8616 + components: + - type: Transform + pos: -48.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8617 + components: + - type: Transform + pos: -42.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8639 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8673 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8826 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9036 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9037 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9059 + components: + - type: Transform + pos: -20.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9069 + components: + - type: Transform + pos: -31.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9182 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasVentScrubberFreezer entities: - - uid: 5182 + - uid: 8286 components: - type: Transform - pos: 32.5,-25.5 + pos: 15.5,-23.5 parent: 1668 - - uid: 5183 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GatfruitSeeds + entities: + - uid: 1019 components: - type: Transform - pos: 32.5,-23.5 + pos: 8.767073,-23.281765 parent: 1668 - - uid: 5184 + - uid: 1020 components: - type: Transform - pos: 32.5,-21.5 + pos: 8.767073,-23.344265 + parent: 1668 + - uid: 1021 + components: + - type: Transform + pos: 8.767073,-23.406765 + parent: 1668 + - uid: 1022 + components: + - type: Transform + pos: 8.767073,-23.469265 + parent: 1668 +- proto: GoldenPlunger + entities: + - uid: 2802 + components: + - type: Transform + pos: -18.79799,16.06264 parent: 1668 - proto: GravityGenerator entities: - - uid: 1140 + - uid: 3285 components: - type: Transform - pos: 32.5,-11.5 + pos: -5.5,26.5 + parent: 1668 +- proto: GrenadeFlashBang + entities: + - uid: 2615 + components: + - type: Transform + pos: 14.708689,30.81574 + parent: 1668 + - uid: 2616 + components: + - type: Transform + pos: 14.708689,30.81574 + parent: 1668 + - uid: 2617 + components: + - type: Transform + pos: 14.708689,30.81574 + parent: 1668 + - uid: 2618 + components: + - type: Transform + pos: 14.708689,30.81574 + parent: 1668 +- proto: GrenadeIncendiary + entities: + - uid: 2601 + components: + - type: Transform + pos: 14.906606,30.826159 + parent: 1668 + - uid: 2602 + components: + - type: Transform + pos: 14.906606,30.826159 + parent: 1668 + - uid: 2603 + components: + - type: Transform + pos: 14.906606,30.826159 + parent: 1668 + - uid: 2604 + components: + - type: Transform + pos: 14.906606,30.826159 + parent: 1668 +- proto: GrenadeShrapnel + entities: + - uid: 2141 + components: + - type: Transform + pos: 14.292023,30.40949 + parent: 1668 + - uid: 2415 + components: + - type: Transform + pos: 14.292023,30.40949 + parent: 1668 + - uid: 2416 + components: + - type: Transform + pos: 14.292023,30.40949 + parent: 1668 + - uid: 2417 + components: + - type: Transform + pos: 14.292023,30.40949 + parent: 1668 +- proto: GrenadeStinger + entities: + - uid: 3019 + components: + - type: Transform + pos: 14.687856,30.37824 + parent: 1668 + - uid: 3166 + components: + - type: Transform + pos: 14.687856,30.37824 + parent: 1668 + - uid: 3167 + components: + - type: Transform + pos: 14.687856,30.37824 + parent: 1668 + - uid: 3168 + components: + - type: Transform + pos: 14.687856,30.37824 parent: 1668 - proto: Grille entities: - - uid: 30 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 1668 - uid: 31 components: - type: Transform pos: 2.5,-3.5 parent: 1668 - - uid: 32 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 1668 - uid: 33 components: - type: Transform @@ -25448,55 +38313,10 @@ entities: - type: Transform pos: -2.5,-3.5 parent: 1668 - - uid: 80 + - uid: 93 components: - type: Transform - pos: 8.5,5.5 - parent: 1668 - - uid: 81 - components: - - type: Transform - pos: 7.5,4.5 - parent: 1668 - - uid: 82 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1668 - - uid: 83 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1668 - - uid: 84 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1668 - - uid: 85 - components: - - type: Transform - pos: 4.5,5.5 - parent: 1668 - - uid: 105 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1668 - - uid: 106 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 1668 - - uid: 107 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1668 - - uid: 108 - components: - - type: Transform - pos: 6.5,-0.5 + pos: 29.5,-14.5 parent: 1668 - uid: 132 components: @@ -25508,1482 +38328,1720 @@ entities: - type: Transform pos: 3.5,-2.5 parent: 1668 + - uid: 144 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1668 - uid: 154 components: - type: Transform - pos: 5.5,-7.5 + pos: 16.5,-3.5 parent: 1668 - uid: 155 components: - type: Transform - pos: 3.5,-7.5 - parent: 1668 - - uid: 156 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 1668 - - uid: 157 - components: - - type: Transform - pos: 6.5,-5.5 + pos: 14.5,2.5 parent: 1668 - uid: 158 components: - type: Transform - pos: 6.5,-4.5 + pos: 14.5,-3.5 parent: 1668 - uid: 159 components: - type: Transform - pos: 8.5,-5.5 + pos: 12.5,2.5 parent: 1668 - - uid: 160 + - uid: 161 components: - type: Transform - pos: 8.5,-4.5 + pos: -2.5,6.5 + parent: 1668 + - uid: 165 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1668 + - uid: 166 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1668 + - uid: 167 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1668 + - uid: 173 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1668 + - uid: 178 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1668 + - uid: 182 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1668 + - uid: 183 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1668 + - uid: 185 + components: + - type: Transform + pos: 7.5,-5.5 parent: 1668 - uid: 186 components: - type: Transform - pos: 16.5,3.5 + pos: 1.5,6.5 parent: 1668 - - uid: 189 + - uid: 188 components: - type: Transform - pos: 17.5,-5.5 - parent: 1668 - - uid: 191 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 1668 - - uid: 192 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 1668 - - uid: 193 - components: - - type: Transform - pos: 11.5,-8.5 + pos: 12.5,-3.5 parent: 1668 - uid: 194 components: - type: Transform - pos: 12.5,-9.5 + pos: 24.5,7.5 parent: 1668 - - uid: 195 + - uid: 365 components: - type: Transform - pos: 9.5,-10.5 + pos: 26.5,-14.5 parent: 1668 - - uid: 196 + - uid: 381 components: - type: Transform - pos: 10.5,-10.5 + pos: 4.5,22.5 parent: 1668 - - uid: 197 + - uid: 405 components: - type: Transform - pos: 11.5,-10.5 + pos: 28.5,-12.5 parent: 1668 - - uid: 198 + - uid: 407 components: - type: Transform - pos: 13.5,-10.5 - parent: 1668 - - uid: 199 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 1668 - - uid: 200 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 1668 - - uid: 201 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 1668 - - uid: 202 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 1668 - - uid: 203 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 1668 - - uid: 212 - components: - - type: Transform - pos: 16.5,-9.5 - parent: 1668 - - uid: 223 - components: - - type: Transform - pos: 15.5,2.5 - parent: 1668 - - uid: 224 - components: - - type: Transform - pos: 13.5,2.5 - parent: 1668 - - uid: 225 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1668 - - uid: 238 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 1668 - - uid: 239 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 1668 - - uid: 240 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 1668 - - uid: 241 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 1668 - - uid: 242 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 1668 - - uid: 245 - components: - - type: Transform - pos: 17.5,6.5 - parent: 1668 - - uid: 246 - components: - - type: Transform - pos: 17.5,4.5 - parent: 1668 - - uid: 278 - components: - - type: Transform - pos: 3.5,8.5 - parent: 1668 - - uid: 279 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1668 - - uid: 280 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1668 - - uid: 281 - components: - - type: Transform - pos: 8.5,8.5 - parent: 1668 - - uid: 282 - components: - - type: Transform - pos: 9.5,7.5 - parent: 1668 - - uid: 283 - components: - - type: Transform - pos: 10.5,7.5 - parent: 1668 - - uid: 284 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1668 - - uid: 285 - components: - - type: Transform - pos: 13.5,7.5 - parent: 1668 - - uid: 286 - components: - - type: Transform - pos: 14.5,7.5 - parent: 1668 - - uid: 287 - components: - - type: Transform - pos: 12.5,8.5 - parent: 1668 - - uid: 288 - components: - - type: Transform - pos: 14.5,9.5 - parent: 1668 - - uid: 289 - components: - - type: Transform - pos: 13.5,9.5 - parent: 1668 - - uid: 290 - components: - - type: Transform - pos: 11.5,9.5 - parent: 1668 - - uid: 291 - components: - - type: Transform - pos: 10.5,9.5 - parent: 1668 - - uid: 292 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1668 - - uid: 304 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 1668 - - uid: 305 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 1668 - - uid: 306 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 1668 - - uid: 311 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 1668 - - uid: 312 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 1668 - - uid: 313 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1668 - - uid: 314 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1668 - - uid: 341 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 1668 - - uid: 342 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 1668 - - uid: 343 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1668 - - uid: 344 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 1668 - - uid: 345 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 1668 - - uid: 448 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 1668 - - uid: 449 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 1668 - - uid: 450 - components: - - type: Transform - pos: 35.5,-2.5 - parent: 1668 - - uid: 451 - components: - - type: Transform - pos: 35.5,1.5 - parent: 1668 - - uid: 452 - components: - - type: Transform - pos: 35.5,3.5 - parent: 1668 - - uid: 453 - components: - - type: Transform - pos: 35.5,5.5 - parent: 1668 - - uid: 454 - components: - - type: Transform - pos: 21.5,-7.5 - parent: 1668 - - uid: 455 - components: - - type: Transform - pos: 23.5,-8.5 - parent: 1668 - - uid: 456 - components: - - type: Transform - pos: 29.5,-8.5 - parent: 1668 - - uid: 457 - components: - - type: Transform - pos: 31.5,-7.5 + pos: 27.5,-14.5 parent: 1668 - uid: 458 components: - type: Transform pos: 31.5,6.5 parent: 1668 - - uid: 459 - components: - - type: Transform - pos: 28.5,7.5 - parent: 1668 - - uid: 460 - components: - - type: Transform - pos: 24.5,7.5 - parent: 1668 - uid: 461 components: - type: Transform pos: 21.5,6.5 parent: 1668 - - uid: 473 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 1668 - uid: 474 components: - type: Transform - pos: 33.5,-4.5 + pos: 18.5,-2.5 parent: 1668 - uid: 475 components: - type: Transform - pos: 33.5,-2.5 + pos: 18.5,1.5 parent: 1668 - uid: 476 components: - type: Transform - pos: 34.5,-1.5 + pos: 7.5,-2.5 parent: 1668 - uid: 477 components: - type: Transform - pos: 34.5,0.5 + pos: 7.5,1.5 parent: 1668 - - uid: 478 + - uid: 549 components: - type: Transform - pos: 33.5,1.5 + pos: 16.5,2.5 parent: 1668 - - uid: 479 + - uid: 593 components: - type: Transform - pos: 33.5,3.5 + pos: 7.5,4.5 parent: 1668 - - uid: 480 + - uid: 600 components: - type: Transform - pos: 33.5,5.5 + pos: 31.5,-14.5 parent: 1668 - - uid: 672 + - uid: 715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - - uid: 673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - - uid: 674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1668 - - uid: 675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1668 - - uid: 678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1668 - - uid: 679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1668 - - uid: 680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1668 - - uid: 681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1668 - - uid: 702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1668 - - uid: 703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1668 - - uid: 704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 + pos: 25.5,-14.5 parent: 1668 - uid: 725 components: - type: Transform - pos: 3.5,14.5 + pos: 22.5,-7.5 parent: 1668 - - uid: 742 + - uid: 726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 + pos: 21.5,-7.5 parent: 1668 - - uid: 743 + - uid: 727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 + pos: 20.5,-7.5 parent: 1668 - - uid: 765 + - uid: 911 components: - type: Transform - pos: -7.5,-9.5 + pos: 28.5,-11.5 parent: 1668 - - uid: 766 + - uid: 912 components: - type: Transform - pos: -8.5,-10.5 + pos: 28.5,-10.5 parent: 1668 - - uid: 767 + - uid: 913 components: - type: Transform - pos: -8.5,-12.5 + pos: 28.5,-9.5 parent: 1668 - - uid: 768 + - uid: 914 components: - type: Transform - pos: -7.5,-13.5 + pos: 24.5,-12.5 parent: 1668 - - uid: 769 + - uid: 915 components: - type: Transform - pos: -8.5,-14.5 + pos: 24.5,-11.5 parent: 1668 - - uid: 782 + - uid: 916 components: - type: Transform - pos: 1.5,-14.5 + pos: 24.5,-10.5 parent: 1668 - - uid: 783 + - uid: 917 components: - type: Transform - pos: 0.5,-14.5 + pos: 24.5,-9.5 parent: 1668 - - uid: 784 + - uid: 918 components: - type: Transform - pos: -1.5,-14.5 + pos: 25.5,-7.5 parent: 1668 - - uid: 785 + - uid: 919 components: - type: Transform - pos: -2.5,-14.5 + pos: 26.5,-7.5 parent: 1668 - - uid: 845 + - uid: 920 components: - type: Transform - pos: 8.5,-16.5 + pos: 27.5,-7.5 parent: 1668 - - uid: 846 + - uid: 1102 components: - type: Transform - pos: 9.5,-17.5 + pos: 35.5,-21.5 parent: 1668 - - uid: 847 + - uid: 1121 components: - type: Transform - pos: 10.5,-17.5 + pos: 29.5,-7.5 parent: 1668 - - uid: 848 + - uid: 1135 components: - type: Transform - pos: 11.5,-16.5 + pos: 31.5,-7.5 parent: 1668 - - uid: 849 + - uid: 1157 components: - type: Transform - pos: -4.5,11.5 + pos: 35.5,-20.5 parent: 1668 - - uid: 850 + - uid: 1158 components: - type: Transform - pos: -3.5,17.5 + pos: 35.5,-22.5 parent: 1668 - - uid: 853 + - uid: 1202 components: - type: Transform - pos: 3.5,16.5 + pos: 31.5,-28.5 parent: 1668 - - uid: 855 + - uid: 1204 components: - type: Transform - pos: 2.5,17.5 + pos: 32.5,-28.5 parent: 1668 - - uid: 1424 + - uid: 1209 components: - type: Transform - pos: -10.5,32.5 + pos: 33.5,-28.5 parent: 1668 - - uid: 1425 + - uid: 1347 components: - type: Transform - pos: 6.5,-8.5 + pos: 35.5,-16.5 parent: 1668 - - uid: 1467 + - uid: 1348 components: - type: Transform - pos: 16.5,-4.5 + pos: 35.5,-26.5 parent: 1668 - - uid: 1488 + - uid: 1349 components: - type: Transform - pos: 3.5,12.5 + pos: 27.5,-28.5 parent: 1668 - - uid: 1489 + - uid: 1350 components: - type: Transform - pos: 3.5,10.5 + pos: 26.5,-28.5 parent: 1668 - - uid: 1513 + - uid: 1351 components: - type: Transform - pos: -13.5,18.5 + pos: 25.5,-28.5 parent: 1668 - - uid: 1514 + - uid: 1525 components: - type: Transform - pos: -12.5,18.5 + pos: 3.5,9.5 parent: 1668 - - uid: 1515 + - uid: 1527 components: - type: Transform - pos: -16.5,17.5 + pos: 6.5,9.5 parent: 1668 - - uid: 1516 + - uid: 1528 components: - type: Transform - pos: -16.5,18.5 + pos: 5.5,9.5 parent: 1668 - - uid: 1517 + - uid: 1529 components: - type: Transform - pos: -15.5,18.5 + pos: 2.5,7.5 parent: 1668 - - uid: 1594 + - uid: 1530 components: - type: Transform - pos: -14.5,20.5 + pos: 4.5,9.5 parent: 1668 - - uid: 1595 + - uid: 1531 components: - type: Transform - pos: -14.5,21.5 + pos: 2.5,8.5 parent: 1668 - - uid: 1596 + - uid: 1534 components: - type: Transform - pos: -14.5,22.5 + pos: 6.5,6.5 parent: 1668 - - uid: 1597 + - uid: 1535 components: - type: Transform - pos: -14.5,23.5 + pos: 5.5,6.5 parent: 1668 - - uid: 1598 + - uid: 1536 components: - type: Transform - pos: -15.5,23.5 + pos: 4.5,6.5 parent: 1668 - - uid: 1599 + - uid: 1542 components: - type: Transform - pos: -16.5,23.5 + pos: 20.5,13.5 parent: 1668 - - uid: 1600 + - uid: 1544 components: - type: Transform - pos: -16.5,26.5 + pos: 22.5,13.5 parent: 1668 - - uid: 1601 + - uid: 1545 components: - type: Transform - pos: -15.5,26.5 + pos: 6.5,13.5 parent: 1668 - - uid: 1602 + - uid: 1549 components: - type: Transform - pos: -14.5,26.5 + pos: 7.5,9.5 parent: 1668 - - uid: 1603 + - uid: 1551 components: - type: Transform - pos: -16.5,29.5 + pos: 2.5,10.5 parent: 1668 - - uid: 1604 + - uid: 1552 components: - type: Transform - pos: -15.5,29.5 + pos: 2.5,11.5 parent: 1668 - - uid: 1605 + - uid: 1553 components: - type: Transform - pos: -14.5,29.5 + pos: 2.5,12.5 parent: 1668 - - uid: 1606 + - uid: 1564 components: - type: Transform - pos: -14.5,30.5 + pos: 23.5,9.5 parent: 1668 - - uid: 1667 + - uid: 1565 components: - type: Transform - pos: -8.5,32.5 + pos: 22.5,9.5 parent: 1668 - - uid: 1669 + - uid: 1566 components: - type: Transform - pos: -6.5,32.5 + pos: 21.5,9.5 parent: 1668 - - uid: 1670 + - uid: 1567 components: - type: Transform - pos: -12.5,32.5 + pos: 20.5,9.5 parent: 1668 - - uid: 2002 + - uid: 1568 components: - type: Transform - pos: 5.5,10.5 + pos: 19.5,9.5 parent: 1668 - - uid: 2003 + - uid: 1569 components: - type: Transform - pos: 5.5,12.5 + pos: 4.5,13.5 parent: 1668 - - uid: 2004 + - uid: 1570 components: - type: Transform - pos: 5.5,14.5 + pos: 18.5,11.5 parent: 1668 - - uid: 2246 + - uid: 1571 components: - type: Transform - pos: 15.5,14.5 + pos: 8.5,11.5 parent: 1668 - - uid: 2247 + - uid: 1612 components: - type: Transform - pos: 15.5,12.5 + pos: 17.5,13.5 parent: 1668 - - uid: 2248 + - uid: 1613 components: - type: Transform - pos: 15.5,10.5 + pos: 15.5,13.5 parent: 1668 - - uid: 2284 + - uid: 1614 components: - type: Transform - pos: 23.5,14.5 + pos: 11.5,13.5 parent: 1668 - - uid: 2285 + - uid: 1615 components: - type: Transform - pos: 25.5,14.5 + pos: 9.5,13.5 parent: 1668 - - uid: 2286 + - uid: 1879 components: - type: Transform - pos: 26.5,14.5 + pos: -22.5,31.5 parent: 1668 - - uid: 2287 + - uid: 1901 components: - type: Transform - pos: 27.5,14.5 + pos: -20.5,31.5 parent: 1668 - - uid: 2288 + - uid: 1921 components: - type: Transform - pos: 29.5,14.5 + pos: 32.5,23.5 parent: 1668 - - uid: 2289 + - uid: 1922 components: - type: Transform - pos: 30.5,14.5 + pos: 30.5,23.5 parent: 1668 - - uid: 2290 + - uid: 1927 components: - type: Transform - pos: 31.5,14.5 + pos: 32.5,19.5 parent: 1668 - - uid: 2291 + - uid: 1928 components: - type: Transform - pos: 33.5,14.5 + pos: 33.5,17.5 parent: 1668 - - uid: 2346 + - uid: 1953 components: - type: Transform - pos: 24.5,15.5 + pos: 22.5,23.5 parent: 1668 - - uid: 2347 + - uid: 1978 components: - type: Transform - pos: 24.5,16.5 + pos: -19.5,29.5 parent: 1668 - - uid: 2348 + - uid: 2062 components: - type: Transform - pos: 24.5,17.5 + pos: 30.5,13.5 parent: 1668 - - uid: 2349 + - uid: 2067 components: - type: Transform - pos: 24.5,19.5 + pos: 35.5,10.5 parent: 1668 - - uid: 2510 + - uid: 2068 components: - type: Transform - pos: 10.5,16.5 + pos: 35.5,11.5 parent: 1668 - - uid: 2511 + - uid: 2069 + components: + - type: Transform + pos: 35.5,12.5 + parent: 1668 + - uid: 2144 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1668 + - uid: 2149 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1668 + - uid: 2154 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1668 + - uid: 2156 + components: + - type: Transform + pos: 16.5,21.5 + parent: 1668 + - uid: 2159 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1668 + - uid: 2164 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1668 + - uid: 2165 components: - type: Transform pos: 10.5,17.5 parent: 1668 - - uid: 2512 + - uid: 2166 components: - type: Transform - pos: 10.5,18.5 + pos: 16.5,17.5 parent: 1668 - - uid: 2513 + - uid: 2172 components: - type: Transform - pos: 8.5,16.5 + pos: 20.5,32.5 parent: 1668 - - uid: 2546 + - uid: 2213 components: - type: Transform - pos: 8.5,20.5 + pos: 16.5,29.5 parent: 1668 - - uid: 2557 + - uid: 2214 components: - type: Transform - pos: 14.5,21.5 + pos: 15.5,29.5 parent: 1668 - - uid: 2754 + - uid: 2215 components: - type: Transform - pos: 4.5,24.5 + pos: 14.5,29.5 parent: 1668 - - uid: 2756 + - uid: 2216 components: - type: Transform - pos: 7.5,21.5 + pos: 12.5,29.5 parent: 1668 - - uid: 2758 - components: - - type: Transform - pos: 7.5,22.5 - parent: 1668 - - uid: 2772 - components: - - type: Transform - pos: 14.5,24.5 - parent: 1668 - - uid: 2792 - components: - - type: Transform - pos: 13.5,30.5 - parent: 1668 - - uid: 2808 - components: - - type: Transform - pos: 8.5,26.5 - parent: 1668 - - uid: 2809 - components: - - type: Transform - pos: 7.5,26.5 - parent: 1668 - - uid: 2810 - components: - - type: Transform - pos: 7.5,27.5 - parent: 1668 - - uid: 2811 - components: - - type: Transform - pos: 7.5,29.5 - parent: 1668 - - uid: 2815 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1668 - - uid: 2816 + - uid: 2217 components: - type: Transform pos: 11.5,29.5 parent: 1668 - - uid: 2817 + - uid: 2218 components: - type: Transform - pos: 11.5,27.5 + pos: 10.5,29.5 parent: 1668 - - uid: 2818 + - uid: 2306 components: - type: Transform - pos: 11.5,26.5 + pos: 6.5,-36.5 parent: 1668 - - uid: 2819 + - uid: 2307 components: - type: Transform - pos: 10.5,26.5 + pos: 4.5,-36.5 parent: 1668 - - uid: 2860 + - uid: 2308 components: - type: Transform - pos: 4.5,27.5 + pos: 3.5,-36.5 parent: 1668 - - uid: 2861 + - uid: 2309 components: - type: Transform - pos: 14.5,27.5 + pos: 2.5,-36.5 parent: 1668 - - uid: 2880 + - uid: 2310 components: - type: Transform - pos: 12.5,30.5 + pos: 1.5,-36.5 parent: 1668 - - uid: 2887 + - uid: 2311 components: - type: Transform - pos: 5.5,30.5 + pos: 0.5,-36.5 parent: 1668 - - uid: 2907 + - uid: 2312 components: - type: Transform - pos: 7.5,7.5 + pos: -0.5,-36.5 parent: 1668 - - uid: 3134 + - uid: 2313 components: - type: Transform - pos: 6.5,7.5 + pos: -1.5,-36.5 parent: 1668 - - uid: 3141 + - uid: 2324 components: - type: Transform - pos: 9.5,-15.5 + pos: 5.5,-36.5 parent: 1668 - - uid: 3247 + - uid: 2325 components: - type: Transform - pos: 10.5,-15.5 + pos: -2.5,-36.5 parent: 1668 - - uid: 3387 + - uid: 2326 components: - type: Transform - pos: -26.5,-0.5 + pos: -3.5,-36.5 parent: 1668 - - uid: 3388 + - uid: 2327 components: - type: Transform - pos: -28.5,-0.5 + pos: -4.5,-36.5 parent: 1668 - - uid: 3389 + - uid: 2328 components: - type: Transform - pos: -27.5,11.5 + pos: -5.5,-36.5 parent: 1668 - - uid: 3390 + - uid: 2329 components: - type: Transform - pos: -27.5,12.5 + pos: -6.5,-36.5 parent: 1668 - - uid: 3391 + - uid: 2342 components: - type: Transform - pos: -27.5,8.5 + pos: -7.5,-36.5 parent: 1668 - - uid: 3392 + - uid: 2344 components: - type: Transform - pos: -27.5,9.5 + pos: -5.5,-28.5 parent: 1668 - - uid: 3436 + - uid: 2345 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 1668 + - uid: 2346 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 1668 + - uid: 2347 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 1668 + - uid: 2348 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 1668 + - uid: 2349 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 1668 + - uid: 2532 + components: + - type: Transform + pos: 19.5,31.5 + parent: 1668 + - uid: 2537 + components: + - type: Transform + pos: 18.5,32.5 + parent: 1668 + - uid: 2553 + components: + - type: Transform + pos: 19.5,33.5 + parent: 1668 + - uid: 2554 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1668 + - uid: 2555 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1668 + - uid: 2556 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1668 + - uid: 2557 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1668 + - uid: 2558 + components: + - type: Transform + pos: 32.5,9.5 + parent: 1668 + - uid: 2633 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1668 + - uid: 2649 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1668 + - uid: 2650 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1668 + - uid: 2651 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1668 + - uid: 2652 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1668 + - uid: 2660 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1668 + - uid: 2661 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1668 + - uid: 2662 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1668 + - uid: 2664 components: - type: Transform pos: -13.5,2.5 parent: 1668 - - uid: 3437 + - uid: 2665 components: - type: Transform - pos: -10.5,1.5 + pos: -14.5,2.5 + parent: 1668 + - uid: 2666 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1668 + - uid: 2696 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1668 + - uid: 2730 + components: + - type: Transform + pos: -20.5,8.5 + parent: 1668 + - uid: 2784 + components: + - type: Transform + pos: -24.5,9.5 + parent: 1668 + - uid: 2785 + components: + - type: Transform + pos: -24.5,10.5 + parent: 1668 + - uid: 2786 + components: + - type: Transform + pos: -24.5,12.5 + parent: 1668 + - uid: 2787 + components: + - type: Transform + pos: -24.5,13.5 + parent: 1668 + - uid: 2795 + components: + - type: Transform + pos: -19.5,15.5 + parent: 1668 + - uid: 2796 + components: + - type: Transform + pos: -19.5,16.5 + parent: 1668 + - uid: 2832 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1668 + - uid: 2990 + components: + - type: Transform + pos: -19.5,30.5 + parent: 1668 + - uid: 2991 + components: + - type: Transform + pos: -21.5,31.5 + parent: 1668 + - uid: 2994 + components: + - type: Transform + pos: -23.5,31.5 + parent: 1668 + - uid: 2996 + components: + - type: Transform + pos: -19.5,31.5 + parent: 1668 + - uid: 3032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 1668 + - uid: 3033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 1668 + - uid: 3039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,17.5 + parent: 1668 + - uid: 3040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,17.5 + parent: 1668 + - uid: 3181 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1668 + - uid: 3294 + components: + - type: Transform + pos: -4.5,23.5 + parent: 1668 + - uid: 3298 + components: + - type: Transform + pos: -10.5,23.5 + parent: 1668 + - uid: 3300 + components: + - type: Transform + pos: -6.5,23.5 + parent: 1668 + - uid: 3356 + components: + - type: Transform + pos: -12.5,23.5 + parent: 1668 + - uid: 3379 + components: + - type: Transform + pos: -25.5,8.5 + parent: 1668 + - uid: 3381 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1668 + - uid: 3383 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1668 + - uid: 3401 + components: + - type: Transform + pos: -26.5,27.5 + parent: 1668 + - uid: 3403 + components: + - type: Transform + pos: -28.5,26.5 + parent: 1668 + - uid: 3406 + components: + - type: Transform + pos: -25.5,28.5 + parent: 1668 + - uid: 3409 + components: + - type: Transform + pos: -24.5,28.5 + parent: 1668 + - uid: 3411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 1668 + - uid: 3412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 1668 + - uid: 3413 + components: + - type: Transform + pos: -28.5,19.5 + parent: 1668 + - uid: 3414 + components: + - type: Transform + pos: -28.5,8.5 + parent: 1668 + - uid: 3416 + components: + - type: Transform + pos: -28.5,25.5 + parent: 1668 + - uid: 3417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 1668 + - uid: 3418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,2.5 + parent: 1668 + - uid: 3419 + components: + - type: Transform + pos: -28.5,27.5 + parent: 1668 + - uid: 3426 + components: + - type: Transform + pos: -24.5,18.5 + parent: 1668 + - uid: 3427 + components: + - type: Transform + pos: -25.5,18.5 + parent: 1668 + - uid: 3428 + components: + - type: Transform + pos: -28.5,20.5 + parent: 1668 + - uid: 3429 + components: + - type: Transform + pos: -23.5,18.5 + parent: 1668 + - uid: 3433 + components: + - type: Transform + pos: -26.5,25.5 + parent: 1668 + - uid: 3435 + components: + - type: Transform + pos: -26.5,22.5 parent: 1668 - uid: 3438 components: - type: Transform - pos: -11.5,1.5 + pos: -26.5,20.5 parent: 1668 - - uid: 3439 + - uid: 3459 components: - type: Transform - pos: -12.5,1.5 + pos: -26.5,26.5 parent: 1668 - - uid: 3440 + - uid: 3460 components: - type: Transform - pos: -14.5,1.5 + pos: -26.5,23.5 parent: 1668 - - uid: 3441 + - uid: 3464 components: - type: Transform - pos: -15.5,1.5 + pos: -26.5,21.5 parent: 1668 - - uid: 3442 + - uid: 3466 components: - type: Transform - pos: -16.5,1.5 + pos: -28.5,21.5 parent: 1668 - - uid: 3936 + - uid: 3472 components: - type: Transform - pos: -30.5,7.5 + pos: -26.5,19.5 parent: 1668 - - uid: 3937 + - uid: 3473 components: - type: Transform - pos: -32.5,7.5 + pos: -26.5,24.5 parent: 1668 - - uid: 3938 + - uid: 3630 components: - type: Transform - pos: -33.5,7.5 + pos: 7.5,36.5 parent: 1668 - - uid: 3943 + - uid: 3631 components: - type: Transform - pos: -34.5,6.5 + pos: 6.5,36.5 parent: 1668 - - uid: 3944 + - uid: 3632 components: - type: Transform - pos: -34.5,5.5 + pos: 7.5,33.5 parent: 1668 - - uid: 3945 + - uid: 3633 components: - type: Transform - pos: -34.5,4.5 + pos: 6.5,33.5 parent: 1668 - - uid: 3946 + - uid: 3634 components: - type: Transform - pos: -34.5,3.5 + pos: 0.5,33.5 parent: 1668 - - uid: 3979 + - uid: 3635 components: - type: Transform - pos: -32.5,-0.5 + pos: -0.5,33.5 parent: 1668 - - uid: 3980 + - uid: 3636 components: - type: Transform - pos: -33.5,-0.5 + pos: 0.5,36.5 parent: 1668 - - uid: 3981 + - uid: 3637 components: - type: Transform - pos: -34.5,-0.5 + pos: -0.5,36.5 parent: 1668 - - uid: 3982 + - uid: 3639 components: - type: Transform - pos: -34.5,-2.5 + pos: 3.5,34.5 parent: 1668 - - uid: 3983 + - uid: 3640 components: - type: Transform - pos: -32.5,-2.5 + pos: 3.5,35.5 parent: 1668 - - uid: 3984 + - uid: 3728 components: - type: Transform - pos: -32.5,1.5 + pos: -0.5,22.5 parent: 1668 - - uid: 3985 + - uid: 3732 components: - type: Transform - pos: -34.5,1.5 + pos: -8.5,3.5 + parent: 1668 + - uid: 3733 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1668 + - uid: 3887 + components: + - type: Transform + pos: -3.5,30.5 + parent: 1668 + - uid: 3888 + components: + - type: Transform + pos: -2.5,33.5 + parent: 1668 + - uid: 3889 + components: + - type: Transform + pos: -3.5,36.5 + parent: 1668 + - uid: 4103 + components: + - type: Transform + pos: -24.5,30.5 + parent: 1668 + - uid: 4105 + components: + - type: Transform + pos: -24.5,29.5 + parent: 1668 + - uid: 4107 + components: + - type: Transform + pos: -24.5,31.5 + parent: 1668 + - uid: 4151 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 1668 + - uid: 4192 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 1668 + - uid: 4193 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1668 + - uid: 4194 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1668 + - uid: 4195 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1668 + - uid: 4196 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 1668 + - uid: 4197 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 1668 + - uid: 4198 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 1668 + - uid: 4199 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 1668 + - uid: 4200 + components: + - type: Transform + pos: 5.5,-31.5 parent: 1668 - uid: 4201 components: - type: Transform - pos: 15.5,8.5 + pos: 5.5,-29.5 parent: 1668 - - uid: 4226 + - uid: 4202 components: - type: Transform - pos: -9.5,-16.5 + pos: -6.5,-31.5 parent: 1668 - - uid: 4227 + - uid: 4203 components: - type: Transform - pos: -10.5,-17.5 + pos: -6.5,-30.5 parent: 1668 - - uid: 4228 + - uid: 4204 components: - type: Transform - pos: -11.5,-17.5 + pos: -6.5,-29.5 parent: 1668 - - uid: 4229 + - uid: 4308 components: - type: Transform - pos: -12.5,-16.5 + pos: 1.5,-24.5 parent: 1668 - - uid: 4264 + - uid: 4309 components: - type: Transform - pos: 0.5,-20.5 - parent: 1668 - - uid: 4317 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 1668 - - uid: 4318 - components: - - type: Transform - pos: -4.5,-22.5 + pos: -2.5,-24.5 parent: 1668 - uid: 4319 components: - type: Transform - pos: -4.5,-21.5 + rot: 3.141592653589793 rad + pos: 1.5,13.5 parent: 1668 - uid: 4320 components: - type: Transform - pos: -2.5,-23.5 + rot: 3.141592653589793 rad + pos: -2.5,13.5 parent: 1668 - - uid: 4321 + - uid: 4406 components: - type: Transform - pos: -2.5,-22.5 + pos: 6.5,-45.5 parent: 1668 - - uid: 4322 + - uid: 4407 components: - type: Transform - pos: -2.5,-21.5 + pos: 5.5,-45.5 parent: 1668 - - uid: 4323 + - uid: 4408 components: - type: Transform - pos: 3.5,-23.5 + pos: 4.5,-45.5 parent: 1668 - - uid: 4324 + - uid: 4409 components: - type: Transform - pos: 3.5,-22.5 + pos: 3.5,-45.5 parent: 1668 - - uid: 4325 + - uid: 4410 components: - type: Transform - pos: 3.5,-21.5 + pos: 2.5,-45.5 parent: 1668 - - uid: 4326 + - uid: 4411 components: - type: Transform - pos: 1.5,-23.5 + pos: 1.5,-45.5 parent: 1668 - - uid: 4327 + - uid: 4412 components: - type: Transform - pos: 1.5,-22.5 + pos: 0.5,-45.5 parent: 1668 - - uid: 4328 + - uid: 4413 components: - type: Transform - pos: 1.5,-21.5 + pos: -1.5,-45.5 parent: 1668 - - uid: 4366 + - uid: 4414 components: - type: Transform - pos: 4.5,-30.5 + pos: -2.5,-45.5 + parent: 1668 + - uid: 4415 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 1668 + - uid: 4416 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 1668 + - uid: 4417 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 1668 + - uid: 4418 + components: + - type: Transform + pos: -6.5,-45.5 + parent: 1668 + - uid: 4419 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 1668 + - uid: 4420 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 1668 + - uid: 4421 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 1668 + - uid: 4422 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 1668 + - uid: 4423 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 1668 + - uid: 4424 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 1668 + - uid: 4425 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 1668 + - uid: 4426 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 1668 + - uid: 4427 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 1668 + - uid: 4428 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 1668 + - uid: 4587 + components: + - type: Transform + pos: -10.5,-49.5 + parent: 1668 + - uid: 4588 + components: + - type: Transform + pos: -11.5,-49.5 + parent: 1668 + - uid: 4589 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 1668 + - uid: 4590 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 1668 + - uid: 4591 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 1668 + - uid: 4592 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 1668 + - uid: 4593 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 1668 + - uid: 4594 + components: + - type: Transform + pos: 18.5,-45.5 + parent: 1668 + - uid: 4595 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 1668 + - uid: 4596 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 1668 + - uid: 4597 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 1668 + - uid: 4598 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 1668 + - uid: 4599 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 1668 + - uid: 4600 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 1668 + - uid: 4601 + components: + - type: Transform + pos: 18.5,-36.5 parent: 1668 - uid: 4602 components: - type: Transform - pos: 6.5,-30.5 + pos: 18.5,-35.5 parent: 1668 - - uid: 4671 + - uid: 4603 components: - type: Transform - pos: -1.5,-34.5 + pos: -19.5,-46.5 parent: 1668 - - uid: 4672 + - uid: 4604 components: - type: Transform - pos: -0.5,-34.5 + pos: -19.5,-45.5 parent: 1668 - - uid: 4673 + - uid: 4605 components: - type: Transform - pos: 0.5,-34.5 + pos: -20.5,-44.5 parent: 1668 - - uid: 4750 + - uid: 4606 components: - type: Transform - pos: 15.5,-22.5 + pos: -20.5,-42.5 parent: 1668 - - uid: 4751 + - uid: 4607 components: - type: Transform - pos: 17.5,-22.5 + pos: -19.5,-41.5 parent: 1668 - - uid: 5025 + - uid: 4608 components: - type: Transform - pos: 19.5,-23.5 + pos: -19.5,-40.5 parent: 1668 - - uid: 5064 + - uid: 4609 components: - type: Transform - pos: 20.5,-23.5 + pos: -20.5,-39.5 parent: 1668 - - uid: 5065 + - uid: 4610 components: - type: Transform - pos: 21.5,-23.5 + pos: -20.5,-37.5 + parent: 1668 + - uid: 4611 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 1668 + - uid: 4612 + components: + - type: Transform + pos: -19.5,-35.5 parent: 1668 - uid: 5079 components: - type: Transform pos: 20.5,6.5 parent: 1668 - - uid: 5114 + - uid: 5562 components: - type: Transform - pos: 28.5,-25.5 + pos: -4.5,-24.5 parent: 1668 - - uid: 5115 + - uid: 5563 components: - type: Transform - pos: 28.5,-24.5 + pos: -6.5,-24.5 parent: 1668 - - uid: 5116 + - uid: 5564 components: - type: Transform - pos: 28.5,-23.5 + pos: -8.5,-24.5 parent: 1668 - - uid: 5117 + - uid: 5565 components: - type: Transform - pos: 28.5,-22.5 + pos: -10.5,-24.5 parent: 1668 - - uid: 5118 + - uid: 5566 components: - type: Transform - pos: 28.5,-21.5 + pos: -12.5,-24.5 parent: 1668 - - uid: 5169 + - uid: 5567 components: - type: Transform - pos: 31.5,-19.5 + pos: -14.5,-24.5 parent: 1668 - - uid: 5170 + - uid: 5568 components: - type: Transform - pos: 33.5,-19.5 + pos: -16.5,-24.5 parent: 1668 - - uid: 5320 + - uid: 5569 components: - type: Transform - pos: -1.5,-24.5 + pos: -18.5,-24.5 parent: 1668 - - uid: 5412 + - uid: 5629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-32.5 + pos: -20.5,-28.5 parent: 1668 - - uid: 5781 + - uid: 5630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 + pos: -22.5,-28.5 parent: 1668 - - uid: 5782 + - uid: 5631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 + pos: -24.5,-28.5 parent: 1668 - - uid: 5783 + - uid: 5632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 + pos: -26.5,-28.5 + parent: 1668 + - uid: 5633 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 1668 + - uid: 5634 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 1668 + - uid: 5635 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 1668 + - uid: 5636 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 1668 + - uid: 5919 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1668 + - uid: 5920 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1668 + - uid: 5921 + components: + - type: Transform + pos: -29.5,7.5 parent: 1668 - uid: 5922 components: - type: Transform - pos: -20.5,-33.5 + pos: -29.5,4.5 parent: 1668 - - uid: 5923 + - uid: 6056 components: - type: Transform - pos: -20.5,-32.5 + pos: -7.5,-15.5 parent: 1668 - - uid: 5924 + - uid: 6057 components: - type: Transform - pos: -20.5,-31.5 + pos: -8.5,-15.5 parent: 1668 - - uid: 5925 + - uid: 6058 components: - type: Transform - pos: -18.5,-34.5 + pos: -10.5,-15.5 parent: 1668 - - uid: 5926 + - uid: 6059 components: - type: Transform - pos: -17.5,-34.5 + pos: -11.5,-15.5 parent: 1668 - - uid: 5927 + - uid: 6060 components: - type: Transform - pos: -19.5,-34.5 + pos: -13.5,-15.5 parent: 1668 - - uid: 5949 + - uid: 6062 components: - type: Transform - pos: -15.5,-25.5 + pos: -14.5,-15.5 parent: 1668 - - uid: 5950 + - uid: 6063 components: - type: Transform - pos: -17.5,-25.5 + pos: -16.5,-15.5 parent: 1668 - - uid: 5983 + - uid: 6064 components: - type: Transform - pos: -21.5,-27.5 + pos: -17.5,-15.5 parent: 1668 - - uid: 5984 + - uid: 6104 components: - type: Transform - pos: -23.5,-27.5 + pos: -19.5,-15.5 parent: 1668 - - uid: 5985 + - uid: 6105 components: - type: Transform - pos: -23.5,-25.5 + pos: -20.5,-15.5 parent: 1668 - - uid: 5986 + - uid: 6106 components: - type: Transform - pos: -22.5,-25.5 + pos: -22.5,-15.5 parent: 1668 - - uid: 5987 + - uid: 6107 components: - type: Transform - pos: -21.5,-25.5 + pos: -23.5,-15.5 parent: 1668 - - uid: 5988 + - uid: 6108 components: - type: Transform - pos: -21.5,-23.5 + pos: -26.5,-15.5 parent: 1668 - - uid: 5989 + - uid: 6109 components: - type: Transform - pos: -23.5,-23.5 + pos: -25.5,-15.5 parent: 1668 - - uid: 5993 + - uid: 6153 components: - type: Transform - pos: -18.5,-21.5 + pos: -19.5,-9.5 parent: 1668 - - uid: 5994 + - uid: 6171 components: - type: Transform - pos: -19.5,-21.5 + pos: -23.5,-9.5 parent: 1668 - - uid: 5995 + - uid: 6601 components: - type: Transform - pos: -20.5,-21.5 + pos: -36.5,-3.5 parent: 1668 - - uid: 6160 + - uid: 6635 components: - type: Transform - pos: -2.5,-33.5 + pos: -28.5,-15.5 parent: 1668 - - uid: 6161 + - uid: 6636 components: - type: Transform - pos: -2.5,-32.5 + pos: -29.5,-15.5 parent: 1668 - - uid: 6162 + - uid: 6637 components: - type: Transform - pos: -2.5,-31.5 + pos: -31.5,-15.5 parent: 1668 - - uid: 6163 + - uid: 6638 components: - type: Transform - pos: 1.5,-33.5 + pos: -32.5,-15.5 parent: 1668 - - uid: 6164 + - uid: 6639 components: - type: Transform - pos: 1.5,-32.5 + pos: -35.5,-15.5 parent: 1668 - - uid: 6165 + - uid: 6640 components: - type: Transform - pos: 1.5,-31.5 + pos: -34.5,-15.5 parent: 1668 - - uid: 6280 + - uid: 6641 components: - type: Transform - pos: -0.5,-38.5 + pos: -37.5,-15.5 parent: 1668 - - uid: 6281 + - uid: 6642 components: - type: Transform - pos: -0.5,-40.5 + pos: -38.5,-15.5 parent: 1668 - - uid: 6301 + - uid: 6937 components: - type: Transform - pos: -2.5,-46.5 + pos: -29.5,9.5 parent: 1668 - - uid: 6302 + - uid: 6938 components: - type: Transform - pos: -2.5,-44.5 + pos: -29.5,10.5 parent: 1668 - - uid: 6303 + - uid: 6939 components: - type: Transform - pos: -0.5,-46.5 + pos: -29.5,12.5 parent: 1668 - - uid: 6304 + - uid: 6940 components: - type: Transform - pos: -0.5,-45.5 + pos: -29.5,13.5 parent: 1668 - - uid: 6305 + - uid: 6944 components: - type: Transform - pos: -0.5,-44.5 + pos: -31.5,8.5 parent: 1668 - - uid: 6306 + - uid: 6953 components: - type: Transform - pos: 1.5,-46.5 + pos: -50.5,2.5 parent: 1668 - - uid: 6307 + - uid: 6955 components: - type: Transform - pos: 1.5,-44.5 - parent: 1668 - - uid: 6505 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 1668 - - uid: 6575 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 1668 - - uid: 6576 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 1668 - - uid: 6768 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 1668 - - uid: 6769 - components: - - type: Transform - pos: 0.5,-24.5 - parent: 1668 - - uid: 6779 - components: - - type: Transform - pos: 5.5,6.5 + pos: -48.5,2.5 parent: 1668 - uid: 6986 components: @@ -27000,382 +40058,1036 @@ entities: - type: Transform pos: 32.5,6.5 parent: 1668 -- proto: GroundTobacco - entities: - - uid: 3755 + - uid: 7153 components: - type: Transform - pos: -18.558027,8.843213 + pos: -55.5,-2.5 parent: 1668 - - uid: 3756 + - uid: 7162 components: - type: Transform - pos: -18.370527,8.827588 + pos: -52.5,-2.5 + parent: 1668 + - uid: 7163 + components: + - type: Transform + pos: -52.5,1.5 + parent: 1668 + - uid: 7164 + components: + - type: Transform + pos: -55.5,1.5 + parent: 1668 + - uid: 7237 + components: + - type: Transform + pos: -44.5,2.5 + parent: 1668 + - uid: 7238 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 1668 + - uid: 7240 + components: + - type: Transform + pos: -42.5,2.5 + parent: 1668 + - uid: 7258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,7.5 + parent: 1668 + - uid: 7259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,7.5 + parent: 1668 + - uid: 7260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,7.5 + parent: 1668 + - uid: 7261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,7.5 + parent: 1668 + - uid: 7262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,7.5 + parent: 1668 + - uid: 7263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,7.5 + parent: 1668 + - uid: 7264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-8.5 + parent: 1668 + - uid: 7265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 1668 + - uid: 7266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 1668 + - uid: 7267 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 1668 + - uid: 7330 + components: + - type: Transform + pos: -33.5,8.5 + parent: 1668 + - uid: 7362 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 1668 + - uid: 7367 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 1668 + - uid: 7368 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 1668 + - uid: 7369 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 1668 + - uid: 7370 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 1668 + - uid: 7371 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 1668 + - uid: 7372 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 1668 + - uid: 7373 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 1668 + - uid: 7428 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 1668 + - uid: 7429 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 1668 + - uid: 7430 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 1668 + - uid: 7431 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 1668 + - uid: 7432 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 1668 + - uid: 7433 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 1668 + - uid: 7434 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 1668 + - uid: 7435 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 1668 + - uid: 7437 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 1668 + - uid: 7438 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 1668 + - uid: 7439 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 1668 + - uid: 7440 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 1668 + - uid: 9112 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 1668 + - uid: 9113 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 1668 + - uid: 9114 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 1668 + - uid: 9115 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 1668 + - uid: 9116 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 1668 + - uid: 9117 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 1668 + - uid: 9118 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 1668 + - uid: 9119 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 1668 + - uid: 9121 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1668 +- proto: GrilleDiagonal + entities: + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 1668 + - uid: 1736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 1668 + - uid: 2136 + components: + - type: Transform + pos: 18.5,33.5 + parent: 1668 + - uid: 2138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,31.5 + parent: 1668 +- proto: GunpetInstrument + entities: + - uid: 6085 + components: + - type: Transform + pos: -7.306678,-17.20607 + parent: 1668 +- proto: GunSafeDisabler + entities: + - uid: 2219 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1668 + - uid: 9183 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 1668 +- proto: GunSafePistolMk58 + entities: + - uid: 2235 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1668 +- proto: GunSafeRifleLecter + entities: + - uid: 2386 + components: + - type: Transform + pos: 12.5,24.5 + parent: 1668 + - uid: 9191 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 1668 +- proto: GunSafeShotgunEnforcer + entities: + - uid: 2388 + components: + - type: Transform + pos: 14.5,22.5 parent: 1668 - proto: GunSafeShotgunKammerer entities: - - uid: 6526 + - uid: 2389 components: - type: Transform - pos: 10.5,30.5 + pos: 14.5,24.5 + parent: 1668 + - uid: 9208 + components: + - type: Transform + pos: -28.5,-8.5 parent: 1668 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 2923 + - uid: 2387 components: - type: Transform - pos: 8.5,30.5 + pos: 12.5,22.5 parent: 1668 - proto: Handcuffs entities: - - uid: 3751 + - uid: 4046 components: - type: Transform - pos: -25.604141,8.625723 + pos: -22.524752,13.470394 parent: 1668 -- proto: HandLabeler +- proto: HandheldCrewMonitor entities: - - uid: 2228 + - uid: 904 components: - type: Transform - pos: -14.611721,14.56378 + pos: 14.5227165,-4.391676 parent: 1668 - - uid: 2229 +- proto: HandheldHealthAnalyzer + entities: + - uid: 796 components: - type: Transform - pos: -9.361721,12.50128 + pos: 23.504726,-8.512103 parent: 1668 - - uid: 2240 + - uid: 798 components: - type: Transform - pos: -3.4985683,16.513187 + pos: 17.739101,-13.277728 + parent: 1668 +- proto: HandheldStationMap + entities: + - uid: 6766 + components: + - type: Transform + pos: -42.48301,-4.457982 parent: 1668 - proto: HighSecArmoryLocked entities: - - uid: 2553 + - uid: 2146 components: - type: Transform - pos: 9.5,20.5 - parent: 1668 - - uid: 2784 - components: - - type: Transform - pos: 7.5,28.5 - parent: 1668 - - uid: 2785 - components: - - type: Transform - pos: 11.5,28.5 + pos: 13.5,21.5 parent: 1668 - proto: HighSecCentralCommandLocked entities: - - uid: 3791 + - uid: 2212 components: - type: Transform - pos: -13.5,5.5 + pos: 13.5,29.5 parent: 1668 - - uid: 3794 + - uid: 5998 components: - type: Transform - pos: -4.5,0.5 + pos: -14.5,6.5 parent: 1668 - - uid: 3795 +- proto: HighSecCommandLocked + entities: + - uid: 94 components: - type: Transform pos: 3.5,0.5 parent: 1668 - - uid: 3863 + - uid: 328 components: - type: Transform - pos: 2.5,-42.5 + pos: -4.5,0.5 parent: 1668 - - uid: 3864 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 1668 -- proto: HighSecCommandLocked +- proto: HolofanProjector entities: - - uid: 123 + - uid: 4088 components: - type: Transform - pos: 32.5,-14.5 + pos: -18.530924,26.575684 parent: 1668 - - uid: 3885 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 1668 - - uid: 3902 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 1668 -- proto: HighSecDoor +- proto: HolopadBluespace entities: - - uid: 565 + - uid: 496 components: - type: Transform - pos: 18.5,-6.5 + pos: -0.5,-0.5 parent: 1668 - - uid: 5932 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 1668 -- proto: HospitalCurtainsOpen +- proto: HoloprojectorSecurity entities: - - uid: 3422 + - uid: 6822 components: - type: Transform - pos: -20.5,15.5 - parent: 1668 -- proto: JanitorialTrolley + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6840 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HydroponicsToolHatchet entities: - - uid: 2881 + - uid: 1042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-31.5 + pos: 5.448747,-21.426985 parent: 1668 -- proto: JawsOfLife +- proto: HydroponicsToolMiniHoe entities: - - uid: 4261 + - uid: 1041 components: - type: Transform - pos: 21.501507,-22.363987 + pos: 8.448748,-21.489485 + parent: 1668 +- proto: HydroponicsToolScythe + entities: + - uid: 1039 + components: + - type: Transform + pos: 5.526872,-21.50511 + parent: 1668 +- proto: HydroponicsToolSpade + entities: + - uid: 1040 + components: + - type: Transform + pos: 8.511248,-21.41136 + parent: 1668 +- proto: hydroponicsTray + entities: + - uid: 983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 1668 + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 1668 + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 1668 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-22.5 + parent: 1668 + - uid: 987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 1668 + - uid: 988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1668 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 1668 + - uid: 990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 1668 + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-16.5 + parent: 1668 + - uid: 992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-22.5 + parent: 1668 + - uid: 993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 1668 + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 1668 + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 1668 + - uid: 1006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 1668 + - uid: 1007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 1668 + - uid: 1008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 1668 +- proto: Hypospray + entities: + - uid: 799 + components: + - type: Transform + pos: 18.629726,-13.340228 + parent: 1668 + - uid: 6858 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6869 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ImplanterAdmeme + entities: + - uid: 910 + components: + - type: Transform + pos: 11.548839,-10.335743 + parent: 1668 +- proto: IngotGold + entities: + - uid: 3354 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1668 + - uid: 3355 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1668 +- proto: Intellicard + entities: + - uid: 937 + components: + - type: Transform + pos: -3.3831449,-0.61700773 + parent: 1668 +- proto: KillerTomatoSeeds + entities: + - uid: 1015 + components: + - type: Transform + pos: 8.239295,-23.358154 + parent: 1668 + - uid: 1016 + components: + - type: Transform + pos: 8.239295,-23.295654 + parent: 1668 + - uid: 1017 + components: + - type: Transform + pos: 8.239295,-23.420654 + parent: 1668 + - uid: 1018 + components: + - type: Transform + pos: 8.239295,-23.483154 + parent: 1668 +- proto: KitchenElectricGrill + entities: + - uid: 1174 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1668 + - uid: 1179 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1668 + - uid: 5505 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 1668 + - uid: 5506 + components: + - type: Transform + pos: -11.5,-32.5 parent: 1668 - proto: KitchenMicrowave entities: - - uid: 2226 + - uid: 1169 components: - type: Transform - pos: -15.5,17.5 + pos: 12.5,-15.5 parent: 1668 - - uid: 4585 + - uid: 5473 components: - type: Transform - pos: -11.5,-24.5 + pos: -11.5,-36.5 parent: 1668 - - uid: 4589 + - uid: 5503 components: - type: Transform - pos: -11.5,-28.5 + pos: -10.5,-36.5 parent: 1668 - proto: KitchenReagentGrinder entities: - - uid: 2922 + - uid: 672 components: - type: Transform - pos: 3.5,-9.5 + pos: 6.5,-12.5 parent: 1668 - - uid: 4590 + - uid: 1166 components: - type: Transform - pos: -11.5,-25.5 + pos: 16.5,-19.5 parent: 1668 - - uid: 4591 + - uid: 1168 components: - type: Transform - pos: -9.5,-28.5 + pos: 14.5,-15.5 + parent: 1668 + - uid: 1290 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 1668 + - uid: 5504 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 1668 + - uid: 5507 + components: + - type: Transform + pos: -11.5,-35.5 parent: 1668 - proto: KitchenSpike entities: - - uid: 4581 + - uid: 1184 components: - type: Transform - pos: -7.5,-21.5 - parent: 1668 -- proto: KnifePlastic - entities: - - uid: 3726 - components: - - type: Transform - pos: 0.9231305,-25.45219 - parent: 1668 - - uid: 4253 - components: - - type: Transform - pos: 0.9231305,-25.45219 - parent: 1668 - - uid: 5214 - components: - - type: Transform - pos: 0.9231305,-25.45219 + pos: 16.5,-21.5 parent: 1668 - proto: Lamp entities: - - uid: 1442 + - uid: 527 components: - type: Transform - pos: -0.93100256,1.9752237 + pos: -1.4329706,1.8655163 parent: 1668 - - uid: 2829 + - uid: 2081 components: - type: Transform - pos: 5.496662,21.877665 + pos: 31.448816,12.768794 parent: 1668 - - uid: 3626 + - uid: 2811 components: - type: Transform - pos: -20.472635,6.7337127 + pos: -17.469866,13.826667 parent: 1668 - - uid: 3627 + - uid: 2942 components: - type: Transform - pos: -20.48826,12.764963 + pos: -18.430601,7.791217 + parent: 1668 +- proto: LampBanana + entities: + - uid: 6118 + components: + - type: Transform + pos: -13.363054,-16.750496 parent: 1668 - proto: LampGold entities: - - uid: 3628 + - uid: 2819 components: - type: Transform - pos: -16.37576,12.926986 + pos: -13.453783,13.873542 parent: 1668 -- proto: LargeBeaker + - uid: 7296 + components: + - type: Transform + pos: -44.4528,6.0092916 + parent: 1668 + - uid: 7297 + components: + - type: Transform + pos: -50.48405,6.0092916 + parent: 1668 + - uid: 7298 + components: + - type: Transform + pos: -50.48601,-6.06394 + parent: 1668 +- proto: LemoonSeeds entities: - - uid: 5066 + - uid: 1023 components: - type: Transform - pos: -10.010703,-28.243814 + pos: 9.280961,-23.281765 parent: 1668 -- proto: Lighter + - uid: 1024 + components: + - type: Transform + pos: 9.280961,-23.337322 + parent: 1668 + - uid: 1025 + components: + - type: Transform + pos: 9.280961,-23.399822 + parent: 1668 + - uid: 1026 + components: + - type: Transform + pos: 9.280961,-23.462322 + parent: 1668 +- proto: LockerAtmosphericsFilled entities: - - uid: 3754 + - uid: 4033 components: - type: Transform - pos: -18.379215,8.381029 - parent: 1668 -- proto: LockableButtonCentcomm - entities: - - uid: 3149 - components: - - type: Transform - pos: 14.5,32.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 4476: - - Pressed: Toggle - 6492: - - Pressed: Toggle - 6397: - - Pressed: Toggle - 3431: - - Pressed: Toggle - - uid: 4477 - components: - - type: Transform - pos: 4.5,32.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2946: - - Pressed: Toggle - 5058: - - Pressed: Toggle - 6314: - - Pressed: Toggle - 3420: - - Pressed: Toggle -- proto: LockableButtonCommand - entities: - - uid: 4475 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 3789: - - Pressed: Toggle - 3788: - - Pressed: Toggle - 3787: - - Pressed: Toggle -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 3790 - components: - - type: Transform - pos: 15.5,-29.5 + pos: -15.5,26.5 parent: 1668 - proto: LockerBoozeFilled entities: - - uid: 4417 + - uid: 1281 components: - type: Transform - pos: 10.5,-28.5 + pos: 32.5,-23.5 + parent: 1668 + - uid: 2381 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1668 +- proto: LockerBrigmedicFilled + entities: + - uid: 3609 + components: + - type: Transform + pos: 15.5,9.5 parent: 1668 - proto: LockerChemistryFilled entities: - - uid: 3986 + - uid: 756 components: - type: Transform - pos: 5.5,-13.5 + pos: 8.5,-12.5 parent: 1668 -- proto: LockerChiefEngineerFilled +- proto: LockerChiefEngineer entities: - - uid: 6491 + - uid: 6770 components: + - type: MetaData + name: ert engineer's locker - type: Transform - pos: -14.5,-3.5 + pos: -33.5,-4.5 parent: 1668 -- proto: LockerChiefMedicalOfficerFilled + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6780 + - 6779 + - 6778 + - 6777 + - 6776 + - 6775 + - 6774 + - 6773 + - 6772 + - 6771 + - 6781 + - 6782 + - 6783 + - 6784 + - 6785 + - 6786 + - 6787 + - 6788 + - 6789 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6790 + components: + - type: MetaData + name: ert engineer's locker + - type: Transform + pos: -32.5,-4.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6800 + - 6799 + - 6798 + - 6797 + - 6796 + - 6795 + - 6794 + - 6793 + - 6792 + - 6791 + - 6801 + - 6802 + - 6803 + - 6804 + - 6805 + - 6806 + - 6807 + - 6808 + - 6809 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefMedicalOfficer entities: - - uid: 6495 + - uid: 6846 components: + - type: MetaData + name: ert medic's locker - type: Transform - pos: -14.5,-9.5 + pos: -33.5,-10.5 parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6855 + - 6854 + - 6853 + - 6852 + - 6851 + - 6850 + - 6849 + - 6848 + - 6847 + - 6856 + - 6857 + - 6858 + - 6859 + - 6860 + - 6861 + - 6862 + - 6863 + - 6864 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6865 + components: + - type: MetaData + name: ert medic's locker + - type: Transform + pos: -32.5,-10.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6874 + - 6873 + - 6872 + - 6871 + - 6870 + - 6869 + - 6868 + - 6867 + - 6866 + - 6875 + - 6876 + - 6877 + - 6878 + - 6879 + - 6880 + - 6881 + - 6882 + - 6883 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerElectricalSuppliesFilled entities: - - uid: 1178 + - uid: 3162 components: - type: Transform - pos: 15.5,-15.5 + pos: -4.5,9.5 parent: 1668 - - uid: 2039 - components: - - type: Transform - pos: 2.5,21.5 - parent: 1668 - - uid: 5322 - components: - - type: Transform - pos: 27.5,-13.5 - parent: 1668 -- proto: LockerEngineerFilledHardsuit +- proto: LockerEngineerFilled entities: - - uid: 3796 + - uid: 4036 components: - type: Transform - pos: 23.5,-23.5 - parent: 1668 - - uid: 5252 - components: - - type: Transform - pos: 23.5,-22.5 + pos: -15.5,23.5 parent: 1668 - proto: LockerEvidence entities: - - uid: 3148 + - uid: 1356 components: - type: Transform - pos: 8.5,25.5 + pos: 11.5,12.5 + parent: 1668 + - uid: 1357 + components: + - type: Transform + pos: 15.5,12.5 parent: 1668 - proto: LockerFreezer entities: - - uid: 5458 + - uid: 1183 components: - type: Transform - pos: -8.5,-21.5 + pos: 17.5,-21.5 + parent: 1668 + - uid: 5452 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5453 + - 5454 + - 5455 + - 5456 + - 5457 + - 5458 + - 5459 + - 5460 + - 5461 + - 5462 + - 5463 + - 5464 + - 5465 + - 5466 + - 5467 + - 5468 + - 5469 + - 5470 + - 5471 + - 5472 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 5481 + components: + - type: Transform + pos: -8.5,-29.5 parent: 1668 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1496 + temperature: 293.14673 moles: - 1.7459903 - 6.568249 @@ -27395,802 +41107,1638 @@ entities: showEnts: False occludes: True ents: - - 5459 - - 5460 - - 5461 - - 5462 - - 5848 + - 5482 + - 5483 + - 5484 + - 5485 + - 5486 + - 5487 + - 5488 + - 5489 + - 5490 + - 5491 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 327 + - uid: 5492 components: - type: Transform - pos: -10.5,-5.5 + pos: -7.5,-29.5 parent: 1668 -- proto: LockerHeadOfSecurityFilled + - 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: + - 5493 + - 5494 + - 5495 + - 5496 + - 5497 + - 5498 + - 5499 + - 5500 + - 5501 + - 5502 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfSecurity entities: - - uid: 3153 + - uid: 6810 components: + - type: MetaData + name: ert security's locker - type: Transform - pos: -11.5,-9.5 + pos: -28.5,-10.5 parent: 1668 -- proto: LockerQuarterMasterFilled + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6822 + - 6821 + - 6820 + - 6819 + - 6818 + - 6817 + - 6816 + - 6815 + - 6814 + - 6813 + - 6812 + - 6811 + - 6823 + - 6824 + - 6825 + - 6826 + - 6827 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6828 + components: + - type: MetaData + name: ert security's locker + - type: Transform + pos: -29.5,-10.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6840 + - 6839 + - 6838 + - 6837 + - 6836 + - 6835 + - 6834 + - 6833 + - 6832 + - 6831 + - 6830 + - 6829 + - 6841 + - 6842 + - 6843 + - 6844 + - 6845 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerRepresentative entities: - - uid: 5080 + - uid: 6884 components: + - type: MetaData + name: ert leader's locker - type: Transform - pos: -10.5,-7.5 - parent: 1668 -- proto: LockerResearchDirectorFilled - entities: - - uid: 6494 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 1668 -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 3987 - components: - - type: Transform - pos: -8.5,19.5 + pos: -28.5,-4.5 parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6902 + - 6901 + - 6900 + - 6899 + - 6898 + - 6897 + - 6896 + - 6895 + - 6894 + - 6893 + - 6892 + - 6891 + - 6890 + - 6889 + - 6888 + - 6887 + - 6886 + - 6885 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerSecurityFilled entities: - - uid: 511 + - uid: 1594 components: - type: Transform - pos: 19.5,-10.5 + pos: 15.5,5.5 parent: 1668 - - uid: 512 + - uid: 1595 components: - type: Transform - pos: 22.5,-10.5 + pos: 15.5,6.5 parent: 1668 - - uid: 815 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 1668 -- proto: LockerWallMedicalDoctorFilled - entities: - - uid: 6775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-15.5 - parent: 1668 -- proto: LockerWallMedicalFilled - entities: - - uid: 2013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 1668 -- proto: LockerWardenFilled - entities: - - uid: 2713 - components: - - type: Transform - pos: 6.5,17.5 - parent: 1668 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 129 - components: - - type: Transform - pos: -26.5,2.5 - parent: 1668 - - uid: 2040 - components: - - type: Transform - pos: 0.5,19.5 - parent: 1668 - - uid: 5319 - components: - - type: Transform - pos: 28.5,-13.5 - parent: 1668 -- proto: MachineCentrifuge - entities: - - uid: 1426 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 1668 -- proto: MachineElectrolysisUnit - entities: - - uid: 6506 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 1668 -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 3896 - components: - - type: Transform - pos: -13.453807,-3.1600308 - parent: 1668 -- proto: MaterialBiomass - entities: - - uid: 2495 - components: - - type: Transform - pos: 13.210049,-12.580112 - parent: 1668 -- proto: MedalCase - entities: - - uid: 6922 - components: - - type: Transform - pos: -18.47654,4.596927 - parent: 1668 -- proto: MedicalBed - entities: - - uid: 612 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 1668 - - uid: 1195 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 1668 - - uid: 1196 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 1668 -- proto: MedicalScanner - entities: - - uid: 723 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 1668 -- proto: MedicalTechFab - entities: - - uid: 616 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 1668 -- proto: MedkitAdvancedFilled - entities: - - uid: 6610 - components: - - type: Transform - pos: 14.536912,-7.5898757 - parent: 1668 -- proto: MedkitBruteFilled - entities: - - uid: 622 - components: - - type: Transform - pos: 14.703841,-7.3571634 - parent: 1668 -- proto: MedkitBurnFilled - entities: - - uid: 621 - components: - - type: Transform - pos: 14.594466,-7.4821634 - parent: 1668 -- proto: MedkitFilled - entities: - - uid: 1454 - components: - - type: Transform - pos: 15.537778,-2.524952 - parent: 1668 - - uid: 3897 - components: - - type: Transform - pos: -13.438182,-5.5085163 - parent: 1668 -- proto: MedkitOxygenFilled - entities: - - uid: 625 - components: - - type: Transform - pos: 15.547591,-7.3884134 - parent: 1668 -- proto: MedkitRadiationFilled - entities: - - uid: 623 - components: - - type: Transform - pos: 15.266341,-7.6071634 - parent: 1668 -- proto: MedkitToxinFilled - entities: - - uid: 624 - components: - - type: Transform - pos: 15.406966,-7.4977884 - parent: 1668 -- proto: Mirror - entities: - - uid: 3426 - components: - - type: Transform - pos: -19.5,14.5 - parent: 1668 - - uid: 6845 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 1668 -- proto: MopItem - entities: - - uid: 6230 - components: - - type: Transform - pos: -17.485325,-31.461966 - parent: 1668 -- proto: NetworkConfigurator - entities: - - uid: 1461 - components: - - type: Transform - pos: 13.484868,-12.584605 - parent: 1668 -- proto: NitrogenCanister - entities: - - uid: 5413 - components: - - type: Transform - pos: 25.5,-28.5 - parent: 1668 -- proto: NTFlag - entities: - - uid: 1190 - components: - - type: Transform - pos: 15.5,7.5 - parent: 1668 - - uid: 2143 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 1668 - - uid: 2249 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 1668 -- proto: NTHandyFlag - entities: - - uid: 1187 - components: - - type: Transform - pos: 31.51589,5.5499916 - parent: 1668 -- proto: Omnitool - entities: - - uid: 4393 - components: - - type: Transform - pos: 24.630873,-13.468605 - parent: 1668 -- proto: OperatingTable - entities: - - uid: 610 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 1668 -- proto: OreProcessorIndustrial - entities: - - uid: 6978 - components: - - type: Transform - pos: -5.5,29.5 - parent: 1668 -- proto: OxygenCanister - entities: - - uid: 5415 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 1668 - - uid: 6719 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 1668 -- proto: OxygenTankFilled - entities: - - uid: 3901 - components: - - type: Transform - pos: -12.625682,-7.0710163 - parent: 1668 -- proto: PaintingAmogusTriptych - entities: - - uid: 3766 - components: - - type: Transform - pos: -21.5,7.5 - parent: 1668 - - uid: 6942 - components: - - type: Transform - pos: -14.5,7.5 - parent: 1668 -- proto: PaintingHelloWorld - entities: - - uid: 3767 - components: - - type: Transform - pos: -17.5,3.5 - parent: 1668 -- proto: PaintingNightHawks - entities: - - uid: 3779 - components: - - type: Transform - pos: -25.5,4.5 - parent: 1668 -- proto: PaintingSadClown - entities: - - uid: 6943 - components: - - type: Transform - pos: -16.5,7.5 - parent: 1668 -- proto: PaintingSaturn - entities: - - uid: 3776 - components: - - type: Transform - pos: -9.5,5.5 - parent: 1668 -- proto: PaintingTheGreatWave - entities: - - uid: 3743 - components: - - type: Transform - pos: -20.5,13.5 - parent: 1668 -- proto: PaintingTheSonOfMan - entities: - - uid: 3744 - components: - - type: Transform - pos: -17.5,9.5 - parent: 1668 -- proto: Paper - entities: - - uid: 2915 - components: - - type: Transform - pos: 0.536467,0.64872134 - parent: 1668 - - uid: 2916 - components: - - type: Transform - pos: 0.44271702,0.72684634 - parent: 1668 - - uid: 2919 - components: - - type: Transform - pos: 0.645842,0.55497134 - parent: 1668 -- proto: PaperBin10 - entities: - - uid: 6630 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1668 -- proto: ParchisBoard - entities: - - uid: 3764 - components: - - type: Transform - pos: -23.482897,2.599884 - parent: 1668 -- proto: PenCentcom - entities: - - uid: 2905 - components: - - type: Transform - pos: -20.468134,12.0128975 - parent: 1668 - - uid: 2924 - components: - - type: Transform - pos: 0.16146702,1.3987213 - parent: 1668 - - uid: 6600 - components: - - type: Transform - pos: -1.4166579,1.6018463 - parent: 1668 -- proto: PercentileDie - entities: - - uid: 3765 - components: - - type: Transform - pos: -18.522638,2.6762333 - parent: 1668 -- proto: PhoneInstrument +- proto: LockerSteel entities: - uid: 2464 components: - type: Transform - pos: 29.471363,23.660753 + pos: 16.5,32.5 parent: 1668 - - uid: 3742 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2474 + - 2473 + - 2472 + - 2471 + - 2470 + - 2469 + - 2468 + - 2467 + - 2466 + - 2465 + - 2475 + - 2476 + - 2477 + - 2478 + - 2479 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2480 components: - type: Transform - pos: -19.555511,10.655831 + pos: 15.5,32.5 parent: 1668 - - uid: 3876 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2490 + - 2489 + - 2488 + - 2487 + - 2486 + - 2485 + - 2484 + - 2483 + - 2482 + - 2481 + - 2491 + - 2492 + - 2493 + - 2494 + - 2495 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2496 components: - type: Transform - pos: -26.67884,-3.3787808 + pos: 10.5,32.5 parent: 1668 -- proto: PianoInstrument + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2506 + - 2505 + - 2504 + - 2503 + - 2502 + - 2501 + - 2500 + - 2499 + - 2498 + - 2497 + - 2507 + - 2508 + - 2509 + - 2510 + - 2511 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2512 + components: + - type: Transform + pos: 11.5,32.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2522 + - 2521 + - 2520 + - 2519 + - 2518 + - 2517 + - 2516 + - 2515 + - 2514 + - 2513 + - 2523 + - 2524 + - 2525 + - 2526 + - 2527 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4817 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1668 + - uid: 4818 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1668 + - uid: 4819 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1668 + - uid: 4820 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1668 + - uid: 4821 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1668 + - uid: 4822 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 1668 + - uid: 4823 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 1668 + - uid: 4824 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 1668 + - uid: 4825 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 1668 + - uid: 4826 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 1668 +- proto: LockerWardenFilled entities: - - uid: 4474 + - uid: 3608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 + pos: 15.5,8.5 + parent: 1668 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 3161 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1668 +- proto: MachineCentrifuge + entities: + - uid: 674 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1668 +- proto: MachineElectrolysisUnit + entities: + - uid: 673 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1668 +- proto: MagazineMagnum + entities: + - uid: 6885 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagicDiceBag + entities: + - uid: 4765 + components: + - type: Transform + pos: -5.4992046,-49.447086 + parent: 1668 +- proto: Mannequin + entities: + - uid: 3239 + components: + - type: MetaData + desc: Bane of Cybersun. Head of CentComm Security. + name: Haunted Security Mannequin + - type: Transform + pos: 35.5,7.5 + parent: 1668 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 3242 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: Godmode + oldDamage: {} + - uid: 6047 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 1668 +- proto: Matchbox + entities: + - uid: 9160 + components: + - type: Transform + pos: 21.13559,-32.132904 + parent: 1668 +- proto: MaterialBiomass + entities: + - uid: 749 + components: + - type: Transform + pos: 22.309278,-8.386292 + parent: 1668 + - uid: 752 + components: + - type: Transform + pos: 22.434278,-8.480042 + parent: 1668 + - uid: 753 + components: + - type: Transform + pos: 22.559278,-8.386292 + parent: 1668 +- proto: MechEquipmentGrabberSmall + entities: + - uid: 4018 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1668 +- proto: MedicalBed + entities: + - uid: 680 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1668 + - uid: 681 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1668 +- proto: MedicalScanner + entities: + - uid: 734 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1668 +- proto: MedicalTechFab + entities: + - uid: 812 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1668 +- proto: MedicatedSuture + entities: + - uid: 2057 + components: + - type: Transform + pos: 16.454739,-4.266801 + parent: 1668 + - uid: 6855 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6874 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6902 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitAdvancedFilled + entities: + - uid: 759 + components: + - type: Transform + pos: 12.405088,-13.153012 + parent: 1668 + - uid: 760 + components: + - type: Transform + pos: 12.405088,-13.342827 + parent: 1668 + - uid: 761 + components: + - type: Transform + pos: 12.405088,-13.532642 + parent: 1668 + - uid: 7099 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 1668 +- proto: MedkitBruteFilled + entities: + - uid: 762 + components: + - type: Transform + pos: 12.997496,-13.1514435 + parent: 1668 + - uid: 763 + components: + - type: Transform + pos: 13.002125,-13.341258 + parent: 1668 + - uid: 764 + components: + - type: Transform + pos: 13.002125,-13.531073 + parent: 1668 +- proto: MedkitBurnFilled + entities: + - uid: 765 + components: + - type: Transform + pos: 13.591135,-13.146813 + parent: 1668 + - uid: 766 + components: + - type: Transform + pos: 13.591135,-13.331999 + parent: 1668 + - uid: 767 + components: + - type: Transform + pos: 13.591135,-13.521813 + parent: 1668 +- proto: MedkitCombatFilled + entities: + - uid: 768 + components: + - type: Transform + pos: 14.1850605,-13.1514435 + parent: 1668 + - uid: 769 + components: + - type: Transform + pos: 14.1850605,-13.341258 + parent: 1668 + - uid: 770 + components: + - type: Transform + pos: 14.1850605,-13.5264435 + parent: 1668 + - uid: 6864 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6875 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitFilled + entities: + - uid: 771 + components: + - type: Transform + pos: 14.778411,-13.1514435 + parent: 1668 + - uid: 772 + components: + - type: Transform + pos: 14.773782,-13.341258 + parent: 1668 + - uid: 773 + components: + - type: Transform + pos: 14.773782,-13.5264435 + parent: 1668 + - uid: 808 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 1668 + - uid: 6755 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 1668 +- proto: MedkitOxygenFilled + entities: + - uid: 774 + components: + - type: Transform + pos: 15.366374,-13.1514435 + parent: 1668 + - uid: 775 + components: + - type: Transform + pos: 15.366374,-13.341258 + parent: 1668 + - uid: 776 + components: + - type: Transform + pos: 15.361745,-13.5264435 + parent: 1668 +- proto: MedkitRadiationFilled + entities: + - uid: 777 + components: + - type: Transform + pos: 15.965172,-13.1514435 + parent: 1668 + - uid: 778 + components: + - type: Transform + pos: 15.965172,-13.341258 + parent: 1668 + - uid: 779 + components: + - type: Transform + pos: 15.955913,-13.521813 + parent: 1668 +- proto: MedkitToxinFilled + entities: + - uid: 780 + components: + - type: Transform + pos: 16.562393,-13.146813 + parent: 1668 + - uid: 781 + components: + - type: Transform + pos: 16.562393,-13.336628 + parent: 1668 + - uid: 782 + components: + - type: Transform + pos: 16.557764,-13.5264435 + parent: 1668 +- proto: MetalFoamGrenade + entities: + - uid: 2418 + components: + - type: Transform + pos: 15.114939,30.81574 + parent: 1668 + - uid: 2594 + components: + - type: Transform + pos: 15.114939,30.81574 + parent: 1668 + - uid: 2595 + components: + - type: Transform + pos: 15.114939,30.81574 + parent: 1668 + - uid: 2596 + components: + - type: Transform + pos: 15.114939,30.81574 + parent: 1668 +- proto: MindShieldImplanter + entities: + - uid: 2478 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2491 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2506 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2522 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Mirror + entities: + - uid: 2789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,15.5 + parent: 1668 +- proto: MopBucketFull + entities: + - uid: 9081 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 1668 +- proto: Multitool + entities: + - uid: 3178 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1668 +- proto: NitrogenCanister + entities: + - uid: 3493 + components: + - type: Transform + pos: -31.5,26.5 + parent: 1668 + - uid: 4119 + components: + - type: Transform + pos: -22.5,29.5 + parent: 1668 +- proto: NitrousOxideCanister + entities: + - uid: 4120 + components: + - type: Transform + pos: -22.5,28.5 + parent: 1668 +- proto: NoticeBoard + entities: + - uid: 4297 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 1668 + - uid: 4298 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 1668 +- proto: NTFlag + entities: + - uid: 4181 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1668 + - uid: 7295 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 1668 +- proto: NTHandyFlag + entities: + - uid: 4191 + components: + - type: Transform + pos: 32.55483,-11.579755 + parent: 1668 + - uid: 9339 + components: + - type: Transform + pos: -40.5,1.5 + parent: 1668 +- proto: NukeCodePaperStation + entities: + - uid: 536 + components: + - type: Transform + pos: -1.4979519,1.1034296 + parent: 1668 +- proto: OmnizineChemistryBottle + entities: + - uid: 6862 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6863 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6866 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6876 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OreProcessor + entities: + - uid: 4080 + components: + - type: Transform + pos: 3.5,26.5 + parent: 1668 +- proto: OxygenCanister + entities: + - uid: 792 + components: + - type: Transform + anchored: True + pos: 19.5,-13.5 + parent: 1668 + - type: Physics + bodyType: Static + - uid: 3494 + components: + - type: Transform + pos: -31.5,20.5 + parent: 1668 + - uid: 4122 + components: + - type: Transform + pos: -21.5,30.5 + parent: 1668 +- proto: PaintingAmogusTriptych + entities: + - uid: 2928 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1668 +- proto: PaintingHelloWorld + entities: + - uid: 6000 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1668 +- proto: PaintingNightHawks + entities: + - uid: 2925 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1668 +- proto: PaintingSaturn + entities: + - uid: 2924 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1668 +- proto: PaintingTheGreatWave + entities: + - uid: 2799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,14.5 + parent: 1668 +- proto: Paper + entities: + - uid: 1748 + components: + - type: Transform + pos: 7.501362,11.6733 + parent: 1668 + - uid: 1749 + components: + - type: Transform + pos: 7.501362,11.6733 + parent: 1668 + - uid: 1750 + components: + - type: Transform + pos: 19.535091,11.6733 + parent: 1668 + - uid: 1751 + components: + - type: Transform + pos: 19.535091,11.6733 + parent: 1668 +- proto: PaperBin5 + entities: + - uid: 507 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1668 + - uid: 529 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1668 + - uid: 2087 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1668 + - uid: 6752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-6.5 + parent: 1668 + - uid: 7299 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 1668 + - uid: 7300 + components: + - type: Transform + pos: -48.5,5.5 + parent: 1668 + - uid: 7301 + components: + - type: Transform + pos: -42.5,5.5 + parent: 1668 +- proto: Pen + entities: + - uid: 1746 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1668 + - uid: 1747 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1668 +- proto: PenCentcom + entities: + - uid: 528 + components: + - type: Transform + pos: 0.062660635,1.813037 + parent: 1668 + - uid: 2860 + components: + - type: Transform + pos: -17.37441,12.973077 + parent: 1668 + - uid: 9080 + components: + - type: Transform + pos: -7.577932,-9.288714 + parent: 1668 +- proto: PersonalAI + entities: + - uid: 1377 + components: + - type: Transform + pos: -3.598611,-0.49923915 + parent: 1668 +- proto: PhoneInstrument + entities: + - uid: 1384 + components: + - type: Transform + pos: 0.51263905,1.1600976 + parent: 1668 + - uid: 2029 + components: + - type: Transform + pos: 28.45356,27.588108 + parent: 1668 + - uid: 2849 + components: + - type: Transform + pos: -16.54149,11.627905 + parent: 1668 + - uid: 4764 + components: + - type: Transform + pos: -3.5407324,-49.447086 + parent: 1668 + - uid: 6763 + components: + - type: Transform + pos: -44.811134,-4.457982 parent: 1668 - proto: PlaqueAtmos entities: - - uid: 4383 - components: - - type: Transform - pos: 2.5,-24.5 - parent: 1668 - - uid: 6646 - components: - - type: Transform - pos: 17.5,-28.5 - parent: 1668 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 5934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 1668 - - uid: 6004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 1668 - - uid: 6103 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 1668 - - uid: 6180 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 1668 - - uid: 6181 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 1668 - - uid: 6231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1668 - - uid: 6232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 1668 - - uid: 6277 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 1668 -- proto: PlasmaWindoorSecureSecurityLocked - entities: - - uid: 5410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,22.5 - parent: 1668 - - uid: 5411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 1668 - - uid: 5416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1668 - - uid: 5417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1668 - - uid: 5423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1668 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 1590 - components: - - type: Transform - pos: -16.5,24.5 - parent: 1668 - - uid: 1591 - components: - - type: Transform - pos: -14.5,24.5 - parent: 1668 - - uid: 1592 + - uid: 4031 components: - type: Transform pos: -16.5,28.5 parent: 1668 - - uid: 1593 + - uid: 4213 components: - type: Transform - pos: -14.5,28.5 + pos: 2.5,-32.5 parent: 1668 - - uid: 1623 - components: - - type: Transform - pos: -4.5,15.5 - parent: 1668 -- proto: PlushieAtmosian +- proto: PlasmaCanister entities: - - uid: 6890 + - uid: 4121 components: - type: Transform - pos: 17.549469,-29.409344 + pos: -21.5,29.5 parent: 1668 -- proto: PortableScrubber +- proto: PlasticFlapsAirtightClear entities: - - uid: 3696 + - uid: 2833 components: - type: Transform - pos: -14.5,4.5 + pos: 0.5,22.5 parent: 1668 - - uid: 5764 + - uid: 3723 components: - type: Transform - pos: 16.5,-31.5 + pos: 1.5,36.5 parent: 1668 - - uid: 5765 + - uid: 3724 components: - type: Transform - pos: 17.5,-31.5 + pos: 5.5,36.5 + parent: 1668 + - uid: 3725 + components: + - type: Transform + pos: 5.5,33.5 + parent: 1668 + - uid: 3726 + components: + - type: Transform + pos: 1.5,33.5 + parent: 1668 +- proto: PlastitaniumWindowDiagonalIndestructible + entities: + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 1668 + - uid: 2540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 1668 + - uid: 2541 + components: + - type: Transform + pos: 18.5,33.5 + parent: 1668 + - uid: 2543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,31.5 + parent: 1668 +- proto: PlastitaniumWindowIndestructible + entities: + - uid: 1741 + components: + - type: Transform + pos: 18.5,32.5 + parent: 1668 + - uid: 2130 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1668 + - uid: 2131 + components: + - type: Transform + pos: 19.5,31.5 + parent: 1668 + - uid: 2158 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1668 + - uid: 2189 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1668 + - uid: 2200 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1668 + - uid: 2201 + components: + - type: Transform + pos: 14.5,29.5 + parent: 1668 + - uid: 2202 + components: + - type: Transform + pos: 12.5,29.5 + parent: 1668 + - uid: 2449 + components: + - type: Transform + pos: 19.5,33.5 + parent: 1668 + - uid: 2538 + components: + - type: Transform + pos: 20.5,32.5 + parent: 1668 + - uid: 6048 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1668 + - uid: 6049 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1668 + - uid: 6050 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 1668 + - uid: 6051 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1668 + - uid: 6052 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 1668 + - uid: 6053 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 1668 + - uid: 6054 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 1668 + - uid: 6055 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 1668 + - uid: 6077 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 1668 + - uid: 6078 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 1668 + - uid: 6080 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 1668 + - uid: 6088 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 1668 + - uid: 6089 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 1668 + - uid: 6090 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 1668 + - uid: 6643 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 1668 + - uid: 6644 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 1668 + - uid: 6645 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 1668 + - uid: 6646 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 1668 + - uid: 6647 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 1668 + - uid: 6648 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 1668 + - uid: 6649 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 1668 + - uid: 6650 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 1668 +- proto: PlayerStationAiEmpty + entities: + - uid: 73 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1668 +- proto: PlushieGhost + entities: + - uid: 6072 + components: + - type: Transform + pos: -11.029306,-17.366844 + parent: 1668 + - type: PointLight + color: '#32A836FF' +- proto: PlushieLizard + entities: + - uid: 6074 + components: + - type: Transform + pos: -16.573818,-17.423563 + parent: 1668 +- proto: PlushieSharkBlue + entities: + - uid: 9288 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1668 +- proto: PortableGeneratorJrPacman + entities: + - uid: 4092 + components: + - type: Transform + pos: -9.5,22.5 + parent: 1668 +- proto: PortableGeneratorPacman + entities: + - uid: 4093 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1668 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 4094 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1668 +- proto: PortableRecharger + entities: + - uid: 2597 + components: + - type: Transform + pos: 12.000356,30.555325 + parent: 1668 + - uid: 2598 + components: + - type: Transform + pos: 12.000356,30.555325 + parent: 1668 + - uid: 2599 + components: + - type: Transform + pos: 12.000356,30.555325 + parent: 1668 + - uid: 2600 + components: + - type: Transform + pos: 12.000356,30.555325 + parent: 1668 + - uid: 6740 + components: + - type: Transform + pos: -31.43239,-10.454217 + parent: 1668 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 4029 + components: + - type: Transform + pos: -18.5,28.5 parent: 1668 - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 6638 + - uid: 9291 components: - type: MetaData - desc: A picture depicting a woman at the beach. Neat. + desc: Ah the good old days. name: Beach Star Bratton! - type: Transform - pos: 15.5,33.5 + pos: -10.5,8.5 parent: 1668 - proto: PosterContrabandC20r entities: - - uid: 6734 + - uid: 2448 components: - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,33.5 parent: 1668 +- proto: PosterContrabandDonk + entities: + - uid: 9335 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1668 +- proto: PosterContrabandDonutCorp + entities: + - uid: 9334 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1668 - proto: PosterContrabandEAT entities: - - uid: 6737 + - uid: 9292 components: - type: Transform - pos: -12.5,-26.5 + pos: 11.5,-15.5 + parent: 1668 +- proto: PosterContrabandEnergySwords + entities: + - uid: 2183 + components: + - type: Transform + pos: 17.5,34.5 + parent: 1668 +- proto: PosterContrabandHackingGuide + entities: + - uid: 9332 + components: + - type: Transform + pos: -7.5,16.5 + parent: 1668 +- proto: PosterContrabandHaveaPuff + entities: + - uid: 9293 + components: + - type: Transform + pos: 7.5,-13.5 parent: 1668 - proto: PosterContrabandHighEffectEngineering entities: - - uid: 4576 + - uid: 9331 components: - type: Transform - pos: 22.5,-20.5 + pos: -16.5,17.5 + parent: 1668 +- proto: PosterContrabandInterdyne + entities: + - uid: 9294 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 1668 +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 2451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,25.5 parent: 1668 - proto: PosterContrabandMissingGloves entities: - - uid: 6945 + - uid: 9329 components: - type: Transform - pos: 14.5,-21.5 + pos: 2.5,13.5 + parent: 1668 +- proto: PosterContrabandMissingSpacepen + entities: + - uid: 9299 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 1668 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 9327 + components: + - type: Transform + pos: 9.5,32.5 parent: 1668 - proto: PosterContrabandRedRum entities: - - uid: 6918 + - uid: 9304 components: - type: Transform - pos: -4.5,25.5 + pos: 35.5,-25.5 parent: 1668 -- proto: PosterContrabandRobustSoftdrinks +- proto: PosterContrabandRevolver entities: - - uid: 6958 + - uid: 2450 components: - type: Transform - pos: -7.5,-14.5 + rot: 1.5707963267948966 rad + pos: 9.5,27.5 parent: 1668 -- proto: PosterContrabandSpaceUp +- proto: PosterContrabandSmoke entities: - - uid: 6746 + - uid: 9309 components: - type: Transform - pos: 29.5,-7.5 + pos: 2.5,9.5 parent: 1668 - proto: PosterContrabandTools entities: - - uid: 6731 + - uid: 9312 components: - type: Transform - pos: 22.5,-21.5 - parent: 1668 -- proto: PosterContrabandUnreadableAnnouncement - entities: - - uid: 6917 - components: - - type: Transform - pos: -8.5,18.5 + pos: -7.5,14.5 parent: 1668 - proto: PosterContrabandVoteWeh entities: - - uid: 6745 + - uid: 308 components: - type: Transform pos: 29.5,6.5 parent: 1668 -- proto: PosterLegitAnatomyPoster +- proto: PosterContrabandWaffleCorp entities: - - uid: 6733 + - uid: 9330 components: - type: Transform - pos: 8.5,-6.5 + pos: 9.5,25.5 + parent: 1668 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 6188 + components: + - type: Transform + pos: 11.5,-12.5 parent: 1668 - proto: PosterLegitCarpMount entities: - - uid: 6740 + - uid: 9313 components: - type: Transform - pos: 8.5,33.5 - parent: 1668 - - uid: 6915 - components: - - type: Transform - pos: -9.5,7.5 - parent: 1668 -- proto: PosterLegitCleanliness - entities: - - uid: 6735 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 1668 - - uid: 6736 - components: - - type: Transform - pos: -9.5,-20.5 + pos: 6.5,23.5 parent: 1668 - proto: PosterLegitCohibaRobustoAd entities: - - uid: 6732 + - uid: 1328 components: - type: Transform - pos: 11.5,-24.5 + pos: 31.5,-22.5 parent: 1668 - proto: PosterLegitEnlist entities: - - uid: 6633 + - uid: 2447 components: - type: Transform - pos: 6.5,16.5 + rot: 1.5707963267948966 rad + pos: 9.5,31.5 parent: 1668 - - uid: 6639 +- proto: PosterLegitGetYourLEGS + entities: + - uid: 9333 components: - type: Transform - pos: 3.5,33.5 + pos: -34.5,-3.5 parent: 1668 - proto: PosterLegitHelpOthers entities: - - uid: 6738 + - uid: 9295 components: - type: Transform - pos: 11.5,-27.5 + pos: -12.5,-28.5 parent: 1668 - proto: PosterLegitHereForYourSafety entities: - - uid: 6959 + - uid: 9296 components: - type: Transform - pos: 5.5,-19.5 + pos: 7.5,-28.5 parent: 1668 - proto: PosterLegitHighClassMartini entities: - - uid: 6739 + - uid: 1327 components: - type: Transform - pos: 8.5,-20.5 + pos: 18.5,-22.5 + parent: 1668 +- proto: PosterLegitIan + entities: + - uid: 9307 + components: + - type: Transform + pos: -36.5,2.5 + parent: 1668 +- proto: PosterLegitIonRifle + entities: + - uid: 9297 + components: + - type: Transform + pos: 9.5,22.5 parent: 1668 - proto: PosterLegitJustAWeekAway entities: - - uid: 6741 + - uid: 307 components: - type: Transform pos: 33.5,-0.5 parent: 1668 - proto: PosterLegitLoveIan entities: - - uid: 6957 + - uid: 9308 components: - type: Transform - pos: -6.5,-16.5 + pos: -30.5,2.5 parent: 1668 - - uid: 6960 - components: - - type: Transform - pos: -14.5,-2.5 - parent: 1668 -- proto: PosterLegitNanomichiAd +- proto: PosterLegitMime entities: - - uid: 3778 + - uid: 9298 components: - type: Transform - pos: -25.5,6.5 + pos: -23.5,-5.5 parent: 1668 - proto: PosterLegitNanotrasenLogo entities: - - uid: 469 + - uid: 484 components: - type: Transform - pos: -24.5,13.5 + pos: -3.5,-7.5 parent: 1668 - - uid: 797 + - uid: 613 components: - type: Transform - pos: -2.5,-8.5 + pos: 18.5,-3.5 parent: 1668 - - uid: 798 + - uid: 614 components: - type: Transform - pos: -2.5,-6.5 + pos: 18.5,2.5 parent: 1668 - - uid: 799 + - uid: 622 components: - type: Transform - pos: 1.5,-6.5 + pos: -3.5,6.5 parent: 1668 - - uid: 800 + - uid: 623 components: - type: Transform - pos: 1.5,-8.5 + pos: 2.5,6.5 + parent: 1668 + - uid: 626 + components: + - type: Transform + pos: 2.5,-7.5 parent: 1668 - uid: 801 components: @@ -28202,2734 +42750,2312 @@ entities: - type: Transform pos: -4.5,-3.5 parent: 1668 - - uid: 1464 + - uid: 1270 components: - type: Transform - pos: 14.5,30.5 + pos: 18.5,-24.5 parent: 1668 - - uid: 1861 + - uid: 1338 components: - type: Transform - pos: -2.5,5.5 + pos: 28.5,-14.5 parent: 1668 - - uid: 2053 + - uid: 1339 components: - type: Transform - pos: 1.5,5.5 + pos: 24.5,-14.5 parent: 1668 - - uid: 2054 + - uid: 1340 components: - type: Transform - pos: -2.5,7.5 + pos: 31.5,-24.5 parent: 1668 - - uid: 2055 + - uid: 1341 components: - type: Transform - pos: 1.5,7.5 + pos: 31.5,-18.5 parent: 1668 - - uid: 2454 + - uid: 2001 components: - type: Transform - pos: 21.5,10.5 + pos: 26.5,28.5 parent: 1668 - - uid: 2455 + - uid: 2002 components: - type: Transform - pos: 21.5,13.5 + pos: 24.5,28.5 parent: 1668 - - uid: 2456 + - uid: 2003 components: - type: Transform - pos: 28.5,24.5 + pos: 28.5,28.5 parent: 1668 - - uid: 2457 + - uid: 2004 components: - type: Transform - pos: 30.5,24.5 + pos: 20.5,18.5 parent: 1668 - - uid: 2458 + - uid: 2005 components: - type: Transform - pos: 26.5,24.5 + pos: 32.5,18.5 parent: 1668 - - uid: 2459 + - uid: 2630 components: - type: Transform - pos: 34.5,20.5 + pos: 11.5,35.5 parent: 1668 - - uid: 2460 + - uid: 2631 components: - type: Transform - pos: 22.5,20.5 + pos: 15.5,35.5 parent: 1668 - - uid: 2918 + - uid: 2653 components: - type: Transform - pos: -19.5,13.5 + pos: 13.5,35.5 parent: 1668 - - uid: 3450 + - uid: 2702 components: - type: Transform - pos: -13.5,1.5 + rot: -1.5707963267948966 rad + pos: -12.5,2.5 parent: 1668 - - uid: 3603 + - uid: 2800 components: - type: Transform - pos: -11.5,7.5 + rot: 3.141592653589793 rad + pos: -16.5,14.5 parent: 1668 - - uid: 3604 + - uid: 2920 components: - type: Transform - pos: -15.5,7.5 + rot: -1.5707963267948966 rad + pos: -12.5,-3.5 parent: 1668 - - uid: 3605 + - uid: 3254 components: - type: Transform - pos: -11.5,-2.5 + pos: 17.5,17.5 parent: 1668 - - uid: 3606 + - uid: 3255 components: - type: Transform - pos: -17.5,-2.5 + pos: 1.5,17.5 parent: 1668 - - uid: 3777 + - uid: 3256 components: - type: Transform - pos: -25.5,2.5 + pos: -2.5,17.5 parent: 1668 - - uid: 3867 + - uid: 3257 components: - type: Transform - pos: -25.5,-2.5 + pos: 9.5,17.5 parent: 1668 - - uid: 4395 + - uid: 4182 components: - type: Transform - pos: 1.5,-24.5 + pos: 34.5,6.5 parent: 1668 - - uid: 4635 + - uid: 4183 components: - type: Transform - pos: -3.5,-14.5 + pos: 34.5,-7.5 parent: 1668 - - uid: 4636 + - uid: 4295 components: - type: Transform - pos: 2.5,-14.5 + pos: 7.5,-32.5 parent: 1668 - - uid: 6446 + - uid: 4296 components: - type: Transform - pos: 1.5,-38.5 + pos: -8.5,-32.5 parent: 1668 - - uid: 6447 + - uid: 7242 components: - type: Transform - pos: -3.5,-40.5 + rot: 1.5707963267948966 rad + pos: -55.5,-3.5 parent: 1668 - - uid: 6448 + - uid: 7243 components: - type: Transform - pos: 2.5,-40.5 + rot: 1.5707963267948966 rad + pos: -55.5,2.5 parent: 1668 - - uid: 6557 + - uid: 7286 components: - type: Transform - pos: -17.5,-23.5 + pos: -51.5,-3.5 parent: 1668 - - uid: 6558 + - uid: 7287 components: - type: Transform - pos: -15.5,-27.5 + pos: -47.5,2.5 parent: 1668 - - uid: 6559 + - uid: 7288 components: - type: Transform - pos: 1.5,-30.5 + pos: -41.5,2.5 parent: 1668 - - uid: 6560 + - uid: 7289 components: - type: Transform - pos: -2.5,-30.5 + pos: -45.5,-11.5 parent: 1668 - - uid: 6613 + - uid: 7290 components: - type: Transform - pos: 4.5,30.5 + pos: -45.5,-3.5 parent: 1668 - - uid: 6632 + - uid: 7291 components: - type: Transform - pos: 13.5,16.5 + pos: -35.5,-3.5 parent: 1668 - - uid: 6721 + - uid: 7292 components: - type: Transform - pos: 16.5,1.5 + pos: -35.5,-11.5 parent: 1668 - - uid: 6722 + - uid: 7293 components: - type: Transform - pos: 8.5,-2.5 + pos: -28.5,-11.5 parent: 1668 - - uid: 6882 + - uid: 7294 components: - type: Transform - pos: -2.5,-20.5 + pos: -28.5,-3.5 + parent: 1668 + - uid: 7490 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 1668 + - uid: 7491 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 1668 + - uid: 7492 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 1668 + - uid: 7493 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 1668 + - uid: 9323 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 1668 + - uid: 9324 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 1668 + - uid: 9325 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 1668 + - uid: 9326 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 1668 + - uid: 9328 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 1668 + - uid: 9336 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1668 + - uid: 9337 + components: + - type: Transform + pos: -3.5,-11.5 parent: 1668 - proto: PosterLegitNTTGC entities: - - uid: 6884 + - uid: 130 components: - type: Transform - pos: 18.5,17.5 + pos: 32.5,-7.5 + parent: 1668 + - uid: 9301 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1668 +- proto: PosterLegitOppenhopper + entities: + - uid: 9302 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 1668 +- proto: PosterLegitPDAAd + entities: + - uid: 9303 + components: + - type: Transform + pos: -6.5,-7.5 parent: 1668 - proto: PosterLegitPeriodicTable entities: - - uid: 6913 + - uid: 1321 components: - type: Transform - pos: 5.5,-14.5 + rot: 3.141592653589793 rad + pos: 10.5,-7.5 parent: 1668 - proto: PosterLegitRenault entities: - - uid: 6962 + - uid: 9306 components: - type: Transform - pos: -9.5,-6.5 + pos: -17.5,2.5 parent: 1668 - proto: PosterLegitReportCrimes entities: - - uid: 6743 + - uid: 9305 components: - type: Transform - pos: -19.5,1.5 + pos: 11.5,-24.5 parent: 1668 - proto: PosterLegitSafetyEyeProtection entities: - - uid: 6914 + - uid: 9320 components: - type: Transform - pos: 5.5,-8.5 + pos: -8.5,8.5 + parent: 1668 +- proto: PosterLegitSafetyInternals + entities: + - uid: 9322 + components: + - type: Transform + pos: -23.5,-28.5 parent: 1668 - proto: PosterLegitSafetyMothDelam entities: - - uid: 6912 + - uid: 9318 components: - type: Transform - pos: 23.5,-12.5 + pos: -12.5,14.5 parent: 1668 - proto: PosterLegitSafetyMothEpi entities: - - uid: 6910 + - uid: 9317 components: - type: Transform - pos: 12.5,-8.5 - parent: 1668 -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 6911 - components: - - type: Transform - pos: 14.5,-20.5 + pos: 18.5,-14.5 parent: 1668 - proto: PosterLegitSafetyMothMeth entities: - - uid: 6909 + - uid: 9316 components: - type: Transform - pos: 6.5,-12.5 + pos: 5.5,-13.5 parent: 1668 - proto: PosterLegitSafetyMothPiping entities: - - uid: 6887 + - uid: 9319 components: - type: Transform - pos: 14.5,-31.5 + pos: -20.5,18.5 + parent: 1668 +- proto: PosterLegitSafetyMothSSD + entities: + - uid: 9315 + components: + - type: Transform + pos: 29.5,-28.5 parent: 1668 - proto: PosterLegitSafetyReport entities: - - uid: 6747 + - uid: 9321 components: - type: Transform - pos: 23.5,-7.5 + pos: -31.5,-28.5 parent: 1668 - proto: PosterLegitSecWatch entities: - - uid: 6781 + - uid: 9310 components: - type: Transform - pos: 26.5,-12.5 + pos: 19.5,13.5 + parent: 1668 +- proto: PosterLegitSpaceCops + entities: + - uid: 9311 + components: + - type: Transform + pos: 11.5,6.5 parent: 1668 - proto: PosterLegitUeNo entities: - - uid: 6744 + - uid: 309 components: - type: Transform pos: 23.5,6.5 parent: 1668 - proto: PosterLegitVacation entities: - - uid: 6885 + - uid: 98 components: - type: Transform - pos: 8.5,9.5 + pos: 24.5,-7.5 parent: 1668 - - uid: 6886 + - uid: 2179 components: - type: Transform - pos: 18.5,-4.5 + pos: 17.5,30.5 parent: 1668 - - uid: 6919 - components: - - type: Transform - pos: -4.5,28.5 - parent: 1668 - - uid: 6946 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 1668 -- proto: PosterLegitWalk - entities: - - uid: 6961 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 1668 -- proto: PosterLegitWorkForAFuture - entities: - - uid: 6742 - components: - - type: Transform - pos: 10.5,33.5 - parent: 1668 - - uid: 6916 - components: - - type: Transform - pos: -12.5,13.5 - parent: 1668 -- proto: PosterMapBagel - entities: - - uid: 6749 - components: - - type: Transform - pos: 3.5,5.5 - parent: 1668 -- proto: PosterMapDelta - entities: - - uid: 6750 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 1668 -- proto: PosterMapLighthouse - entities: - - uid: 6754 - components: - - type: Transform - pos: -11.5,-20.5 - parent: 1668 -- proto: PosterMapMarathon - entities: - - uid: 6751 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 1668 -- proto: PosterMapMetaRight - entities: - - uid: 6752 - components: - - type: Transform - pos: 9.5,-29.5 - parent: 1668 -- proto: PosterMapMoose - entities: - - uid: 6755 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 1668 -- proto: PosterMapOrigin - entities: - - uid: 6759 - components: - - type: Transform - pos: -4.5,5.5 - parent: 1668 -- proto: PosterMapPillar - entities: - - uid: 6753 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 1668 -- proto: PosterMapSaltern - entities: - - uid: 6756 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 1668 -- proto: PosterMapSplit - entities: - - uid: 6757 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 1668 -- proto: PosterMapWaystation - entities: - - uid: 6758 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 1668 -- proto: PottedPlant15 - entities: - - uid: 3459 - components: - - type: Transform - pos: -24.5,12.5 - parent: 1668 -- proto: PottedPlant21 - entities: - - uid: 508 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 1668 - - uid: 542 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 1668 - - uid: 543 - components: - - type: Transform - pos: 19.5,4.5 - parent: 1668 - - uid: 602 - components: - - type: MetaData - name: security plant - - type: Transform - pos: 9.5,6.5 - parent: 1668 - - uid: 606 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 1668 - - uid: 607 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 1668 - - uid: 708 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 1668 - - uid: 709 - components: - - type: Transform - pos: 5.5,4.5 - parent: 1668 - - uid: 803 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 1668 - - uid: 2160 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1668 - - uid: 2161 - components: - - type: Transform - pos: -1.5,16.5 - parent: 1668 - - uid: 2162 - components: - - type: Transform - pos: 2.5,12.5 - parent: 1668 - - uid: 2381 - components: - - type: Transform - pos: 22.5,10.5 - parent: 1668 - - uid: 2383 - components: - - type: Transform - pos: 34.5,10.5 - parent: 1668 - - uid: 2384 - components: - - type: Transform - pos: 24.5,21.5 - parent: 1668 - - uid: 2385 - components: - - type: Transform - pos: 32.5,21.5 - parent: 1668 - - uid: 2386 - components: - - type: Transform - pos: 18.5,18.5 - parent: 1668 - - uid: 2422 - components: - - type: Transform - pos: 28.5,23.5 - parent: 1668 - - uid: 3178 - components: - - type: Transform - pos: 6.5,10.5 - parent: 1668 - - uid: 3179 - components: - - type: Transform - pos: 13.5,15.5 - parent: 1668 - - uid: 3456 - components: - - type: Transform - pos: -20.5,2.5 - parent: 1668 - - uid: 3457 - components: - - type: Transform - pos: -21.5,6.5 - parent: 1668 - - uid: 3458 - components: - - type: Transform - pos: -24.5,8.5 - parent: 1668 - - uid: 3460 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 1668 - - uid: 3461 - components: - - type: Transform - pos: -10.5,-0.5 - parent: 1668 - - uid: 3856 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 1668 - - uid: 3857 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 1668 - - uid: 3858 - components: - - type: Transform - pos: -23.5,-3.5 - parent: 1668 - - uid: 4624 - components: - - type: Transform - pos: -7.5,-19.5 - parent: 1668 - - uid: 4625 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 1668 - - uid: 4626 - components: - - type: Transform - pos: 4.5,-19.5 - parent: 1668 - - uid: 4627 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 1668 - - uid: 4628 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 1668 - - uid: 4629 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 1668 - - uid: 5375 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1668 - - uid: 5382 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 1668 - - uid: 6561 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 1668 - - uid: 6562 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 1668 - - uid: 6563 - components: - - type: Transform - pos: 2.5,-31.5 - parent: 1668 -- proto: PottedPlant22 - entities: - - uid: 544 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 1668 - - uid: 603 - components: - - type: MetaData - name: security plant - - type: Transform - pos: 13.5,4.5 - parent: 1668 - - uid: 706 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1668 - - uid: 707 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 1668 - - uid: 804 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 1668 - - uid: 2193 - components: - - type: Transform - pos: -2.5,16.5 - parent: 1668 - - uid: 2387 - components: - - type: Transform - pos: 23.5,10.5 - parent: 1668 - - uid: 2388 - components: - - type: Transform - pos: 33.5,10.5 - parent: 1668 - - uid: 2389 - components: - - type: Transform - pos: 34.5,21.5 - parent: 1668 - - uid: 2390 - components: - - type: Transform - pos: 22.5,21.5 - parent: 1668 - - uid: 2391 - components: - - type: Transform - pos: 25.5,21.5 - parent: 1668 - - uid: 2392 - components: - - type: Transform - pos: 31.5,21.5 - parent: 1668 - - uid: 2393 - components: - - type: Transform - pos: 18.5,22.5 - parent: 1668 - - uid: 2394 - components: - - type: Transform - pos: 16.5,12.5 - parent: 1668 - - uid: 3180 - components: - - type: Transform - pos: 6.5,15.5 - parent: 1668 - - uid: 3181 - components: - - type: Transform - pos: 14.5,10.5 - parent: 1668 - - uid: 3453 - components: - - type: Transform - pos: -22.5,2.5 - parent: 1668 - - uid: 3454 - components: - - type: Transform - pos: -24.5,6.5 - parent: 1668 - - uid: 3455 - components: - - type: Transform - pos: -22.5,8.5 - parent: 1668 - - uid: 3853 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 1668 - - uid: 3854 - components: - - type: Transform - pos: -19.5,-9.5 - parent: 1668 - - uid: 3855 + - uid: 9300 components: - type: Transform pos: -19.5,-3.5 parent: 1668 - - uid: 4620 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 9314 components: - type: Transform - pos: -4.5,-19.5 + pos: -2.5,25.5 parent: 1668 - - uid: 4621 +- proto: PosterMapBagel + entities: + - uid: 621 components: - type: Transform - pos: 3.5,-19.5 + pos: 7.5,2.5 parent: 1668 - - uid: 4622 +- proto: PosterMapDelta + entities: + - uid: 629 components: - type: Transform - pos: 7.5,-19.5 + pos: 3.5,6.5 parent: 1668 - - uid: 4623 +- proto: PosterMapMarathon + entities: + - uid: 628 components: - type: Transform - pos: -8.5,-19.5 + pos: -4.5,6.5 parent: 1668 - - uid: 5377 +- proto: PosterMapMoose + entities: + - uid: 631 components: - type: Transform - pos: 27.5,-25.5 + pos: -4.5,-7.5 parent: 1668 - - uid: 5383 +- proto: PosterMapPacked + entities: + - uid: 624 components: - type: Transform - pos: 17.5,-27.5 + pos: -8.5,2.5 parent: 1668 - - uid: 6564 +- proto: PosterMapPillar + entities: + - uid: 630 components: - type: Transform - pos: -14.5,-33.5 + pos: 3.5,-7.5 parent: 1668 - - uid: 6565 +- proto: PosterMapSaltern + entities: + - uid: 627 components: - type: Transform - pos: 13.5,-33.5 + pos: 7.5,-3.5 + parent: 1668 +- proto: PosterMapSplit + entities: + - uid: 625 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1668 +- proto: PotatoAI + entities: + - uid: 938 + components: + - type: Transform + pos: -3.6285608,-0.35138273 + parent: 1668 +- proto: PottedPlant21 + entities: + - uid: 2000 + components: + - type: Transform + pos: 26.5,27.5 + parent: 1668 + - uid: 2906 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1668 + - uid: 2973 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1668 + - uid: 4026 + components: + - type: Transform + pos: -6.5,16.5 + parent: 1668 + - uid: 4324 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1668 + - uid: 4448 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 1668 + - uid: 4449 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 1668 + - uid: 4450 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 1668 + - uid: 4451 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 1668 + - uid: 4837 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 1668 + - uid: 4842 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 1668 + - uid: 6728 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 1668 + - uid: 6732 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 1668 + - uid: 6733 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 1668 +- proto: PottedPlant22 + entities: + - uid: 1380 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1668 + - uid: 1381 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1668 + - uid: 1755 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1668 + - uid: 2905 + components: + - type: Transform + pos: -18.5,9.5 + parent: 1668 + - uid: 4027 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1668 + - uid: 4322 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1668 + - uid: 4323 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1668 + - uid: 6167 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 1668 + - uid: 6697 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1668 + - uid: 6729 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 1668 + - uid: 6730 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 1668 + - uid: 6731 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 1668 + - uid: 9087 + components: + - type: Transform + pos: -34.5,1.5 + parent: 1668 + - uid: 9088 + components: + - type: Transform + pos: -51.5,1.5 + parent: 1668 +- proto: PottedPlant26 + entities: + - uid: 9076 + components: + - type: Transform + pos: -5.5,-8.5 parent: 1668 - proto: PottedPlantBioluminscent entities: - - uid: 6566 + - uid: 1314 components: - type: Transform - pos: -0.5,-41.5 + pos: 19.5,-15.5 + parent: 1668 + - uid: 1322 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 1668 + - uid: 1346 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 1668 +- proto: PowerCellAntiqueProto + entities: + - uid: 3424 + components: + - type: Transform + pos: -9.46758,5.7276483 + parent: 1668 +- proto: PowerCellHyper + entities: + - uid: 9187 + components: + - type: Transform + pos: -31.235607,-6.797967 + parent: 1668 + - uid: 9205 + components: + - type: Transform + pos: -31.376232,-6.672967 parent: 1668 - proto: PowerCellRecharger entities: - - uid: 1448 + - uid: 794 components: - type: Transform - pos: 12.5,6.5 + pos: 20.5,-8.5 parent: 1668 - - uid: 1458 + - uid: 795 components: - type: Transform - pos: -4.5,-10.5 + pos: 17.5,-13.5 parent: 1668 - - uid: 5376 + - uid: 903 components: - type: Transform - pos: 21.5,-21.5 + pos: 11.5,-6.5 parent: 1668 - - uid: 5378 + - uid: 3612 components: - type: Transform - pos: 26.5,-26.5 + pos: 14.5,9.5 parent: 1668 - - uid: 6498 + - uid: 4188 components: - type: Transform - pos: 9.5,-4.5 + rot: 3.141592653589793 rad + pos: -4.5,17.5 parent: 1668 -- proto: PowerDrill + - uid: 4189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,18.5 + parent: 1668 + - uid: 4190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,18.5 + parent: 1668 + - uid: 9203 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 1668 +- proto: PoweredDimSmallLight entities: - - uid: 3698 + - uid: 1367 components: - type: Transform - pos: -16.54512,6.5009594 + rot: 1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 1668 + - uid: 1368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 1668 + - uid: 1371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 1668 + - uid: 3990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,29.5 + parent: 1668 + - uid: 6216 + components: + - type: Transform + pos: -4.5,-16.5 parent: 1668 - proto: Poweredlight entities: - - uid: 510 + - uid: 126 components: - type: Transform - pos: 20.5,-10.5 + rot: -1.5707963267948966 rad + pos: 33.5,7.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 523 + - uid: 128 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-8.5 + pos: 24.5,-6.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 524 + - uid: 131 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-8.5 + pos: 20.5,-13.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 525 + - uid: 134 components: - type: Transform pos: 26.5,8.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 526 - components: - - type: Transform - pos: 21.5,8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 527 - components: - - type: Transform - pos: 31.5,8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 576 - components: - - type: Transform - pos: 17.5,-4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,3.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 580 + - uid: 206 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-0.5 + pos: 32.5,-0.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 582 - components: - - type: Transform - pos: 34.5,5.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 583 - components: - - type: Transform - pos: 23.5,5.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 584 - components: - - type: Transform - pos: 29.5,5.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 739 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1384 - components: - - type: Transform - pos: 7.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1385 - components: - - type: Transform - pos: 17.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1386 - components: - - type: Transform - pos: -8.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1387 + - uid: 208 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1388 + - uid: 210 components: - type: Transform - pos: -2.5,1.5 + pos: 23.5,5.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1389 + - uid: 211 + components: + - type: Transform + pos: 29.5,5.5 + parent: 1668 + - uid: 212 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,4.5 + pos: 19.5,-3.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1390 - components: - - type: Transform - pos: 5.5,4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1396 - components: - - type: Transform - pos: 1.5,4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1484 + - uid: 213 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-9.5 + pos: 19.5,2.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1485 + - uid: 517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1668 + - uid: 518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1668 + - uid: 519 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-13.5 + pos: -7.5,-3.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2152 - components: - - type: Transform - pos: -11.5,17.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2154 - components: - - type: Transform - pos: -8.5,12.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2157 + - uid: 520 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,13.5 + pos: -7.5,2.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2159 + - uid: 521 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-16.5 + pos: 2.5,-6.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2219 - components: - - type: Transform - pos: -11.5,31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2220 - components: - - type: Transform - pos: -7.5,31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2221 + - uid: 522 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,19.5 + pos: -3.5,-6.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2222 + - uid: 523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,28.5 + pos: -3.5,5.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2223 + - uid: 524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,22.5 + pos: 2.5,5.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2351 + - uid: 619 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1668 + - uid: 620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1668 + - uid: 744 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1668 + - uid: 745 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,1.5 + pos: 12.5,-12.5 parent: 1668 - - uid: 2723 + - uid: 746 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,8.5 + pos: 12.5,-7.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2724 + - uid: 747 components: - type: Transform - pos: 4.5,14.5 + pos: 23.5,-8.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2725 + - uid: 750 components: - type: Transform - pos: 6.5,15.5 + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2726 - components: - - type: Transform - pos: 13.5,15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2727 + - uid: 751 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,13.5 + pos: 10.5,-12.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2729 + - uid: 1155 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,10.5 + pos: 28.5,-6.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2730 + - uid: 1190 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,10.5 + pos: 12.5,-19.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2731 + - uid: 1191 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 1668 + - uid: 1633 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1668 + - uid: 1634 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1668 + - uid: 1635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 1668 + - uid: 1733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,9.5 + parent: 1668 + - uid: 2098 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,19.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2732 + - uid: 2099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 + pos: 26.5,27.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2733 + - uid: 2101 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,19.5 + pos: 21.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,20.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2736 + - uid: 2105 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,20.5 + pos: 34.5,26.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2739 + - uid: 2106 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,20.5 + pos: 31.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2908 - components: - - type: Transform - pos: 17.5,8.5 - parent: 1668 - - uid: 2931 - components: - - type: Transform - pos: 12.5,32.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2932 - components: - - type: Transform - pos: 6.5,32.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2933 - components: - - type: Transform - pos: 9.5,32.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2934 + - uid: 2107 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,27.5 + pos: 26.5,14.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2939 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2941 + - uid: 2119 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,26.5 + pos: 17.5,-6.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2942 + - uid: 2120 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1668 + - uid: 2124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 1668 + - uid: 2439 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,19.5 + pos: 16.5,19.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 1668 - - uid: 3701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,14.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,10.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3705 - components: - - type: Transform - pos: -21.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3707 - components: - - type: Transform - pos: -15.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3708 - components: - - type: Transform - pos: -11.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4168 + - uid: 2612 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,3.5 + pos: 10.5,-23.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4169 + - uid: 2700 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1668 + - uid: 2737 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1668 + - uid: 2775 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-2.5 + pos: -12.5,-4.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4170 - components: - - type: Transform - pos: -31.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4171 - components: - - type: Transform - pos: -27.5,0.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4174 + - uid: 2797 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-1.5 + pos: -17.5,15.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4176 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4177 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-9.5 - parent: 1668 - - uid: 4334 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 1668 - - uid: 4340 - components: - - type: Transform - pos: -8.5,-4.5 - parent: 1668 - - uid: 4392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1668 - - uid: 4396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1668 - - uid: 4397 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 1668 - - uid: 4399 - components: - - type: Transform - pos: 18.5,16.5 - parent: 1668 - - uid: 4400 - components: - - type: Transform - pos: 28.5,23.5 - parent: 1668 - - uid: 4402 - components: - - type: Transform - pos: 34.5,23.5 - parent: 1668 - - uid: 4499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 1668 - - uid: 4596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4597 - components: - - type: Transform - pos: -8.5,-21.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4598 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4600 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4601 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-29.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-29.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-11.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 1668 - - uid: 5353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5354 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5359 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5360 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-13.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5364 - components: - - type: Transform - pos: 31.5,-15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-16.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-32.5 - parent: 1668 - - uid: 5452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 1668 - - uid: 5582 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5827 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5830 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5831 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,33.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5849 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5850 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5852 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5884 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5885 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5933 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6102 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-29.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 1668 - - uid: 6463 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6464 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-39.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6469 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6470 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6471 - components: - - type: Transform - pos: 3.5,-31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6472 - components: - - type: Transform - pos: -4.5,-31.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-37.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-37.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1668 - - uid: 6609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,18.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6723 - components: - - type: Transform - pos: -15.5,2.5 - parent: 1668 - - uid: 6724 - components: - - type: Transform - pos: -11.5,2.5 - parent: 1668 - - uid: 6725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1668 - - uid: 6730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,10.5 - parent: 1668 - - uid: 6760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1668 - - uid: 6761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 1668 - - uid: 6766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,6.5 - parent: 1668 - - uid: 6784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1668 - - uid: 6874 - components: - - type: Transform - pos: 31.5,-28.5 - parent: 1668 - - uid: 6875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-31.5 - parent: 1668 - - uid: 6883 - components: - - type: Transform - pos: 22.5,23.5 - parent: 1668 - - uid: 6920 - components: - - type: Transform - pos: 2.5,18.5 - parent: 1668 - - uid: 6921 - components: - - type: Transform - pos: -3.5,18.5 - parent: 1668 - - uid: 6944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 1668 -- proto: PoweredlightLED - entities: - - uid: 5584 - components: - - type: Transform - pos: 22.5,-28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredlightSodium - entities: - - uid: 3245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5229 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredSmallLight - entities: - - uid: 2050 - components: - - type: Transform - pos: -1.5,24.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2051 - components: - - type: Transform - pos: -2.5,21.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2052 + - uid: 2915 components: - type: Transform pos: 1.5,21.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2217 + - uid: 2917 components: - type: Transform - pos: -15.5,28.5 + rot: -1.5707963267948966 rad + pos: 7.5,30.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2218 + - uid: 2921 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1668 + - uid: 3189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1668 + - uid: 3190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1668 + - uid: 3191 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,24.5 + pos: -3.5,14.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2740 + - uid: 3192 components: - type: Transform - pos: 14.5,19.5 + rot: -1.5707963267948966 rad + pos: 1.5,9.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2762 + - uid: 3197 components: - type: Transform - pos: 16.5,22.5 + pos: 2.5,-14.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2831 + - uid: 3306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 1668 + - uid: 3307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,20.5 + parent: 1668 + - uid: 3495 + components: + - type: Transform + pos: -30.5,21.5 + parent: 1668 + - uid: 3496 + components: + - type: Transform + pos: -30.5,27.5 + parent: 1668 + - uid: 3533 + components: + - type: Transform + pos: -14.5,22.5 + parent: 1668 + - uid: 3534 + components: + - type: Transform + pos: -26.5,17.5 + parent: 1668 + - uid: 3535 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,21.5 + pos: -26.5,29.5 + parent: 1668 + - uid: 3537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,23.5 + parent: 1668 + - uid: 3614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 1668 + - uid: 3668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 1668 + - uid: 3669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,26.5 + parent: 1668 + - uid: 3909 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1668 + - uid: 3910 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1668 + - uid: 4271 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 1668 + - uid: 4272 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 1668 + - uid: 4273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-31.5 + parent: 1668 + - uid: 4274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-31.5 + parent: 1668 + - uid: 4275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-31.5 + parent: 1668 + - uid: 4276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-31.5 + parent: 1668 + - uid: 4313 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 1668 + - uid: 4314 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 1668 + - uid: 4315 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 1668 + - uid: 4316 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 1668 + - uid: 4782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-49.5 + parent: 1668 + - uid: 4783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-49.5 + parent: 1668 + - uid: 4784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-49.5 + parent: 1668 + - uid: 4789 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 1668 + - uid: 4790 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 1668 + - uid: 4791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-44.5 + parent: 1668 + - uid: 4792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-37.5 + parent: 1668 + - uid: 4793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-37.5 + parent: 1668 + - uid: 4794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-44.5 + parent: 1668 + - uid: 4801 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 1668 + - uid: 4802 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 1668 + - uid: 4803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-40.5 + parent: 1668 + - uid: 4804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 1668 + - uid: 4805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-43.5 + parent: 1668 + - uid: 4806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-38.5 + parent: 1668 + - uid: 4807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-43.5 + parent: 1668 + - uid: 4808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-46.5 + parent: 1668 + - uid: 4809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-46.5 + parent: 1668 + - uid: 4810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-40.5 + parent: 1668 + - uid: 4811 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 1668 + - uid: 4812 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 1668 + - uid: 4813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 1668 + - uid: 4814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 1668 + - uid: 4815 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 1668 + - uid: 4816 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1668 + - uid: 5520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-22.5 + parent: 1668 + - uid: 5718 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 1668 + - uid: 5719 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 1668 + - uid: 5875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-22.5 + parent: 1668 + - uid: 5876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-22.5 + parent: 1668 + - uid: 5877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-22.5 + parent: 1668 + - uid: 5878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-22.5 + parent: 1668 + - uid: 5879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-22.5 + parent: 1668 + - uid: 5880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-22.5 + parent: 1668 + - uid: 5893 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 1668 + - uid: 5894 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 1668 + - uid: 5911 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1668 + - uid: 5912 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1668 + - uid: 5928 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1668 + - uid: 5929 + components: + - type: Transform + pos: -30.5,7.5 + parent: 1668 + - uid: 6190 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1668 + - uid: 6212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-23.5 + parent: 1668 + - uid: 6214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-17.5 + parent: 1668 + - uid: 6215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-17.5 + parent: 1668 + - uid: 6677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-17.5 + parent: 1668 + - uid: 6678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-17.5 + parent: 1668 + - uid: 6679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-17.5 + parent: 1668 + - uid: 6680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-17.5 + parent: 1668 + - uid: 7095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 1668 + - uid: 7096 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 1668 + - uid: 7097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-10.5 + parent: 1668 + - uid: 7098 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1668 + - uid: 7101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 1668 + - uid: 7102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 1668 + - uid: 7103 + components: + - type: Transform + pos: -40.5,1.5 + parent: 1668 + - uid: 7182 + components: + - type: Transform + pos: -46.5,1.5 + parent: 1668 + - uid: 7334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,3.5 + parent: 1668 + - uid: 7337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,11.5 + parent: 1668 + - uid: 7460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-22.5 + parent: 1668 + - uid: 7461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-22.5 + parent: 1668 + - uid: 7462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-22.5 + parent: 1668 + - uid: 7463 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 1668 + - uid: 7464 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 1668 + - uid: 7465 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 1668 + - uid: 7487 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 1668 + - uid: 8778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1668 + - uid: 8779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1668 +- proto: PoweredlightBlue + entities: + - uid: 1249 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 1668 + - uid: 1252 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1668 + - uid: 6081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-17.5 + parent: 1668 + - uid: 6087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-17.5 + parent: 1668 + - uid: 6110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-17.5 + parent: 1668 +- proto: PoweredlightCyan + entities: + - uid: 1250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-27.5 + parent: 1668 + - uid: 1255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-27.5 + parent: 1668 + - uid: 9133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 1668 +- proto: PoweredlightExterior + entities: + - uid: 3892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,34.5 + parent: 1668 +- proto: PoweredlightGreen + entities: + - uid: 6086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 1668 +- proto: PoweredlightLED + entities: + - uid: 6157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 1668 + - uid: 6158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 1668 +- proto: PoweredlightRed + entities: + - uid: 2445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,32.5 + parent: 1668 + - uid: 2446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,32.5 + parent: 1668 + - uid: 6079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-17.5 + parent: 1668 +- proto: PoweredlightSodium + entities: + - uid: 6082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-17.5 + parent: 1668 +- proto: PoweredSmallLight + entities: + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 1668 + - uid: 547 + components: + - type: Transform + pos: 34.5,5.5 + parent: 1668 + - uid: 548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-6.5 + parent: 1668 + - uid: 1092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1668 + - uid: 1156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 1668 + - uid: 2441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,27.5 + parent: 1668 + - uid: 2442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,23.5 + parent: 1668 + - uid: 2443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,23.5 + parent: 1668 + - uid: 2444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 1668 + - uid: 2463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 1668 + - uid: 2634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1668 + - uid: 2715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1668 + - uid: 2927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,11.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 + rot: 3.141592653589793 rad + pos: -23.5,9.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,31.5 + pos: -23.5,13.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2935 - components: - - type: Transform - pos: 16.5,25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2936 - components: - - type: Transform - pos: 16.5,28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2937 - components: - - type: Transform - pos: 2.5,28.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2938 - components: - - type: Transform - pos: 2.5,25.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2943 - components: - - type: Transform - pos: 5.5,19.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4504 + - uid: 3359 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-22.5 + pos: -7.5,25.5 parent: 1668 - - uid: 5368 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6782 + - uid: 3360 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-28.5 + pos: -9.5,25.5 + parent: 1668 + - uid: 3664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,35.5 + parent: 1668 + - uid: 3665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,35.5 + parent: 1668 + - uid: 3903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,29.5 + parent: 1668 + - uid: 4022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,23.5 + parent: 1668 + - uid: 4023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,26.5 + parent: 1668 + - uid: 4084 + components: + - type: Transform + pos: -16.5,27.5 + parent: 1668 + - uid: 4785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 1668 + - uid: 4786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 1668 + - uid: 4788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 1668 + - uid: 4797 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 1668 + - uid: 4798 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 1668 + - uid: 4799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 1668 + - uid: 4838 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 1668 + - uid: 4839 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 1668 + - uid: 7184 + components: + - type: Transform + pos: -53.5,1.5 + parent: 1668 + - uid: 7234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 1668 + - uid: 7235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,5.5 + parent: 1668 + - uid: 7236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,5.5 + parent: 1668 + - uid: 7335 + components: + - type: Transform + pos: -30.5,13.5 + parent: 1668 + - uid: 7336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,9.5 + parent: 1668 + - uid: 8820 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 1668 + - uid: 8821 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1668 +- proto: PoweredWarmSmallLight + entities: + - uid: 1280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-21.5 + parent: 1668 + - uid: 2100 + components: + - type: Transform + pos: 34.5,12.5 + parent: 1668 + - uid: 2923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,11.5 + parent: 1668 + - uid: 2926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,11.5 + parent: 1668 + - uid: 3908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1668 + - uid: 6172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-8.5 + parent: 1668 + - uid: 8819 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1668 +- proto: Protolathe + entities: + - uid: 3273 + components: + - type: Transform + pos: -5.5,20.5 parent: 1668 - proto: Rack entities: - - uid: 1662 + - uid: 2162 components: - type: Transform - pos: -11.5,17.5 + pos: 12.5,20.5 parent: 1668 - - uid: 2167 + - uid: 2169 components: - type: Transform - pos: -3.5,16.5 + pos: 14.5,20.5 parent: 1668 - - uid: 2195 + - uid: 2281 components: - type: Transform - pos: -1.5,24.5 + rot: 1.5707963267948966 rad + pos: 14.5,-38.5 parent: 1668 - - uid: 2200 + - uid: 2294 components: - type: Transform - pos: 15.5,30.5 + rot: 1.5707963267948966 rad + pos: -12.5,-45.5 parent: 1668 - - uid: 2201 + - uid: 2408 components: - type: Transform - pos: 3.5,30.5 + pos: 14.5,34.5 parent: 1668 - - uid: 2889 + - uid: 2409 components: - type: Transform - pos: 3.5,32.5 + pos: 13.5,34.5 parent: 1668 - - uid: 2890 + - uid: 2410 components: - type: Transform - pos: 15.5,32.5 + pos: 12.5,34.5 parent: 1668 - - uid: 3117 + - uid: 2609 components: - type: Transform - pos: 5.5,32.5 + pos: 13.5,-21.5 parent: 1668 - - uid: 3118 - components: - - type: Transform - pos: 6.5,32.5 - parent: 1668 - - uid: 3119 - components: - - type: Transform - pos: 12.5,32.5 - parent: 1668 - - uid: 3120 + - uid: 2648 components: - type: Transform pos: 13.5,32.5 parent: 1668 - - uid: 5327 + - uid: 3163 components: - type: Transform - pos: 24.5,-13.5 + pos: -5.5,7.5 parent: 1668 - - uid: 5340 + - uid: 3164 components: - type: Transform - pos: 21.5,-17.5 + pos: -6.5,7.5 parent: 1668 - - uid: 6449 + - uid: 3165 components: - type: Transform - pos: -6.5,-40.5 + pos: -7.5,7.5 parent: 1668 - - uid: 6450 + - uid: 3185 components: - type: Transform - pos: -6.5,-42.5 + pos: -7.5,12.5 parent: 1668 - - uid: 6451 + - uid: 4017 components: - type: Transform - pos: 5.5,-42.5 + pos: 6.5,22.5 parent: 1668 - - uid: 6452 + - uid: 4065 components: - type: Transform - pos: 5.5,-40.5 + rot: 1.5707963267948966 rad + pos: 14.5,-40.5 parent: 1668 -- proto: RadioHandheld + - uid: 4067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-42.5 + parent: 1668 + - uid: 4089 + components: + - type: Transform + pos: -19.5,25.5 + parent: 1668 + - uid: 4096 + components: + - type: Transform + pos: -8.5,20.5 + parent: 1668 + - uid: 4097 + components: + - type: Transform + pos: -7.5,20.5 + parent: 1668 + - uid: 4222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-45.5 + parent: 1668 + - uid: 4228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-40.5 + parent: 1668 + - uid: 4231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-42.5 + parent: 1668 + - uid: 4232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 1668 + - uid: 4338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-39.5 + parent: 1668 + - uid: 4339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-41.5 + parent: 1668 + - uid: 4340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-43.5 + parent: 1668 + - uid: 4343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 1668 + - uid: 4344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-45.5 + parent: 1668 + - uid: 4352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-45.5 + parent: 1668 + - uid: 4355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-45.5 + parent: 1668 + - uid: 4356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 1668 + - uid: 4378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-45.5 + parent: 1668 + - uid: 4380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-45.5 + parent: 1668 + - uid: 4385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-41.5 + parent: 1668 + - uid: 4386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 + parent: 1668 + - uid: 4389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-45.5 + parent: 1668 + - uid: 4400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 1668 +- proto: RadioImplanterCentcomm entities: - - uid: 3903 + - uid: 1385 components: - type: Transform - pos: -13.516307,-6.3210163 + pos: 11.548664,-10.594937 parent: 1668 - - uid: 3904 + - uid: 2474 components: - type: Transform - pos: -13.344432,-6.4147663 - parent: 1668 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2494 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2510 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2520 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Railing entities: - - uid: 1075 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 1668 - - uid: 1076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-4.5 - parent: 1668 - - uid: 1077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 1668 - - uid: 1078 - components: - - type: Transform - pos: 34.5,3.5 - parent: 1668 - - uid: 4434 + - uid: 3037 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-25.5 + pos: 7.5,7.5 parent: 1668 - - uid: 4435 + - uid: 3670 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1668 - - uid: 4436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1668 - - uid: 4438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 1668 - - uid: 4439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1668 - - uid: 4440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1668 - - uid: 4454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 1668 - - uid: 4455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 1668 - - uid: 4456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1668 - - uid: 4457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1668 - - uid: 4460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 1668 - - uid: 4461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 1668 - - uid: 4462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1668 - - uid: 4463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1668 - - uid: 4464 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 1668 - - uid: 4465 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 1668 - - uid: 4468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1668 - - uid: 4469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1668 - - uid: 5216 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 1668 - - uid: 5218 - components: - - type: Transform - pos: 32.5,-20.5 - parent: 1668 - - uid: 5220 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 1668 - - uid: 5221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 1668 - - uid: 5223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-26.5 - parent: 1668 - - uid: 5225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-26.5 - parent: 1668 - - uid: 5226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 1668 - - uid: 5228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 1668 - - uid: 5230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 - parent: 1668 - - uid: 6144 - components: - - type: Transform - pos: -22.5,-23.5 - parent: 1668 - - uid: 6145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-27.5 - parent: 1668 -- proto: RailingCornerSmall - entities: - - uid: 4471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 1668 - - uid: 4473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 1668 - - uid: 5231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 1668 - - uid: 5232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-20.5 + pos: 7.5,8.5 parent: 1668 - proto: RandomDrinkBottle entities: - - uid: 4607 + - uid: 6199 components: - type: Transform - pos: 10.5,-27.5 - parent: 1668 - - uid: 4610 - components: - - type: Transform - pos: 8.5,-21.5 + pos: 10.5,-36.5 parent: 1668 - proto: RandomDrinkGlass entities: - - uid: 4611 + - uid: 6200 components: - type: Transform - pos: 7.5,-26.5 + pos: 7.5,-34.5 parent: 1668 - - uid: 4612 + - uid: 6201 components: - type: Transform - pos: 7.5,-25.5 + pos: 7.5,-35.5 parent: 1668 - - uid: 4613 + - uid: 6202 components: - type: Transform - pos: 3.5,-26.5 + pos: 7.5,-33.5 parent: 1668 - - uid: 4614 + - uid: 6206 components: - type: Transform - pos: -4.5,-26.5 + pos: 7.5,-29.5 parent: 1668 -- proto: RandomFoodBakedSingle + - uid: 6207 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 1668 +- proto: RandomFoodBakedWhole entities: - - uid: 4616 + - uid: 6198 components: - type: Transform - pos: -3.5,-29.5 + pos: -8.5,-34.5 parent: 1668 - proto: RandomFoodMeal entities: - - uid: 4608 + - uid: 6196 components: - type: Transform - pos: -8.5,-26.5 + pos: -8.5,-33.5 parent: 1668 - - uid: 4609 + - uid: 6197 components: - type: Transform - pos: -8.5,-27.5 + pos: -8.5,-35.5 parent: 1668 -- proto: RandomFoodSingle +- proto: RCDExperimental entities: - - uid: 4605 + - uid: 4045 components: - type: Transform - pos: -4.5,-25.5 + pos: -17.5,18.5 parent: 1668 - - uid: 4606 - components: - - type: Transform - pos: 2.5,-28.5 - parent: 1668 -- proto: ReagentContainerFlour +- proto: RCDRecharging entities: - - uid: 4594 + - uid: 6771 components: - type: Transform - pos: -10.626896,-28.3469 - parent: 1668 - - uid: 4595 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6797 components: - type: Transform - pos: -10.376896,-28.50315 - parent: 1668 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Recycler entities: - - uid: 5908 + - uid: 8745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-31.5 + rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 1668 +- proto: RegenerativeMesh + entities: + - uid: 6854 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6873 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6886 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9198 + components: + - type: Transform + pos: 16.595364,-4.485551 parent: 1668 - proto: ReinforcedPlasmaWindow entities: - - uid: 2791 + - uid: 2145 components: - type: Transform - pos: 6.5,30.5 + pos: 11.5,21.5 parent: 1668 - - uid: 2812 + - uid: 2147 components: - type: Transform - pos: 12.5,30.5 + pos: 15.5,21.5 parent: 1668 - - uid: 2813 + - uid: 2151 components: - type: Transform - pos: 5.5,30.5 + pos: 10.5,21.5 parent: 1668 - - uid: 2877 + - uid: 2153 components: - type: Transform - pos: 13.5,30.5 - parent: 1668 - - uid: 3990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,21.5 - parent: 1668 - - uid: 4179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 1668 - - uid: 4180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,24.5 - parent: 1668 - - uid: 4251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,27.5 - parent: 1668 - - uid: 4361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,27.5 - parent: 1668 - - uid: 5108 - components: - - type: Transform - pos: 28.5,-25.5 - parent: 1668 - - uid: 5109 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 1668 - - uid: 5110 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 1668 - - uid: 5111 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 1668 - - uid: 5112 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 1668 - - uid: 5167 - components: - - type: Transform - pos: 31.5,-19.5 - parent: 1668 - - uid: 5168 - components: - - type: Transform - pos: 33.5,-19.5 + pos: 16.5,21.5 parent: 1668 - proto: ReinforcedWindow entities: @@ -30948,11 +45074,6 @@ entities: - type: Transform pos: 3.5,-2.5 parent: 1668 - - uid: 53 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 1668 - uid: 54 components: - type: Transform @@ -31028,370 +45149,85 @@ entities: - type: Transform pos: -2.5,-3.5 parent: 1668 - - uid: 69 + - uid: 86 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1668 + - uid: 143 components: - type: Transform pos: -0.5,-3.5 parent: 1668 - - uid: 77 + - uid: 145 components: - type: Transform - pos: 6.5,-4.5 - parent: 1668 - - uid: 92 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1668 - - uid: 93 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1668 - - uid: 94 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1668 - - uid: 95 - components: - - type: Transform - pos: 4.5,5.5 - parent: 1668 - - uid: 103 - components: - - type: Transform - pos: 8.5,5.5 - parent: 1668 - - uid: 104 - components: - - type: Transform - pos: 7.5,4.5 - parent: 1668 - - uid: 109 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1668 - - uid: 110 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 1668 - - uid: 111 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1668 - - uid: 112 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 1668 - - uid: 124 - components: - - type: Transform - pos: 8.5,20.5 - parent: 1668 - - uid: 134 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 1668 - - uid: 135 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 1668 - - uid: 136 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 1668 - - uid: 150 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 1668 - - uid: 151 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 1668 - - uid: 152 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 1668 - - uid: 153 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 1668 - - uid: 161 - components: - - type: Transform - pos: 9.5,-8.5 + pos: 28.5,7.5 parent: 1668 - uid: 162 components: - type: Transform - pos: 10.5,-8.5 - parent: 1668 - - uid: 163 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 1668 - - uid: 164 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 1668 - - uid: 165 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 1668 - - uid: 166 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 1668 - - uid: 167 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 1668 - - uid: 168 - components: - - type: Transform - pos: 11.5,-10.5 + pos: 1.5,-7.5 parent: 1668 - uid: 169 components: - type: Transform - pos: 10.5,-10.5 + pos: -2.5,6.5 parent: 1668 - uid: 170 components: - type: Transform - pos: 9.5,-10.5 + pos: 16.5,-3.5 parent: 1668 - uid: 171 components: - type: Transform - pos: 13.5,-10.5 + pos: 12.5,2.5 parent: 1668 - - uid: 172 + - uid: 174 components: - type: Transform - pos: 14.5,-10.5 + pos: 14.5,-3.5 parent: 1668 - - uid: 173 + - uid: 175 components: - type: Transform - pos: 15.5,-10.5 + pos: 14.5,2.5 parent: 1668 - - uid: 183 + - uid: 176 components: - type: Transform - pos: 16.5,-9.5 + pos: -8.5,1.5 parent: 1668 - - uid: 190 + - uid: 177 components: - type: Transform - pos: 17.5,-5.5 + pos: -8.5,-2.5 parent: 1668 - - uid: 214 + - uid: 179 components: - type: Transform - pos: 2.5,-10.5 + pos: 1.5,6.5 parent: 1668 - - uid: 215 + - uid: 180 components: - type: Transform - pos: 2.5,-13.5 + pos: 7.5,4.5 parent: 1668 - - uid: 220 + - uid: 181 components: - type: Transform - pos: 11.5,2.5 + pos: -2.5,-7.5 parent: 1668 - - uid: 221 + - uid: 189 components: - type: Transform - pos: 13.5,2.5 + pos: 12.5,-3.5 parent: 1668 - - uid: 222 + - uid: 192 components: - type: Transform - pos: 15.5,2.5 - parent: 1668 - - uid: 226 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 1668 - - uid: 227 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 1668 - - uid: 228 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 1668 - - uid: 243 - components: - - type: Transform - pos: 17.5,4.5 - parent: 1668 - - uid: 244 - components: - - type: Transform - pos: 17.5,6.5 - parent: 1668 - - uid: 247 - components: - - type: Transform - pos: 16.5,3.5 - parent: 1668 - - uid: 259 - components: - - type: Transform - pos: 9.5,7.5 - parent: 1668 - - uid: 260 - components: - - type: Transform - pos: 10.5,7.5 - parent: 1668 - - uid: 261 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1668 - - uid: 262 - components: - - type: Transform - pos: 13.5,7.5 - parent: 1668 - - uid: 263 - components: - - type: Transform - pos: 14.5,7.5 - parent: 1668 - - uid: 264 - components: - - type: Transform - pos: 11.5,9.5 - parent: 1668 - - uid: 265 - components: - - type: Transform - pos: 10.5,9.5 - parent: 1668 - - uid: 266 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1668 - - uid: 267 - components: - - type: Transform - pos: 3.5,8.5 - parent: 1668 - - uid: 268 - components: - - type: Transform - pos: 14.5,9.5 - parent: 1668 - - uid: 269 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1668 - - uid: 270 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1668 - - uid: 271 - components: - - type: Transform - pos: 8.5,8.5 - parent: 1668 - - uid: 272 - components: - - type: Transform - pos: 12.5,8.5 - parent: 1668 - - uid: 275 - components: - - type: Transform - pos: 13.5,9.5 - parent: 1668 - - uid: 301 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 1668 - - uid: 302 - components: - - type: Transform - pos: 13.5,-3.5 - parent: 1668 - - uid: 303 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 1668 - - uid: 307 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1668 - - uid: 308 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1668 - - uid: 309 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 1668 - - uid: 310 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 1668 - - uid: 336 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 1668 - - uid: 337 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 1668 - - uid: 338 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1668 - - uid: 339 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 1668 - - uid: 340 - components: - - type: Transform - pos: -6.5,-7.5 + pos: 16.5,2.5 parent: 1668 - uid: 348 components: @@ -31403,902 +45239,1260 @@ entities: - type: Transform pos: 31.5,6.5 parent: 1668 - - uid: 360 + - uid: 366 components: - type: Transform - pos: 24.5,7.5 + pos: 4.5,6.5 parent: 1668 - - uid: 361 + - uid: 367 components: - type: Transform - pos: 28.5,7.5 + pos: 5.5,6.5 parent: 1668 - - uid: 393 + - uid: 394 components: - type: Transform - pos: 31.5,-7.5 + pos: 6.5,6.5 parent: 1668 - - uid: 396 + - uid: 478 components: - type: Transform - pos: 23.5,-8.5 + pos: 18.5,-2.5 parent: 1668 - - uid: 401 + - uid: 479 components: - type: Transform - pos: 29.5,-8.5 + pos: 18.5,1.5 parent: 1668 - - uid: 408 + - uid: 480 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1668 + - uid: 481 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1668 + - uid: 594 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1668 + - uid: 595 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1668 + - uid: 596 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1668 + - uid: 712 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1668 + - uid: 719 components: - type: Transform pos: 21.5,-7.5 parent: 1668 - - uid: 442 + - uid: 720 components: - type: Transform - pos: 35.5,1.5 + pos: 20.5,-7.5 parent: 1668 - - uid: 443 + - uid: 921 components: - type: Transform - pos: 35.5,3.5 + pos: 28.5,-12.5 parent: 1668 - - uid: 444 + - uid: 922 components: - type: Transform - pos: 35.5,5.5 + pos: 28.5,-11.5 parent: 1668 - - uid: 445 + - uid: 923 components: - type: Transform - pos: 35.5,-2.5 + pos: 28.5,-10.5 parent: 1668 - - uid: 446 + - uid: 924 components: - type: Transform - pos: 35.5,-4.5 + pos: 28.5,-9.5 parent: 1668 - - uid: 447 + - uid: 925 components: - type: Transform - pos: 35.5,-6.5 + pos: 27.5,-7.5 parent: 1668 - - uid: 462 + - uid: 926 components: - type: Transform - pos: 33.5,5.5 + pos: 26.5,-7.5 parent: 1668 - - uid: 463 + - uid: 927 components: - type: Transform - pos: 33.5,3.5 + pos: 25.5,-7.5 parent: 1668 - - uid: 464 + - uid: 928 components: - type: Transform - pos: 33.5,1.5 + pos: 24.5,-9.5 parent: 1668 - - uid: 465 + - uid: 929 components: - type: Transform - pos: 33.5,-2.5 + pos: 24.5,-10.5 parent: 1668 - - uid: 466 + - uid: 930 components: - type: Transform - pos: 33.5,-4.5 + pos: 24.5,-11.5 parent: 1668 - - uid: 467 + - uid: 931 components: - type: Transform - pos: 33.5,-6.5 + pos: 24.5,-12.5 parent: 1668 - - uid: 471 + - uid: 932 components: - type: Transform - pos: 34.5,-1.5 + pos: 27.5,-14.5 parent: 1668 - - uid: 472 + - uid: 933 components: - type: Transform - pos: 34.5,0.5 + pos: 26.5,-14.5 parent: 1668 - - uid: 670 + - uid: 934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 + pos: 25.5,-14.5 parent: 1668 - - uid: 671 + - uid: 1106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + pos: 35.5,-26.5 parent: 1668 - - uid: 676 + - uid: 1162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 + pos: 35.5,-16.5 parent: 1668 - - uid: 677 + - uid: 1198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 + pos: 26.5,-28.5 parent: 1668 - - uid: 682 + - uid: 1199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,7.5 + pos: 27.5,-28.5 parent: 1668 - - uid: 683 + - uid: 1205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 + pos: 25.5,-28.5 parent: 1668 - - uid: 684 + - uid: 1254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 + pos: 35.5,-21.5 parent: 1668 - - uid: 685 + - uid: 1316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 + pos: 35.5,-22.5 parent: 1668 - - uid: 700 + - uid: 1352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,6.5 + pos: 33.5,-28.5 parent: 1668 - - uid: 701 + - uid: 1353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 + pos: 32.5,-28.5 parent: 1668 - - uid: 705 + - uid: 1354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 + pos: 31.5,-28.5 parent: 1668 - - uid: 741 + - uid: 1365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1668 - - uid: 744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 1668 - - uid: 758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1668 - - uid: 759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 1668 - - uid: 760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 1668 - - uid: 761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 1668 - - uid: 762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 1668 - - uid: 778 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 1668 - - uid: 779 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 1668 - - uid: 780 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 1668 - - uid: 781 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 1668 - - uid: 819 - components: - - type: Transform - pos: -10.5,32.5 - parent: 1668 - - uid: 828 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 1668 - - uid: 829 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 1668 - - uid: 830 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 1668 - - uid: 831 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 1668 - - uid: 1193 - components: - - type: Transform - pos: -8.5,32.5 - parent: 1668 - - uid: 1417 - components: - - type: Transform - pos: -4.5,11.5 - parent: 1668 - - uid: 1418 - components: - - type: Transform - pos: -3.5,17.5 - parent: 1668 - - uid: 1419 - components: - - type: Transform - pos: 2.5,17.5 - parent: 1668 - - uid: 1420 - components: - - type: Transform - pos: 3.5,16.5 - parent: 1668 - - uid: 1421 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1668 - - uid: 1422 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1668 - - uid: 1423 - components: - - type: Transform - pos: 3.5,10.5 - parent: 1668 - - uid: 1429 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 1668 - - uid: 1466 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 1668 - - uid: 1518 - components: - - type: Transform - pos: -16.5,17.5 - parent: 1668 - - uid: 1519 - components: - - type: Transform - pos: -16.5,18.5 - parent: 1668 - - uid: 1520 - components: - - type: Transform - pos: -15.5,18.5 + pos: 35.5,-20.5 parent: 1668 - uid: 1521 components: - type: Transform - pos: -13.5,18.5 + pos: 2.5,7.5 parent: 1668 - - uid: 1522 + - uid: 1524 components: - type: Transform - pos: -12.5,18.5 + pos: 6.5,9.5 + parent: 1668 + - uid: 1526 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1668 + - uid: 1537 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1668 + - uid: 1538 + components: + - type: Transform + pos: 3.5,9.5 parent: 1668 - uid: 1539 components: - type: Transform - pos: -14.5,20.5 - parent: 1668 - - uid: 1540 - components: - - type: Transform - pos: -14.5,21.5 - parent: 1668 - - uid: 1541 - components: - - type: Transform - pos: -14.5,22.5 - parent: 1668 - - uid: 1542 - components: - - type: Transform - pos: -14.5,23.5 - parent: 1668 - - uid: 1543 - components: - - type: Transform - pos: -15.5,23.5 - parent: 1668 - - uid: 1544 - components: - - type: Transform - pos: -16.5,23.5 - parent: 1668 - - uid: 1545 - components: - - type: Transform - pos: -14.5,29.5 - parent: 1668 - - uid: 1546 - components: - - type: Transform - pos: -15.5,29.5 - parent: 1668 - - uid: 1547 - components: - - type: Transform - pos: -16.5,29.5 - parent: 1668 - - uid: 1548 - components: - - type: Transform - pos: -14.5,30.5 - parent: 1668 - - uid: 1549 - components: - - type: Transform - pos: -14.5,26.5 + pos: 2.5,8.5 parent: 1668 - uid: 1550 components: - type: Transform - pos: -15.5,26.5 + pos: 22.5,9.5 parent: 1668 - - uid: 1551 + - uid: 1554 components: - type: Transform - pos: -16.5,26.5 + pos: 2.5,10.5 parent: 1668 - - uid: 1566 + - uid: 1555 components: - type: Transform - pos: -12.5,32.5 + pos: 2.5,11.5 + parent: 1668 + - uid: 1556 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1668 + - uid: 1557 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1668 + - uid: 1558 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1668 + - uid: 1559 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1668 + - uid: 1560 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1668 + - uid: 1561 + components: + - type: Transform + pos: 20.5,9.5 + parent: 1668 + - uid: 1562 + components: + - type: Transform + pos: 20.5,13.5 parent: 1668 - uid: 1572 components: - type: Transform - pos: -6.5,32.5 + pos: 22.5,13.5 parent: 1668 - - uid: 1999 + - uid: 1575 components: - type: Transform - pos: 5.5,10.5 + pos: 7.5,9.5 parent: 1668 - - uid: 2000 + - uid: 1576 components: - type: Transform - pos: 5.5,12.5 + pos: 8.5,11.5 parent: 1668 - - uid: 2001 + - uid: 1577 components: - type: Transform - pos: 5.5,14.5 + pos: 6.5,13.5 parent: 1668 - - uid: 2242 + - uid: 1578 components: - type: Transform - pos: 15.5,10.5 + pos: 4.5,13.5 parent: 1668 - - uid: 2243 + - uid: 1608 components: - type: Transform - pos: 15.5,12.5 + pos: 17.5,13.5 parent: 1668 - - uid: 2244 + - uid: 1609 components: - type: Transform - pos: 15.5,14.5 + pos: 15.5,13.5 parent: 1668 - - uid: 2276 + - uid: 1610 components: - type: Transform - pos: 23.5,14.5 + pos: 11.5,13.5 parent: 1668 - - uid: 2277 + - uid: 1611 components: - type: Transform - pos: 33.5,14.5 + pos: 9.5,13.5 parent: 1668 - - uid: 2278 + - uid: 1737 components: - type: Transform - pos: 31.5,14.5 + pos: 23.5,-30.5 parent: 1668 - - uid: 2279 + - uid: 1738 components: - type: Transform - pos: 30.5,14.5 + pos: 23.5,-33.5 parent: 1668 - - uid: 2280 + - uid: 1739 components: - type: Transform - pos: 29.5,14.5 + pos: 23.5,-29.5 parent: 1668 - - uid: 2281 + - uid: 1769 components: - type: Transform - pos: 27.5,14.5 + pos: 35.5,10.5 parent: 1668 - - uid: 2282 + - uid: 1770 components: - type: Transform - pos: 26.5,14.5 + pos: 35.5,12.5 parent: 1668 - - uid: 2283 + - uid: 1771 components: - type: Transform - pos: 25.5,14.5 + pos: 35.5,11.5 parent: 1668 - - uid: 2337 + - uid: 1862 components: - type: Transform - pos: 24.5,15.5 + pos: 22.5,23.5 parent: 1668 - - uid: 2338 + - uid: 1863 components: - type: Transform - pos: 24.5,16.5 + pos: 30.5,23.5 parent: 1668 - - uid: 2339 + - uid: 1912 components: - type: Transform - pos: 24.5,17.5 + pos: 32.5,23.5 parent: 1668 - - uid: 2341 + - uid: 1913 components: - type: Transform - pos: 24.5,19.5 + pos: 33.5,17.5 parent: 1668 - - uid: 2505 + - uid: 1917 components: - type: Transform - pos: 10.5,16.5 + pos: 32.5,19.5 parent: 1668 - - uid: 2506 + - uid: 2137 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1668 + - uid: 2139 components: - type: Transform pos: 10.5,17.5 parent: 1668 - - uid: 2507 + - uid: 2140 components: - type: Transform - pos: 10.5,18.5 + pos: 15.5,17.5 parent: 1668 - - uid: 2509 + - uid: 2143 components: - type: Transform - pos: 8.5,16.5 + pos: 16.5,17.5 parent: 1668 - - uid: 2777 + - uid: 2295 components: - type: Transform - pos: 10.5,26.5 + pos: -3.5,-45.5 parent: 1668 - - uid: 2778 + - uid: 2296 components: - type: Transform - pos: 11.5,26.5 + pos: -1.5,-45.5 parent: 1668 - - uid: 2779 + - uid: 2298 components: - type: Transform - pos: 11.5,27.5 + pos: -4.5,-45.5 parent: 1668 - - uid: 2780 + - uid: 2322 components: - type: Transform - pos: 8.5,26.5 + pos: -6.5,-36.5 parent: 1668 - - uid: 2781 + - uid: 2323 components: - type: Transform - pos: 7.5,26.5 + pos: -7.5,-36.5 parent: 1668 - - uid: 2782 + - uid: 2343 components: - type: Transform - pos: 7.5,27.5 + pos: -6.5,-30.5 parent: 1668 - - uid: 2786 + - uid: 2353 components: - type: Transform - pos: 7.5,29.5 + pos: 6.5,-36.5 parent: 1668 - - uid: 2787 + - uid: 2354 components: - type: Transform - pos: 11.5,29.5 + pos: 5.5,-36.5 parent: 1668 - - uid: 2906 + - uid: 2355 components: - type: Transform - pos: 10.5,-15.5 + pos: 4.5,-36.5 parent: 1668 - - uid: 3122 + - uid: 2356 components: - type: Transform - pos: 7.5,-8.5 + pos: 3.5,-36.5 parent: 1668 - - uid: 3126 + - uid: 2357 components: - type: Transform - pos: 7.5,7.5 + pos: 2.5,-36.5 parent: 1668 - - uid: 3127 + - uid: 2440 components: - type: Transform - pos: 6.5,7.5 + pos: 1.5,-36.5 parent: 1668 - - uid: 3128 + - uid: 2456 components: - type: Transform - pos: 9.5,-15.5 + pos: 0.5,-36.5 parent: 1668 - - uid: 3248 + - uid: 2457 components: - type: Transform - pos: 17.5,-32.5 + pos: -0.5,-36.5 parent: 1668 - - uid: 3249 + - uid: 2458 components: - type: Transform - pos: 16.5,-32.5 + pos: -1.5,-36.5 parent: 1668 - - uid: 3250 + - uid: 2459 components: - type: Transform - pos: 15.5,-32.5 + pos: -2.5,-36.5 parent: 1668 - - uid: 3287 + - uid: 2460 components: - type: Transform - pos: -10.5,1.5 + pos: -3.5,-36.5 parent: 1668 - - uid: 3288 + - uid: 2461 components: - type: Transform - pos: -11.5,1.5 + pos: -4.5,-36.5 parent: 1668 - - uid: 3289 + - uid: 2462 components: - type: Transform - pos: -12.5,1.5 + pos: -5.5,-36.5 parent: 1668 - - uid: 3290 + - uid: 2531 components: - type: Transform - pos: -14.5,1.5 + pos: 3.5,34.5 parent: 1668 - - uid: 3291 + - uid: 2583 components: - type: Transform - pos: -15.5,1.5 + pos: 3.5,35.5 parent: 1668 - - uid: 3292 + - uid: 2632 components: - type: Transform - pos: -16.5,1.5 + pos: 6.5,36.5 parent: 1668 - - uid: 3293 + - uid: 2703 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1668 + - uid: 2704 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1668 + - uid: 2705 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1668 + - uid: 2706 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1668 + - uid: 2707 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1668 + - uid: 2708 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1668 + - uid: 2709 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1668 + - uid: 2710 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1668 + - uid: 2711 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1668 + - uid: 2712 components: - type: Transform pos: -13.5,2.5 parent: 1668 - - uid: 3327 + - uid: 2713 components: - type: Transform - pos: -27.5,8.5 + pos: -14.5,2.5 parent: 1668 - - uid: 3328 + - uid: 2714 components: - type: Transform - pos: -27.5,9.5 + pos: -15.5,2.5 parent: 1668 - - uid: 3329 + - uid: 2754 components: - type: Transform - pos: -27.5,12.5 + pos: -19.5,16.5 parent: 1668 - - uid: 3330 + - uid: 2755 components: - type: Transform - pos: -27.5,11.5 + pos: -19.5,15.5 parent: 1668 - - uid: 3385 + - uid: 2779 components: - type: Transform - pos: -28.5,-0.5 + pos: -24.5,9.5 parent: 1668 - - uid: 3386 + - uid: 2780 components: - type: Transform - pos: -26.5,-0.5 + pos: -24.5,10.5 parent: 1668 - - uid: 3933 + - uid: 2781 components: - type: Transform - pos: -33.5,7.5 + pos: -24.5,12.5 parent: 1668 - - uid: 3934 + - uid: 2782 components: - type: Transform - pos: -32.5,7.5 + pos: -24.5,13.5 parent: 1668 - - uid: 3935 + - uid: 2897 components: - type: Transform - pos: -30.5,7.5 + pos: -20.5,8.5 parent: 1668 - - uid: 3939 + - uid: 2898 components: - type: Transform - pos: -34.5,3.5 + pos: -22.5,8.5 parent: 1668 - - uid: 3940 + - uid: 2933 components: - type: Transform - pos: -34.5,4.5 + pos: 23.5,-32.5 parent: 1668 - - uid: 3941 + - uid: 2981 components: - type: Transform - pos: -34.5,5.5 + pos: 23.5,-34.5 parent: 1668 - - uid: 3942 + - uid: 2982 components: - type: Transform - pos: -34.5,6.5 + pos: 23.5,-31.5 parent: 1668 - - uid: 3972 + - uid: 2988 components: - type: Transform - pos: -34.5,-2.5 + pos: -0.5,22.5 parent: 1668 - - uid: 3973 + - uid: 2998 components: - type: Transform - pos: -34.5,-0.5 + rot: 3.141592653589793 rad + pos: 4.5,17.5 parent: 1668 - - uid: 3974 + - uid: 3000 components: - type: Transform - pos: -34.5,1.5 + rot: 3.141592653589793 rad + pos: 2.5,17.5 parent: 1668 - - uid: 3975 + - uid: 3002 components: - type: Transform - pos: -32.5,1.5 + pos: -4.5,13.5 parent: 1668 - - uid: 3976 + - uid: 3004 components: - type: Transform - pos: -32.5,-2.5 + pos: -6.5,13.5 parent: 1668 - - uid: 3977 + - uid: 3182 components: - type: Transform - pos: -32.5,-0.5 + pos: 4.5,22.5 parent: 1668 - - uid: 3978 + - uid: 3184 components: - type: Transform - pos: -33.5,-0.5 + pos: -8.5,-4.5 parent: 1668 - - uid: 4222 + - uid: 3234 components: - type: Transform - pos: -11.5,-17.5 + pos: -8.5,3.5 parent: 1668 - - uid: 4223 + - uid: 3286 components: - type: Transform - pos: -10.5,-17.5 + pos: -12.5,23.5 parent: 1668 - - uid: 4224 + - uid: 3293 components: - type: Transform - pos: -9.5,-16.5 + pos: -4.5,23.5 parent: 1668 - - uid: 4225 + - uid: 3295 components: - type: Transform - pos: -12.5,-16.5 + pos: -6.5,23.5 parent: 1668 - - uid: 4265 + - uid: 3297 components: - type: Transform - pos: 0.5,-20.5 + pos: -10.5,23.5 parent: 1668 - - uid: 4305 + - uid: 3366 components: - type: Transform - pos: -4.5,-21.5 + pos: -25.5,28.5 parent: 1668 - - uid: 4306 + - uid: 3369 components: - type: Transform - pos: -4.5,-22.5 + pos: -26.5,27.5 + parent: 1668 + - uid: 3370 + components: + - type: Transform + pos: -26.5,22.5 + parent: 1668 + - uid: 3372 + components: + - type: Transform + pos: -26.5,20.5 + parent: 1668 + - uid: 3373 + components: + - type: Transform + pos: -26.5,21.5 + parent: 1668 + - uid: 3374 + components: + - type: Transform + pos: -26.5,25.5 + parent: 1668 + - uid: 3376 + components: + - type: Transform + pos: -26.5,23.5 + parent: 1668 + - uid: 3377 + components: + - type: Transform + pos: -26.5,24.5 + parent: 1668 + - uid: 3378 + components: + - type: Transform + pos: -28.5,20.5 + parent: 1668 + - uid: 3380 + components: + - type: Transform + pos: -24.5,28.5 + parent: 1668 + - uid: 3382 + components: + - type: Transform + pos: -26.5,26.5 + parent: 1668 + - uid: 3392 + components: + - type: Transform + pos: -28.5,26.5 + parent: 1668 + - uid: 3393 + components: + - type: Transform + pos: -28.5,27.5 + parent: 1668 + - uid: 3394 + components: + - type: Transform + pos: -28.5,25.5 + parent: 1668 + - uid: 3399 + components: + - type: Transform + pos: -28.5,21.5 + parent: 1668 + - uid: 3408 + components: + - type: Transform + pos: -23.5,18.5 + parent: 1668 + - uid: 3410 + components: + - type: Transform + pos: -24.5,18.5 + parent: 1668 + - uid: 3415 + components: + - type: Transform + pos: -25.5,18.5 + parent: 1668 + - uid: 3425 + components: + - type: Transform + pos: -28.5,19.5 + parent: 1668 + - uid: 3440 + components: + - type: Transform + pos: -26.5,19.5 + parent: 1668 + - uid: 3602 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1668 + - uid: 3603 + components: + - type: Transform + pos: 32.5,9.5 + parent: 1668 + - uid: 3604 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1668 + - uid: 3605 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1668 + - uid: 3606 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1668 + - uid: 3615 + components: + - type: Transform + pos: 7.5,36.5 + parent: 1668 + - uid: 3616 + components: + - type: Transform + pos: 0.5,36.5 + parent: 1668 + - uid: 3617 + components: + - type: Transform + pos: -0.5,36.5 + parent: 1668 + - uid: 3626 + components: + - type: Transform + pos: 6.5,33.5 + parent: 1668 + - uid: 3627 + components: + - type: Transform + pos: 7.5,33.5 + parent: 1668 + - uid: 3628 + components: + - type: Transform + pos: 0.5,33.5 + parent: 1668 + - uid: 3629 + components: + - type: Transform + pos: -0.5,33.5 + parent: 1668 + - uid: 3667 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1668 + - uid: 3882 + components: + - type: Transform + pos: -2.5,33.5 + parent: 1668 + - uid: 3883 + components: + - type: Transform + pos: -3.5,30.5 + parent: 1668 + - uid: 3997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 1668 + - uid: 4001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 1668 + - uid: 4058 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 1668 + - uid: 4066 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 1668 + - uid: 4076 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 1668 + - uid: 4102 + components: + - type: Transform + pos: -24.5,30.5 + parent: 1668 + - uid: 4104 + components: + - type: Transform + pos: -24.5,29.5 + parent: 1668 + - uid: 4106 + components: + - type: Transform + pos: -24.5,31.5 + parent: 1668 + - uid: 4108 + components: + - type: Transform + pos: -23.5,31.5 + parent: 1668 + - uid: 4109 + components: + - type: Transform + pos: -22.5,31.5 + parent: 1668 + - uid: 4110 + components: + - type: Transform + pos: -21.5,31.5 + parent: 1668 + - uid: 4111 + components: + - type: Transform + pos: -20.5,31.5 + parent: 1668 + - uid: 4112 + components: + - type: Transform + pos: -19.5,31.5 + parent: 1668 + - uid: 4113 + components: + - type: Transform + pos: -19.5,30.5 + parent: 1668 + - uid: 4114 + components: + - type: Transform + pos: -19.5,29.5 + parent: 1668 + - uid: 4126 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1668 + - uid: 4127 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1668 + - uid: 4128 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1668 + - uid: 4129 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 1668 + - uid: 4130 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 1668 + - uid: 4131 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 1668 + - uid: 4132 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 1668 + - uid: 4133 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 1668 + - uid: 4134 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 1668 + - uid: 4135 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 1668 + - uid: 4136 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 1668 + - uid: 4137 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 1668 + - uid: 4138 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 1668 + - uid: 4139 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 1668 + - uid: 4140 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 1668 + - uid: 4142 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 1668 + - uid: 4153 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 1668 + - uid: 4300 + components: + - type: Transform + pos: 1.5,-24.5 parent: 1668 - uid: 4307 components: - type: Transform - pos: -4.5,-23.5 + pos: -2.5,-24.5 parent: 1668 - - uid: 4308 + - uid: 4345 components: - type: Transform - pos: -2.5,-23.5 + pos: 0.5,-45.5 parent: 1668 - - uid: 4309 + - uid: 4346 components: - type: Transform - pos: -2.5,-22.5 + pos: 2.5,-45.5 parent: 1668 - - uid: 4310 + - uid: 4347 components: - type: Transform - pos: -2.5,-21.5 + pos: -0.5,-45.5 parent: 1668 - - uid: 4311 + - uid: 4348 components: - type: Transform - pos: 1.5,-21.5 + pos: 3.5,-45.5 parent: 1668 - - uid: 4312 + - uid: 4349 components: - type: Transform - pos: 1.5,-22.5 + pos: 4.5,-45.5 parent: 1668 - - uid: 4313 + - uid: 4358 components: - type: Transform - pos: 1.5,-23.5 + pos: -7.5,-45.5 parent: 1668 - - uid: 4314 + - uid: 4359 components: - type: Transform - pos: 3.5,-23.5 + pos: -6.5,-45.5 parent: 1668 - - uid: 4315 + - uid: 4361 components: - type: Transform - pos: 3.5,-22.5 + pos: 3.5,-50.5 parent: 1668 - - uid: 4316 + - uid: 4366 components: - type: Transform - pos: 3.5,-21.5 - parent: 1668 - - uid: 4354 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 1668 - - uid: 4355 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 1668 - - uid: 4365 - components: - - type: Transform - pos: 4.5,-30.5 + pos: 1.5,-50.5 parent: 1668 - uid: 4367 components: - type: Transform - pos: 6.5,-30.5 + pos: -5.5,-45.5 parent: 1668 - - uid: 4651 + - uid: 4373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 + pos: 4.5,-50.5 parent: 1668 - - uid: 4652 + - uid: 4375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 + pos: 0.5,-50.5 parent: 1668 - - uid: 4653 + - uid: 4392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 + pos: 5.5,-45.5 parent: 1668 - - uid: 4663 + - uid: 4398 components: - type: Transform - pos: -1.5,-34.5 + pos: 6.5,-45.5 parent: 1668 - - uid: 4664 + - uid: 4401 components: - type: Transform - pos: -0.5,-34.5 + pos: -2.5,-45.5 parent: 1668 - - uid: 4665 + - uid: 4402 components: - type: Transform - pos: 0.5,-34.5 + pos: -1.5,-50.5 parent: 1668 - - uid: 4752 + - uid: 4403 components: - type: Transform - pos: 17.5,-22.5 + pos: -2.5,-50.5 parent: 1668 - - uid: 4753 + - uid: 4404 components: - type: Transform - pos: 15.5,-22.5 + pos: -4.5,-50.5 + parent: 1668 + - uid: 4405 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 1668 + - uid: 4455 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 1668 + - uid: 4456 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 1668 + - uid: 4457 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 1668 + - uid: 4468 + components: + - type: Transform + pos: 18.5,-45.5 + parent: 1668 + - uid: 4472 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 1668 + - uid: 4473 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 1668 + - uid: 4477 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 1668 + - uid: 4478 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 1668 + - uid: 4480 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 1668 + - uid: 4496 + components: + - type: Transform + pos: -11.5,-49.5 + parent: 1668 + - uid: 4497 + components: + - type: Transform + pos: -10.5,-49.5 + parent: 1668 + - uid: 4498 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 1668 + - uid: 4509 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 1668 + - uid: 4510 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 1668 + - uid: 4514 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 1668 + - uid: 4515 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 1668 + - uid: 4519 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 1668 + - uid: 4520 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 1668 + - uid: 4579 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 1668 + - uid: 4580 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 1668 + - uid: 4581 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 1668 + - uid: 4582 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 1668 + - uid: 4583 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 1668 + - uid: 4584 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 1668 + - uid: 4585 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 1668 + - uid: 4586 + components: + - type: Transform + pos: -20.5,-37.5 parent: 1668 - uid: 5321 components: - type: Transform pos: 30.5,6.5 parent: 1668 - - uid: 5333 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 1668 - - uid: 5334 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 1668 - - uid: 5335 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 1668 - uid: 5386 components: - type: Transform @@ -32314,910 +46508,2037 @@ entities: - type: Transform pos: 32.5,6.5 parent: 1668 - - uid: 5880 + - uid: 5554 components: - type: Transform - pos: -0.5,-40.5 + pos: -4.5,-24.5 parent: 1668 - - uid: 5910 + - uid: 5555 components: - type: Transform - pos: -17.5,-34.5 + pos: -6.5,-24.5 parent: 1668 - - uid: 5911 + - uid: 5556 components: - type: Transform - pos: -18.5,-34.5 + pos: -8.5,-24.5 parent: 1668 - - uid: 5912 + - uid: 5557 components: - type: Transform - pos: -19.5,-34.5 + pos: -10.5,-24.5 + parent: 1668 + - uid: 5558 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 1668 + - uid: 5559 + components: + - type: Transform + pos: -14.5,-24.5 + parent: 1668 + - uid: 5560 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 1668 + - uid: 5561 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 1668 + - uid: 5615 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 1668 + - uid: 5616 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 1668 + - uid: 5617 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 1668 + - uid: 5618 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 1668 + - uid: 5625 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 1668 + - uid: 5626 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 1668 + - uid: 5627 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 1668 + - uid: 5628 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 1668 + - uid: 5666 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 1668 + - uid: 5913 + components: + - type: Transform + pos: -24.5,4.5 parent: 1668 - uid: 5914 components: - type: Transform - pos: -20.5,-31.5 + pos: -29.5,7.5 parent: 1668 - uid: 5915 components: - type: Transform - pos: -20.5,-32.5 + pos: -29.5,4.5 parent: 1668 - uid: 5916 components: - type: Transform - pos: -20.5,-33.5 + pos: -24.5,7.5 parent: 1668 - - uid: 5947 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 1668 - - uid: 5948 - components: - - type: Transform - pos: -17.5,-25.5 - parent: 1668 - - uid: 5976 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 1668 - - uid: 5977 - components: - - type: Transform - pos: -21.5,-27.5 - parent: 1668 - - uid: 5978 - components: - - type: Transform - pos: -21.5,-23.5 - parent: 1668 - - uid: 5979 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 1668 - - uid: 5980 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 1668 - - uid: 5981 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 1668 - - uid: 5982 - components: - - type: Transform - pos: -21.5,-25.5 - parent: 1668 - - uid: 5990 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 1668 - - uid: 5991 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 1668 - - uid: 5992 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 1668 - - uid: 6024 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 1668 - - uid: 6025 - components: - - type: Transform - pos: -2.5,-32.5 - parent: 1668 - - uid: 6156 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 1668 - - uid: 6157 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 1668 - - uid: 6158 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 1668 - - uid: 6159 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 1668 - - uid: 6275 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 1668 - - uid: 6288 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 1668 - - uid: 6289 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 1668 - - uid: 6290 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 1668 - - uid: 6291 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 1668 - - uid: 6295 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 1668 - - uid: 6296 - components: - - type: Transform - pos: 1.5,-46.5 - parent: 1668 - - uid: 6300 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 1668 - - uid: 6707 + - uid: 6014 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-32.5 + pos: -25.5,2.5 parent: 1668 - - uid: 6770 + - uid: 6015 components: - type: Transform - pos: -1.5,-20.5 + rot: -1.5707963267948966 rad + pos: -27.5,2.5 parent: 1668 - - uid: 6771 + - uid: 6016 components: - type: Transform - pos: 0.5,-24.5 + rot: -1.5707963267948966 rad + pos: -28.5,2.5 parent: 1668 - - uid: 6783 + - uid: 6017 components: - type: Transform - pos: 5.5,6.5 + rot: -1.5707963267948966 rad + pos: -26.5,2.5 parent: 1668 - - uid: 6847 + - uid: 6933 components: - type: Transform - pos: 15.5,8.5 + pos: -29.5,9.5 + parent: 1668 + - uid: 6934 + components: + - type: Transform + pos: -29.5,10.5 + parent: 1668 + - uid: 6935 + components: + - type: Transform + pos: -29.5,12.5 + parent: 1668 + - uid: 6936 + components: + - type: Transform + pos: -29.5,13.5 + parent: 1668 + - uid: 6954 + components: + - type: Transform + pos: -52.5,1.5 + parent: 1668 + - uid: 7108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-8.5 + parent: 1668 + - uid: 7109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 1668 + - uid: 7110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 1668 + - uid: 7120 + components: + - type: Transform + pos: -44.5,2.5 + parent: 1668 + - uid: 7121 + components: + - type: Transform + pos: -42.5,2.5 + parent: 1668 + - uid: 7123 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 1668 + - uid: 7124 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 1668 + - uid: 7133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,7.5 + parent: 1668 + - uid: 7134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,7.5 + parent: 1668 + - uid: 7135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,7.5 + parent: 1668 + - uid: 7143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,7.5 + parent: 1668 + - uid: 7144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,7.5 + parent: 1668 + - uid: 7145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,7.5 + parent: 1668 + - uid: 7152 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 1668 + - uid: 7154 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 1668 + - uid: 7161 + components: + - type: Transform + pos: -55.5,1.5 + parent: 1668 + - uid: 7239 + components: + - type: Transform + pos: -50.5,2.5 + parent: 1668 + - uid: 7241 + components: + - type: Transform + pos: -48.5,2.5 + parent: 1668 + - uid: 7323 + components: + - type: Transform + pos: -31.5,8.5 + parent: 1668 + - uid: 7324 + components: + - type: Transform + pos: -33.5,8.5 + parent: 1668 + - uid: 7359 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 1668 + - uid: 7360 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 1668 + - uid: 7361 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 1668 + - uid: 7363 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 1668 + - uid: 7364 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 1668 + - uid: 7365 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 1668 + - uid: 7366 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 1668 + - uid: 7374 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 1668 + - uid: 7375 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 1668 + - uid: 7376 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 1668 + - uid: 7377 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 1668 + - uid: 7378 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 1668 + - uid: 7379 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 1668 + - uid: 7380 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 1668 + - uid: 7381 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 1668 + - uid: 7382 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 1668 + - uid: 7383 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 1668 + - uid: 7384 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 1668 + - uid: 7385 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 1668 + - uid: 8759 + components: + - type: Transform + pos: -25.5,8.5 + parent: 1668 + - uid: 8760 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1668 + - uid: 8761 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1668 + - uid: 8762 + components: + - type: Transform + pos: -28.5,8.5 + parent: 1668 + - uid: 9110 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 1668 + - uid: 9111 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 1668 + - uid: 9122 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1668 + - uid: 9289 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 1668 +- proto: RitualDagger + entities: + - uid: 6114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.533529,-17.289402 parent: 1668 - proto: RubberStampApproved entities: - - uid: 6489 + - uid: 531 components: - type: Transform - pos: 25.503832,-7.398362 + pos: 0.35229805,0.5584074 parent: 1668 - proto: RubberStampCentcom entities: - - uid: 2917 + - uid: 12 components: - type: Transform - pos: 0.630217,1.1330963 + pos: -3.6834178,-1.8503399 parent: 1668 - - uid: 3749 + - uid: 532 components: - type: Transform - pos: -20.5068,11.16328 + pos: 0.5235943,0.77137035 + parent: 1668 + - uid: 2861 + components: + - type: Transform + pos: -17.65566,12.332452 parent: 1668 - proto: RubberStampDenied entities: - - uid: 590 + - uid: 530 components: - type: Transform - pos: 25.691332,-7.585862 - parent: 1668 -- proto: RubberStampQm - entities: - - uid: 2234 - components: - - type: Transform - pos: -12.516554,9.632545 - parent: 1668 -- proto: RubberStampTrader - entities: - - uid: 2233 - components: - - type: Transform - pos: -12.532179,11.55442 + pos: 0.690261,0.5584074 parent: 1668 - proto: Screen entities: - - uid: 4479 + - uid: 6906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 + pos: -39.5,-3.5 parent: 1668 - - uid: 4480 + - uid: 6907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-25.5 + pos: -34.5,-4.5 parent: 1668 - - uid: 5311 + - uid: 6908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-30.5 + pos: -34.5,-10.5 parent: 1668 - - uid: 6988 + - uid: 6909 components: - type: Transform - pos: 33.5,3.5 + pos: -42.5,-11.5 parent: 1668 - - uid: 6989 + - uid: 6910 components: - type: Transform - pos: 33.5,-4.5 + pos: -41.5,-11.5 parent: 1668 - - uid: 6996 + - uid: 6911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,26.5 + pos: -29.5,-11.5 parent: 1668 - - uid: 6997 + - uid: 6912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-15.5 + pos: -42.5,-3.5 parent: 1668 - - uid: 6998 + - uid: 6913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-15.5 + pos: -21.5,2.5 parent: 1668 - - uid: 6999 + - uid: 6914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-44.5 + pos: -23.5,8.5 parent: 1668 - - uid: 7000 + - uid: 6915 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-30.5 + pos: -3.5,17.5 parent: 1668 - - uid: 7001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 1668 - - uid: 7002 - components: - - type: Transform - pos: -11.5,13.5 - parent: 1668 -- proto: SecurityTechFab - entities: - - uid: 2874 - components: - - type: Transform - pos: 9.5,32.5 - parent: 1668 -- proto: SeismicCharge - entities: - - uid: 1079 - components: - - type: Transform - pos: -12.4071865,-3.4493918 - parent: 1668 - - uid: 3129 - components: - - type: Transform - pos: -12.5634365,-3.3712668 - parent: 1668 -- proto: ShowcaseRobotAntique - entities: - - uid: 6931 - components: - - type: Transform - pos: -6.5,8.5 - parent: 1668 -- proto: ShuttersRadiationOpen - entities: - - uid: 6879 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 1668 - - uid: 6880 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 1668 - - uid: 6881 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 1668 -- proto: ShuttersWindowCentralCommand - entities: - - uid: 5058 - components: - - type: Transform - pos: 5.5,30.5 - parent: 1668 - - uid: 6314 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1668 - - uid: 6397 - components: - - type: Transform - pos: 12.5,30.5 - parent: 1668 - - uid: 6492 - components: - - type: Transform - pos: 13.5,30.5 - parent: 1668 -- proto: SignalButton - entities: - - uid: 789 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 786: - - Pressed: Toggle - 787: - - Pressed: Toggle - 788: - - Pressed: Toggle - - uid: 1611 - components: - - type: Transform - pos: -14.5,23.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 1607: - - Pressed: Toggle - 1610: - - Pressed: Toggle - - uid: 1612 - components: - - type: Transform - pos: -14.5,29.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 1608: - - Pressed: Toggle - 1609: - - Pressed: Toggle - - uid: 1804 - components: - - type: Transform - pos: -2.5,19.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 1552: - - Pressed: Toggle - - uid: 2712 + - uid: 6916 components: - type: Transform pos: 7.5,17.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2150: - - Pressed: Toggle - 2149: - - Pressed: Toggle - 2148: - - Pressed: Toggle - 2147: - - Pressed: Toggle - 2146: - - Pressed: Toggle - - uid: 5242 + - uid: 6917 components: - type: Transform - pos: 28.5,-20.5 + pos: 26.5,13.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 5238: - - Pressed: Toggle - 5237: - - Pressed: Toggle - 5236: - - Pressed: Toggle - 5235: - - Pressed: Toggle - 5234: - - Pressed: Toggle - 5239: - - Pressed: Toggle - 5241: - - Pressed: Toggle - 5240: - - Pressed: Toggle - - uid: 6442 + - uid: 6918 components: - type: Transform - pos: 1.5,-40.5 + pos: 33.5,-7.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 6521: - - Pressed: Toggle - 6525: - - Pressed: Toggle - 6524: - - Pressed: Toggle - 6523: - - Pressed: Toggle - 6522: - - Pressed: Toggle -- proto: SignalButtonExt1 + - uid: 6919 + components: + - type: Transform + pos: 33.5,6.5 + parent: 1668 + - uid: 6920 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1668 + - uid: 6921 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1668 + - uid: 6922 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1668 + - uid: 6923 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 1668 + - uid: 6924 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 1668 + - uid: 6925 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 1668 + - uid: 6926 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 1668 + - uid: 6927 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 1668 + - uid: 6928 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 1668 + - uid: 6929 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 1668 + - uid: 6930 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1668 + - uid: 6931 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1668 + - uid: 6932 + components: + - type: Transform + pos: -14.5,11.5 + parent: 1668 + - uid: 7332 + components: + - type: Transform + pos: -34.5,2.5 + parent: 1668 + - uid: 7488 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 1668 + - uid: 7489 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 1668 +- proto: Screwdriver entities: - - uid: 715 + - uid: 3175 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1668 + - uid: 8822 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1668 +- proto: SecurityTechFab + entities: + - uid: 2160 + components: + - type: Transform + pos: 11.5,20.5 + parent: 1668 +- proto: SeedExtractor + entities: + - uid: 998 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1668 +- proto: SeismicCharge + entities: + - uid: 9197 + components: + - type: Transform + pos: -31.52614,-4.329217 + parent: 1668 + - uid: 9202 + components: + - type: Transform + pos: -31.385515,-4.391717 + parent: 1668 +- proto: SheetGlass + entities: + - uid: 818 + components: + - type: Transform + pos: 8.375388,-6.4888477 + parent: 1668 + - uid: 2232 + components: + - type: Transform + pos: 14.65328,20.579678 + parent: 1668 + - uid: 2233 + components: + - type: Transform + pos: 14.65328,20.579678 + parent: 1668 + - uid: 2234 + components: + - type: Transform + pos: 14.65328,20.579678 + parent: 1668 + - uid: 3308 + components: + - type: Transform + pos: -3.5,22.5 + parent: 1668 + - uid: 3309 + components: + - type: Transform + pos: -3.5,22.5 + parent: 1668 + - uid: 6779 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6794 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasma + entities: + - uid: 783 + components: + - type: Transform + pos: 4.4811854,-10.45799 + parent: 1668 + - uid: 4098 + components: + - type: Transform + pos: -8.5,20.5 + parent: 1668 + - uid: 4101 + components: + - type: Transform + pos: -8.5,20.5 + parent: 1668 +- proto: SheetPlasteel + entities: + - uid: 817 + components: + - type: Transform + pos: 8.625388,-6.3169727 + parent: 1668 + - uid: 2223 + components: + - type: Transform + pos: 12.62203,20.595303 + parent: 1668 + - uid: 2224 + components: + - type: Transform + pos: 12.62203,20.595303 + parent: 1668 + - uid: 2225 + components: + - type: Transform + pos: 12.62203,20.595303 + parent: 1668 + - uid: 3305 + components: + - type: Transform + pos: -3.5,21.5 + parent: 1668 + - uid: 3349 + components: + - type: Transform + pos: -3.5,21.5 + parent: 1668 + - uid: 6775 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6796 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlastic + entities: + - uid: 819 + components: + - type: Transform + pos: 8.656638,-6.4888477 + parent: 1668 + - uid: 2229 + components: + - type: Transform + pos: 14.40328,20.595303 + parent: 1668 + - uid: 2230 + components: + - type: Transform + pos: 14.40328,20.595303 + parent: 1668 + - uid: 2231 + components: + - type: Transform + pos: 14.40328,20.595303 + parent: 1668 + - uid: 3350 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1668 + - uid: 3351 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1668 +- proto: SheetSteel + entities: + - uid: 816 + components: + - type: Transform + pos: 8.359763,-6.3169727 + parent: 1668 + - uid: 2226 + components: + - type: Transform + pos: 12.37203,20.610928 + parent: 1668 + - uid: 2227 + components: + - type: Transform + pos: 12.37203,20.610928 + parent: 1668 + - uid: 2228 + components: + - type: Transform + pos: 12.37203,20.610928 + parent: 1668 + - uid: 3352 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1668 + - uid: 3353 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1668 + - uid: 6773 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6793 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetUranium + entities: + - uid: 4099 + components: + - type: Transform + pos: -7.5,20.5 + parent: 1668 + - uid: 4100 + components: + - type: Transform + pos: -7.5,20.5 + parent: 1668 +- proto: ShelfBar + entities: + - uid: 1345 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 1668 + - uid: 4087 + components: + - type: Transform + pos: -17.5,28.5 + parent: 1668 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 4293 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1668 +- proto: ShelfKitchen + entities: + - uid: 4294 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1668 +- proto: ShotGunCabinetFilled + entities: + - uid: 1288 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 1668 +- proto: Shovel + entities: + - uid: 6193 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1668 +- proto: ShuttersNormalOpen + entities: + - uid: 81 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1668 + - uid: 2246 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1668 + - uid: 2247 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1668 + - uid: 2248 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1668 + - uid: 2249 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1668 +- proto: SignalSwitch + entities: + - uid: 602 components: - type: MetaData - name: East Checkpoint Doors + name: West Thoroughfare Blast Doors - type: Transform - pos: 16.5,4.5 + pos: 13.5,4.5 parent: 1668 -- proto: SignalButtonExt2 - entities: - - uid: 721 + - type: DeviceLinkSource + linkedPorts: + 542: + - On: Open + - Off: Close + 543: + - On: Open + - Off: Close + 544: + - On: Open + - Off: Close + 545: + - On: Open + - Off: Close + 546: + - On: Open + - Off: Close + - uid: 603 components: - type: MetaData - name: West Checkpoint Doors + name: East Thoroughfare Blast Doors - type: Transform - pos: 8.5,4.5 + pos: 15.5,4.5 parent: 1668 -- proto: SignAtmos + - type: DeviceLinkSource + linkedPorts: + 539: + - On: Open + - Off: Close + 538: + - On: Open + - Off: Close + 537: + - On: Open + - Off: Close + 540: + - On: Open + - Off: Close + 541: + - On: Open + - Off: Close +- proto: SignalSwitchDirectional entities: - - uid: 6888 - components: - - type: Transform - pos: 14.5,-29.5 - parent: 1668 -- proto: SignCargo - entities: - - uid: 2207 - components: - - type: Transform - pos: -4.5,13.5 - parent: 1668 -- proto: SignChem - entities: - - uid: 4478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 1668 - - uid: 6764 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 1668 -- proto: SignCloning - entities: - - uid: 6763 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 1668 -- proto: SignDirectionalEng - entities: - - uid: 2882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-17.5 - parent: 1668 - - uid: 6593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 1668 -- proto: SignDoors - entities: - - uid: 545 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 1668 - - uid: 546 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 1668 - - uid: 547 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1668 - - uid: 548 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 1668 - - uid: 795 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 1668 - - uid: 796 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1668 - - uid: 2269 - components: - - type: Transform - pos: 5.5,12.5 - parent: 1668 - - uid: 2270 - components: - - type: Transform - pos: 3.5,12.5 - parent: 1668 - - uid: 2271 - components: - - type: Transform - pos: 15.5,12.5 - parent: 1668 - - uid: 2272 - components: - - type: Transform - pos: -1.5,5.5 - parent: 1668 - - uid: 2273 - components: - - type: Transform - pos: 0.5,7.5 - parent: 1668 - - uid: 3607 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 1668 - - uid: 3608 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 1668 - - uid: 3609 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 1668 - - uid: 3610 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 1668 -- proto: SignElectricalMed - entities: - - uid: 1533 - components: - - type: Transform - pos: -1.5,17.5 - parent: 1668 - - uid: 5351 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 1668 -- proto: SignEngineering - entities: - - uid: 4970 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 1668 -- proto: SignGravity - entities: - - uid: 5215 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 1668 -- proto: SignInterrogation - entities: - - uid: 2830 - components: - - type: Transform - pos: 6.5,23.5 - parent: 1668 -- proto: SignKiddiePlaque - entities: - - uid: 4384 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 1668 - - uid: 4385 - components: - - type: Transform - pos: -13.5,12.5 - parent: 1668 - - uid: 4386 - components: - - type: Transform - pos: 21.5,16.5 - parent: 1668 - - uid: 4387 + - uid: 336 components: + - type: MetaData + name: Panic Switch - type: Transform pos: 1.5,2.5 parent: 1668 -- proto: SignMedical - entities: - - uid: 6762 + - type: DeviceLinkSource + linkedPorts: + 332: + - On: Open + - Off: Close + 331: + - On: Open + - Off: Close + 330: + - On: Open + - Off: Close + 329: + - On: Open + - Off: Close + 81: + - On: Open + - Off: Close + 327: + - On: Open + - Off: Close + 314: + - On: Open + - Off: Close + 315: + - On: Open + - Off: Close + 318: + - On: Open + - Off: Close + 319: + - On: Open + - Off: Close + 320: + - On: Open + - Off: Close + 321: + - On: Open + - Off: Close + 322: + - On: Open + - Off: Close + 323: + - On: Open + - Off: Close + 324: + - On: Open + - Off: Close + 325: + - On: Open + - Off: Close + 326: + - On: Open + - Off: Close + 335: + - On: Open + - Off: Close + 334: + - On: Open + - Off: Close + 333: + - On: Open + - Off: Close + - uid: 569 + components: + - type: MetaData + name: Window Shutters + - type: Transform + pos: 17.5,-3.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 568: + - On: Open + - Off: Close + 567: + - On: Open + - Off: Close + 566: + - On: Open + - Off: Close + 565: + - On: Open + - Off: Close + 564: + - On: Open + - Off: Close + - uid: 570 + components: + - type: MetaData + name: Window Shutters + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,2.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 559: + - On: Open + - Off: Close + 560: + - On: Open + - Off: Close + 561: + - On: Open + - Off: Close + 562: + - On: Open + - Off: Close + 563: + - On: Open + - Off: Close + - uid: 607 + components: + - type: MetaData + name: Exterior Security Door Toggle + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 554: + - Status: Toggle + 555: + - Status: Toggle + - uid: 608 + components: + - type: MetaData + name: Interior Security Door Toggle + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 578: + - Status: Toggle + 577: + - Status: Toggle + - uid: 610 + components: + - type: MetaData + name: Docking Bay Door Blast Door + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 612: + - On: Open + - Off: Close + - uid: 611 + components: + - type: MetaData + name: Docking Bay Door Blast Door + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,3.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 609: + - On: Open + - Off: Close + - uid: 728 + components: + - type: MetaData + name: Shuttle Bay Window Blast Doors + - type: Transform + pos: 20.5,-8.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 731: + - On: Open + - Off: Close + 730: + - On: Open + - Off: Close + 729: + - On: Open + - Off: Close + - uid: 1130 components: - type: Transform - pos: 16.5,-3.5 + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1142: + - On: Open + - Off: Close + 1141: + - On: Open + - Off: Close + 1140: + - On: Open + - Off: Close + - uid: 1131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1143: + - On: Open + - Off: Close + 1144: + - On: Open + - Off: Close + 1145: + - On: Open + - Off: Close + - uid: 1587 + components: + - type: MetaData + name: Inner Windoor Switch + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,11.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1585: + - Status: Toggle + - uid: 1588 + components: + - type: MetaData + name: Inner Windoor Toggle + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1586: + - Status: Toggle + - uid: 1663 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1626: + - On: Forward + - Off: Off + - uid: 1728 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 1627: + - On: Forward + - Off: Off + - uid: 2250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2247: + - On: Open + - Off: Close + 2246: + - On: Open + - Off: Close + 2248: + - On: Open + - Off: Close + 2249: + - On: Open + - Off: Close + - uid: 2254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2257: + - On: Open + - Off: Close + 2256: + - On: Open + - Off: Close + 2253: + - On: Open + - Off: Close + 2252: + - On: Open + - Off: Close + - uid: 2803 + components: + - type: Transform + pos: -18.5,17.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2805: + - On: Open + - Off: Close + 2804: + - On: Open + - Off: Close + - uid: 3914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 3913: + - Off: Close + - On: Open + 3912: + - On: Open + - Off: Close + - uid: 4715 + components: + - type: MetaData + name: Red Team Armory + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-49.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 4726: + - On: Open + - Off: Close + 4727: + - On: Open + - Off: Close + 4728: + - On: Open + - Off: Close + 4729: + - On: Open + - Off: Close + 4730: + - On: Open + - Off: Close + 4731: + - On: Open + - Off: Close + 4732: + - On: Open + - Off: Close + 4733: + - On: Open + - Off: Close + 4734: + - On: Open + - Off: Close + 4735: + - On: Open + - Off: Close + 4736: + - On: Open + - Off: Close + - uid: 4716 + components: + - type: MetaData + name: Arena Doors + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-49.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 4737: + - On: Open + - Off: Close + 4738: + - On: Open + - Off: Close + 4739: + - On: Open + - Off: Close + 4740: + - On: Open + - Off: Close + 4741: + - On: Open + - Off: Close + 4742: + - On: Open + - Off: Close + 4759: + - On: Open + - Off: Close + 4758: + - On: Open + - Off: Close + 4757: + - On: Open + - Off: Close + 4756: + - On: Open + - Off: Close + 4755: + - On: Open + - Off: Close + 4754: + - On: Open + - Off: Close + - uid: 4717 + components: + - type: MetaData + name: Green Team Armory + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-49.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 4743: + - On: Open + - Off: Close + 4744: + - On: Open + - Off: Close + 4745: + - On: Open + - Off: Close + 4746: + - On: Open + - Off: Close + 4747: + - On: Open + - Off: Close + 4748: + - On: Open + - Off: Close + 4749: + - On: Open + - Off: Close + 4750: + - On: Open + - Off: Close + 4751: + - On: Open + - Off: Close + 4752: + - On: Open + - Off: Close + 4753: + - On: Open + - Off: Close + - uid: 9217 + components: + - type: MetaData + name: ERT Ready Room + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 6903: + - On: Open + - Off: Close + 6904: + - On: Open + - Off: Close + 6905: + - On: Open + - Off: Close +- proto: SignArmory + entities: + - uid: 2163 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1668 +- proto: SignAtmos + entities: + - uid: 4030 + components: + - type: Transform + pos: -26.5,18.5 + parent: 1668 +- proto: SignBar + entities: + - uid: 1139 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 1668 + - uid: 4317 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 1668 + - uid: 5538 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1668 +- proto: SignCargo + entities: + - uid: 1758 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1668 + - uid: 3916 + components: + - type: Transform + pos: -3.5,32.5 + parent: 1668 +- proto: SignCargoDock + entities: + - uid: 2986 + components: + - type: Transform + pos: 3.5,33.5 + parent: 1668 +- proto: SignDangerMed + entities: + - uid: 2535 + components: + - type: Transform + pos: 9.5,29.5 + parent: 1668 +- proto: SignDirectionalBar + entities: + - uid: 5656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 1668 +- proto: SignDirectionalEscapePod + entities: + - uid: 5654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1668 +- proto: SignElectricalMed + entities: + - uid: 5 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1668 + - uid: 5725 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1668 +- proto: SignEngineering + entities: + - uid: 3025 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1668 +- proto: SignEscapePods + entities: + - uid: 5655 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 1668 +- proto: SignGravity + entities: + - uid: 4028 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1668 +- proto: SignHead + entities: + - uid: 2993 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1668 + - uid: 7333 + components: + - type: Transform + pos: -32.5,2.5 + parent: 1668 +- proto: SignJanitor + entities: + - uid: 6045 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1668 +- proto: SignKiddiePlaque + entities: + - uid: 4020 + components: + - type: Transform + pos: 33.5,13.5 + parent: 1668 + - uid: 4214 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 1668 +- proto: SignKitchen + entities: + - uid: 1069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-16.5 + parent: 1668 + - uid: 5536 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 1668 + - uid: 5537 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 1668 +- proto: SignLawyer + entities: + - uid: 2102 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1668 +- proto: SignMedical + entities: + - uid: 573 + components: + - type: Transform + pos: 11.5,-3.5 parent: 1668 - proto: SignPlaque entities: - - uid: 3770 - components: - - type: Transform - pos: -18.5,13.5 - parent: 1668 - - uid: 4381 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 1668 - - uid: 4382 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 1668 - - uid: 6645 + - uid: 510 components: - type: Transform pos: -1.5,-3.5 parent: 1668 -- proto: SignRadiationMed + - uid: 2801 + components: + - type: Transform + pos: -15.5,14.5 + parent: 1668 + - uid: 4019 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1668 + - uid: 4211 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1668 + - uid: 4212 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 1668 + - uid: 6119 + components: + - type: MetaData + desc: The rest of these are my alts. + name: Chief Engineer + - type: Transform + pos: -9.5,-15.5 + parent: 1668 + - uid: 6120 + components: + - type: MetaData + desc: m...miku... + name: mirrorcult + - type: Transform + pos: -6.5,-15.5 + parent: 1668 + - uid: 6121 + components: + - type: MetaData + desc: '...' + name: Skarlet + - type: Transform + pos: -12.5,-15.5 + parent: 1668 + - uid: 6122 + components: + - type: MetaData + desc: Happy Birthday Nairod! + name: Nairod + - type: Transform + pos: -15.5,-15.5 + parent: 1668 + - uid: 6123 + components: + - type: MetaData + desc: Subscribe to Liltenhead. + name: Liltenhead + - type: Transform + pos: -18.5,-15.5 + parent: 1668 + - uid: 6184 + components: + - type: MetaData + desc: Thank you for your service. + name: Game Admin Retirement Home + - type: Transform + pos: -22.5,-9.5 + parent: 1668 +- proto: SignPrison entities: - - uid: 5348 + - uid: 1631 components: - type: Transform - pos: 33.5,-14.5 + pos: 8.5,13.5 parent: 1668 - - uid: 5349 + - uid: 1632 components: - type: Transform - pos: 34.5,-19.5 + pos: 18.5,6.5 parent: 1668 - - uid: 5350 +- proto: SignRedOne + entities: + - uid: 1589 components: - type: Transform - pos: 30.5,-19.5 + pos: 8.5,11.5 + parent: 1668 +- proto: SignRedTwo + entities: + - uid: 1590 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1668 +- proto: SignScience + entities: + - uid: 9123 + components: + - type: Transform + pos: 19.5,-28.5 parent: 1668 - proto: SignSecureMed entities: - - uid: 776 + - uid: 2545 components: - type: Transform - pos: -6.5,-6.5 + pos: 19.5,34.5 parent: 1668 - - uid: 3451 + - uid: 2564 components: - type: Transform - pos: -20.5,1.5 + pos: 21.5,32.5 parent: 1668 - - uid: 3713 + - uid: 2571 components: - type: Transform - pos: -17.5,6.5 + pos: 19.5,30.5 parent: 1668 - - uid: 3714 + - uid: 2572 components: - type: Transform - pos: -13.5,4.5 + pos: 17.5,32.5 parent: 1668 - - uid: 3871 + - uid: 6734 components: - type: Transform - pos: -16.5,-8.5 + pos: -34.5,-9.5 parent: 1668 - - uid: 3872 + - uid: 6735 components: - type: Transform - pos: -9.5,-4.5 + pos: -34.5,-5.5 parent: 1668 - - uid: 3873 + - uid: 6736 components: - type: Transform - pos: -9.5,-8.5 + pos: -37.5,-3.5 parent: 1668 - - uid: 4151 + - uid: 6737 components: - type: Transform - pos: -28.5,-2.5 + pos: -41.5,-3.5 parent: 1668 - - uid: 6443 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 1668 - - uid: 6444 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 1668 - - uid: 6445 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 1668 -- proto: SignSecureMedRed +- proto: SignSecurity entities: - - uid: 3988 + - uid: 574 components: - type: Transform - pos: 7.5,32.5 - parent: 1668 - - uid: 6615 - components: - - type: Transform - pos: 11.5,32.5 - parent: 1668 -- proto: SignSecureSmall - entities: - - uid: 3868 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 1668 - - uid: 3869 - components: - - type: Transform - pos: -19.5,-2.5 + pos: 11.5,2.5 parent: 1668 - proto: SignSpace entities: - - uid: 1792 + - uid: 4091 components: - type: Transform - pos: -15.5,23.5 + pos: -22.5,18.5 parent: 1668 - - uid: 1793 + - uid: 4850 components: - type: Transform - pos: -15.5,29.5 + pos: 16.5,-47.5 parent: 1668 - - uid: 2741 + - uid: 4851 components: - type: Transform - pos: 0.5,22.5 + pos: -17.5,-47.5 parent: 1668 - - uid: 5956 +- proto: SignTelecomms + entities: + - uid: 6022 components: - type: Transform - pos: -15.5,-25.5 - parent: 1668 - - uid: 5957 - components: - - type: Transform - pos: -17.5,-25.5 + rot: 3.141592653589793 rad + pos: -12.5,-11.5 parent: 1668 - proto: Sink entities: - - uid: 3425 + - uid: 2677 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,14.5 + pos: 30.5,-23.5 + parent: 1668 + - uid: 2794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,15.5 + parent: 1668 + - uid: 4827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 1668 + - uid: 4828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1668 + - uid: 4829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-31.5 + parent: 1668 + - uid: 4830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 1668 + - uid: 4831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-33.5 + parent: 1668 + - uid: 4832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 1668 + - uid: 4833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-31.5 + parent: 1668 + - uid: 4834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-30.5 parent: 1668 - proto: SinkWide entities: - - uid: 6619 + - uid: 675 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-27.5 + pos: 5.5,-10.5 parent: 1668 - - uid: 6620 + - uid: 1753 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-22.5 + pos: 12.5,-16.5 parent: 1668 - - uid: 6877 + - uid: 1766 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-24.5 + pos: 17.5,-16.5 parent: 1668 - - uid: 6878 +- proto: Sledgehammer + entities: + - uid: 3253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-24.5 + pos: 13.540003,-21.466553 + parent: 1668 +- proto: SmartFridge + entities: + - uid: 646 + components: + - type: Transform + pos: 11.5,-8.5 parent: 1668 - proto: SMESAdvanced entities: - - uid: 4703 + - uid: 3222 components: - type: Transform - pos: 27.5,-30.5 + pos: -12.5,18.5 parent: 1668 - - uid: 4715 + - uid: 3224 components: - type: Transform - pos: 22.5,-17.5 + pos: -12.5,17.5 parent: 1668 - - uid: 4977 + - uid: 3225 components: - type: Transform - pos: 22.5,-15.5 + pos: -12.5,19.5 parent: 1668 - - uid: 4992 + - uid: 3404 components: - type: Transform - pos: 22.5,-16.5 + pos: -13.5,5.5 parent: 1668 -- proto: SmokingPipeFilledTobacco +- proto: SmokeGrenade entities: - - uid: 3753 + - uid: 1636 components: - type: Transform - pos: -18.510391,8.646521 + pos: 14.500356,30.399075 parent: 1668 -- proto: SoapDeluxe - entities: - - uid: 3424 + - uid: 1767 components: - type: Transform - pos: -20.47715,15.560694 + pos: 14.500356,30.399075 + parent: 1668 + - uid: 2035 + components: + - type: Transform + pos: 14.500356,30.399075 + parent: 1668 + - uid: 2036 + components: + - type: Transform + pos: 14.500356,30.399075 + parent: 1668 +- proto: SoapNT + entities: + - uid: 2792 + components: + - type: Transform + pos: -17.5,16.5 parent: 1668 - proto: SodaDispenser entities: - - uid: 4427 + - uid: 1243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-25.5 + pos: 30.5,-22.5 parent: 1668 - - uid: 4429 + - uid: 1245 components: - type: Transform - pos: 7.5,-21.5 + pos: 27.5,-21.5 + parent: 1668 + - uid: 4037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,27.5 + parent: 1668 + - uid: 4288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 1668 +- proto: SpaceCash + entities: + - uid: 9170 + components: + - type: Transform + pos: 20.697725,-32.941944 + parent: 1668 + - uid: 9171 + components: + - type: Transform + pos: 21.322725,-31.535694 + parent: 1668 + - uid: 9172 + components: + - type: Transform + pos: 20.885225,-33.223194 + parent: 1668 +- proto: SpawnMechRipley + entities: + - uid: 4016 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1668 +- proto: SpeedLoaderMagnumAP + entities: + - uid: 2431 + components: + - type: Transform + pos: 16.07121,34.757042 + parent: 1668 + - uid: 2432 + components: + - type: Transform + pos: 16.07121,34.757042 + parent: 1668 + - uid: 2433 + components: + - type: Transform + pos: 16.07121,34.663292 + parent: 1668 + - uid: 2434 + components: + - type: Transform + pos: 16.07121,34.663292 + parent: 1668 + - uid: 2435 + components: + - type: Transform + pos: 16.07121,34.553917 + parent: 1668 + - uid: 2436 + components: + - type: Transform + pos: 16.07121,34.553917 + parent: 1668 + - uid: 2437 + components: + - type: Transform + pos: 16.07121,34.413292 + parent: 1668 + - uid: 2438 + components: + - type: Transform + pos: 16.07121,34.413292 + parent: 1668 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 9084 + components: + - type: Transform + pos: -6.3936605,-9.234895 + parent: 1668 + - uid: 9085 + components: + - type: Transform + pos: -6.5186605,-9.422395 parent: 1668 - proto: SS13Memorial entities: @@ -33226,12 +48547,40 @@ entities: - type: Transform pos: 26.5,7.5 parent: 1668 -- proto: StasisBed +- proto: StairStageWood entities: - - uid: 609 + - uid: 1370 components: - type: Transform - pos: 11.5,-7.5 + pos: 19.5,-23.5 + parent: 1668 +- proto: StairWood + entities: + - uid: 6192 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 1668 +- proto: StasisBed + entities: + - uid: 682 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1668 +- proto: StationAnchor + entities: + - uid: 3358 + components: + - type: Transform + pos: -11.5,26.5 + parent: 1668 +- proto: StatueBananiumClown + entities: + - uid: 9280 + components: + - type: Transform + pos: -23.5,3.5 parent: 1668 - proto: StatueVenusBlue entities: @@ -33247,3038 +48596,3583 @@ entities: - type: Transform pos: 21.5,7.5 parent: 1668 -- proto: Stool +- proto: SteelBench entities: - - uid: 2913 + - uid: 1781 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-17.5 + pos: -5.5,-1.5 + parent: 1668 + - uid: 1782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1668 +- proto: Stimpack + entities: + - uid: 2672 + components: + - type: Transform + pos: 13.522015,32.351566 + parent: 1668 + - uid: 2673 + components: + - type: Transform + pos: 13.522015,32.351566 + parent: 1668 + - uid: 2674 + components: + - type: Transform + pos: 13.522015,32.351566 + parent: 1668 + - uid: 2675 + components: + - type: Transform + pos: 13.522015,32.351566 + parent: 1668 +- proto: Stool + entities: + - uid: 1319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 1668 + - uid: 1596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1668 + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 1668 + - uid: 1684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,11.5 + parent: 1668 + - uid: 1685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1668 + - uid: 3027 + components: + - type: Transform + pos: 18.5,26.5 + parent: 1668 + - uid: 3038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,24.5 + parent: 1668 + - uid: 3610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 1668 + - uid: 3611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 1668 + - uid: 9078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.029807,-10.078645 parent: 1668 - proto: StoolBar entities: - - uid: 4412 + - uid: 748 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-25.5 + pos: 22.5,-27.5 parent: 1668 - - uid: 4413 + - uid: 1253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-26.5 + pos: 26.5,-18.5 parent: 1668 - - uid: 4414 + - uid: 1256 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 1668 + - uid: 1257 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-27.5 + pos: 24.5,-19.5 + parent: 1668 + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 1668 + - uid: 1259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-24.5 + parent: 1668 + - uid: 1260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 1668 + - uid: 1261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 1668 + - uid: 1262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 1668 + - uid: 1263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 1668 + - uid: 1264 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 1668 + - uid: 1265 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 1668 + - uid: 1266 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 1668 + - uid: 1267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-25.5 + parent: 1668 + - uid: 1268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-25.5 + parent: 1668 + - uid: 1269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-25.5 + parent: 1668 + - uid: 1317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-27.5 + parent: 1668 + - uid: 1320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 1668 + - uid: 1324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 1668 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 1668 + - uid: 1330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-15.5 + parent: 1668 + - uid: 1331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 1668 + - uid: 1336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 1668 + - uid: 1337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 1668 + - uid: 1343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 1668 + - uid: 1344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-17.5 + parent: 1668 + - uid: 1361 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 1668 + - uid: 1362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-27.5 + parent: 1668 + - uid: 1363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-27.5 + parent: 1668 + - uid: 1364 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 1668 + - uid: 4038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,25.5 + parent: 1668 + - uid: 4039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,25.5 parent: 1668 - proto: StorageCanister entities: - - uid: 3661 + - uid: 4125 components: - type: Transform - pos: -14.5,6.5 + pos: -21.5,28.5 parent: 1668 - proto: Stunbaton entities: - - uid: 2746 + - uid: 1149 components: - type: Transform - pos: 4.4667654,19.499214 + pos: 32.496967,-9.410905 + parent: 1668 + - uid: 4684 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 1668 + - uid: 4685 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 1668 + - uid: 4686 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 1668 + - uid: 4687 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 1668 + - uid: 4688 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 1668 + - uid: 4689 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 1668 + - uid: 4690 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 1668 + - uid: 4691 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 1668 + - uid: 4692 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 1668 + - uid: 4693 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 1668 + - uid: 4694 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 1668 + - uid: 4695 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 1668 + - uid: 4696 + components: + - type: Transform + pos: 9.5,-45.5 + parent: 1668 + - uid: 4697 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 1668 + - uid: 4698 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 1668 + - uid: 4699 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 1668 + - uid: 4700 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 1668 + - uid: 4701 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 1668 + - uid: 4702 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 1668 + - uid: 4703 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 1668 + - uid: 4704 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 1668 + - uid: 4705 + components: + - type: Transform + pos: 14.5,-38.5 parent: 1668 - proto: SubstationBasic entities: - - uid: 1130 + - uid: 1312 components: - type: Transform - pos: 15.5,-13.5 + pos: 34.5,-13.5 parent: 1668 - - uid: 1802 + - uid: 2070 components: - type: Transform - pos: -3.5,20.5 + pos: -13.5,7.5 parent: 1668 - - uid: 1803 + - uid: 3248 components: - type: Transform - pos: 2.5,20.5 + pos: -13.5,15.5 parent: 1668 - - uid: 2199 + - uid: 3734 components: - type: Transform - pos: 27.5,-31.5 + pos: 18.5,28.5 parent: 1668 - - uid: 2521 + - uid: 4436 + components: + - type: MetaData + name: Thunderdome Substation + - type: Transform + pos: 2.5,-49.5 + parent: 1668 + - uid: 5726 components: - type: Transform - pos: 15.5,19.5 + pos: -5.5,-16.5 parent: 1668 - - uid: 3432 - components: - - type: Transform - pos: -15.5,6.5 - parent: 1668 - - uid: 3949 - components: - - type: Transform - pos: -27.5,6.5 - parent: 1668 - - uid: 4815 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 1668 - - uid: 4816 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 1668 - - uid: 5958 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 1668 -- proto: SuitStorageCaptain +- proto: SuitStorageAtmos entities: - - uid: 3768 + - uid: 4034 components: - type: Transform - pos: -11.5,4.5 + pos: -15.5,25.5 parent: 1668 - - uid: 5146 +- proto: SuitStorageBasic + entities: + - uid: 2911 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1668 +- proto: SuitStorageEngi + entities: + - uid: 4035 + components: + - type: Transform + pos: -15.5,24.5 + parent: 1668 +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 8789 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 1668 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 8788 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 1668 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 8792 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1668 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 8793 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 1668 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 8794 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 1668 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 8795 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 1668 +- proto: SurveillanceCameraRouterService + entities: + - uid: 8791 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1668 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 8790 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 1668 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 4639 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Thunderdome + - uid: 6042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-17.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: youtube.com/liltenhead +- proto: SyndicateMicrowave + entities: + - uid: 1172 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1668 +- proto: SyringeBluespace + entities: + - uid: 906 + components: + - type: Transform + pos: 11.599115,-11.392432 + parent: 1668 + - uid: 907 + components: + - type: Transform + pos: 11.61474,-11.158057 + parent: 1668 +- proto: Table + entities: + - uid: 800 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 1668 + - uid: 803 + components: + - type: Transform + pos: 16.5,1.5 + parent: 1668 + - uid: 1186 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 1668 + - uid: 1310 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 1668 + - uid: 1313 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 1668 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 1668 + - uid: 1332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 1668 + - uid: 1333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 1668 + - uid: 1342 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 1668 + - uid: 1360 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 1668 + - uid: 1366 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1668 + - uid: 1369 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1668 + - uid: 1625 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1668 + - uid: 1628 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1668 + - uid: 2111 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1668 + - uid: 2724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,25.5 + parent: 1668 + - uid: 3018 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1668 + - uid: 3160 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1668 + - uid: 3993 + components: + - type: Transform + pos: -4.5,29.5 + parent: 1668 + - uid: 4025 + components: + - type: Transform + pos: -2.5,29.5 + parent: 1668 + - uid: 4042 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1668 + - uid: 4043 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1668 + - uid: 4044 + components: + - type: Transform + pos: -18.5,18.5 + parent: 1668 + - uid: 4261 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 1668 + - uid: 4262 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 1668 + - uid: 4263 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 1668 + - uid: 4264 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 1668 + - uid: 4327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1668 + - uid: 4835 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1668 + - uid: 4836 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 1668 + - uid: 6575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-4.5 + parent: 1668 + - uid: 6576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-4.5 + parent: 1668 + - uid: 6577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-6.5 + parent: 1668 + - uid: 6578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-7.5 + parent: 1668 + - uid: 6681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-8.5 + parent: 1668 + - uid: 6682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-6.5 + parent: 1668 + - uid: 6683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-7.5 + parent: 1668 + - uid: 6684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-8.5 + parent: 1668 + - uid: 6685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-10.5 + parent: 1668 + - uid: 6686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-10.5 + parent: 1668 + - uid: 8817 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 1668 + - uid: 8818 components: - type: Transform pos: -10.5,-6.5 parent: 1668 -- proto: SuitStorageCE - entities: - - uid: 6490 + - uid: 9091 components: - type: Transform - pos: -15.5,-3.5 + pos: -46.5,1.5 parent: 1668 -- proto: SuitStorageCMO - entities: - - uid: 6497 + - uid: 9099 components: - type: Transform - pos: -15.5,-9.5 + pos: -29.5,1.5 parent: 1668 -- proto: SuitStorageHOS - entities: - - uid: 6496 + - uid: 9106 components: - type: Transform - pos: -10.5,-9.5 + pos: -9.5,1.5 parent: 1668 -- proto: SuitStorageRD - entities: - - uid: 6493 + - uid: 9215 components: - type: Transform - pos: -10.5,-3.5 + pos: -40.5,1.5 parent: 1668 -- proto: SuitStorageSec + - uid: 9282 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1668 + - uid: 9286 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1668 + - uid: 9287 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1668 +- proto: TableCarpet entities: - - uid: 3465 + - uid: 2037 + components: + - type: Transform + pos: 33.5,25.5 + parent: 1668 + - uid: 2038 + components: + - type: Transform + pos: 33.5,26.5 + parent: 1668 + - uid: 2039 + components: + - type: Transform + pos: 33.5,27.5 + parent: 1668 + - uid: 2077 + components: + - type: Transform + pos: 31.5,11.5 + parent: 1668 + - uid: 2093 + components: + - type: Transform + pos: 31.5,12.5 + parent: 1668 + - uid: 2109 + components: + - type: Transform + pos: 32.5,11.5 + parent: 1668 + - uid: 2840 + components: + - type: Transform + pos: -23.5,12.5 + parent: 1668 + - uid: 2891 + components: + - type: Transform + pos: -23.5,13.5 + parent: 1668 + - uid: 2892 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1668 + - uid: 2893 + components: + - type: Transform + pos: -23.5,9.5 + parent: 1668 + - uid: 2894 + components: + - type: Transform + pos: -23.5,10.5 + parent: 1668 + - uid: 6182 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 1668 + - uid: 9070 components: - type: Transform pos: -6.5,-9.5 parent: 1668 -- proto: SurveillanceCameraCommand + - uid: 9071 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1668 +- proto: TableFancyGreen entities: - - uid: 6817 + - uid: 6066 components: - type: Transform - pos: -1.5,-2.5 + pos: -10.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Operator Room - - uid: 6818 + - uid: 6067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-3.5 + pos: -11.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - - uid: 6819 + - uid: 6100 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 1668 + - uid: 6101 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 1668 + - uid: 6102 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 1668 + - uid: 6103 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 1668 + - uid: 6124 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 1668 + - uid: 6125 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 1668 + - uid: 6173 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-6.5 + pos: -24.5,-7.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HighSec Storage Room - - uid: 6820 + - uid: 6671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,6.5 + pos: -31.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Reception - - uid: 6821 + - uid: 6672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,12.5 + pos: -32.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Conference Room - - uid: 6822 + - uid: 6673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,9.5 + pos: -34.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Bedroom - - uid: 6825 + - uid: 6674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-41.5 + pos: -35.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT West Room - - uid: 6826 + - uid: 6675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 + pos: -37.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT East Room - - uid: 6827 + - uid: 6676 components: - type: Transform - pos: -0.5,-43.5 + pos: -38.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT Central Room -- proto: SurveillanceCameraEngineering +- proto: TableFancyPurple entities: - - uid: 5407 + - uid: 6070 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-31.5 + pos: -17.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - - uid: 6790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-20.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Eng Lobby - - uid: 6791 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Power Supply - - uid: 6792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Power Generation - - uid: 6793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Generation - - uid: 6810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North Substation - - uid: 6823 - components: - - type: Transform - pos: -15.5,4.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Command Substation - - uid: 6824 + - uid: 6071 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,4.5 + pos: -16.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West Substation - - uid: 6828 + - uid: 9145 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-15.5 + pos: 20.5,-32.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Medbay Substation - - uid: 6829 + - uid: 9146 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-18.5 + pos: 20.5,-31.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Eng Substation -- proto: SurveillanceCameraGeneral + - uid: 9147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-32.5 + parent: 1668 + - uid: 9148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-31.5 + parent: 1668 + - uid: 9153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-33.5 + parent: 1668 + - uid: 9154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-33.5 + parent: 1668 +- proto: TableFancyRed entities: - - uid: 6830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals East - - uid: 6831 + - uid: 6068 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-0.5 + pos: -14.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals West - - uid: 6832 + - uid: 6069 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-17.5 + pos: -13.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway North - - uid: 6833 + - uid: 7273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 + pos: -49.5,5.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway West - - uid: 6834 + - uid: 7281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-25.5 + pos: -48.5,5.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking SouthWest - - uid: 6835 + - uid: 7303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-31.5 + pos: -50.5,5.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway SouthWest - - uid: 6836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-31.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway SouthEast - - uid: 6837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway East - - uid: 6838 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway NorthEast - - uid: 6839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking West - - uid: 6840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,5.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Waiting Room West - - uid: 6841 - components: - - type: Transform - pos: -17.5,-1.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West Hallway -- proto: SurveillanceCameraMedical +- proto: TableFancyWhite entities: - - uid: 6794 + - uid: 6061 components: - type: Transform - pos: 11.5,-14.5 + rot: 3.141592653589793 rad + pos: -7.5,-17.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning + - uid: 6065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-17.5 + parent: 1668 +- proto: TablePlasmaGlass + entities: + - uid: 7318 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 1668 + - uid: 7320 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 1668 + - uid: 7322 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 1668 +- proto: TableReinforced + entities: + - uid: 13 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1668 + - uid: 15 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1668 + - uid: 137 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1668 + - uid: 149 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1668 + - uid: 151 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1668 + - uid: 156 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1668 + - uid: 157 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1668 + - uid: 163 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1668 + - uid: 489 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1668 + - uid: 492 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1668 + - uid: 493 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1668 + - uid: 494 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1668 + - uid: 508 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1668 + - uid: 512 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1668 + - uid: 515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1668 + - uid: 575 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1668 + - uid: 576 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1668 + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 1668 + - uid: 597 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1668 + - uid: 599 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1668 + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 1668 + - uid: 649 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1668 + - uid: 650 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1668 + - uid: 651 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1668 + - uid: 652 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1668 + - uid: 653 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1668 + - uid: 654 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1668 + - uid: 655 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1668 + - uid: 656 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1668 + - uid: 657 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1668 + - uid: 658 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1668 + - uid: 659 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1668 + - uid: 660 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1668 + - uid: 721 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1668 + - uid: 722 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 1668 + - uid: 723 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 1668 + - uid: 724 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 1668 + - uid: 735 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1668 + - uid: 736 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1668 + - uid: 737 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1668 + - uid: 738 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1668 + - uid: 739 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1668 + - uid: 740 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 1668 + - uid: 741 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 1668 + - uid: 785 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1668 + - uid: 813 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1668 + - uid: 814 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1668 + - uid: 815 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1668 + - uid: 829 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1668 + - uid: 830 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 1668 + - uid: 905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,9.5 + parent: 1668 + - uid: 936 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1668 + - uid: 946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1668 + - uid: 947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 1668 + - uid: 955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1668 + - uid: 974 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 1668 + - uid: 975 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 1668 + - uid: 976 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1668 + - uid: 999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1668 + - uid: 1000 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 1668 + - uid: 1001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 1668 + - uid: 1002 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1668 + - uid: 1003 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1668 + - uid: 1004 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1668 + - uid: 1009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-23.5 + parent: 1668 + - uid: 1010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 1668 + - uid: 1011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-23.5 + parent: 1668 + - uid: 1071 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1668 + - uid: 1072 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 1668 + - uid: 1099 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 1668 + - uid: 1108 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 1668 + - uid: 1109 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1668 + - uid: 1110 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1668 + - uid: 1122 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 1668 + - uid: 1123 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 1668 + - uid: 1124 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 1668 + - uid: 1125 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 1668 + - uid: 1152 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 1668 + - uid: 1165 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1668 + - uid: 1167 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1668 + - uid: 1170 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1668 + - uid: 1171 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 1668 + - uid: 1173 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 1668 + - uid: 1210 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 1668 + - uid: 1211 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 1668 + - uid: 1213 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 1668 + - uid: 1214 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 1668 + - uid: 1215 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 1668 + - uid: 1220 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 1668 + - uid: 1225 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1668 + - uid: 1226 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 1668 + - uid: 1227 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 1668 + - uid: 1228 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 1668 + - uid: 1230 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 1668 + - uid: 1231 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 1668 + - uid: 1232 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 1668 + - uid: 1233 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1668 + - uid: 1234 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 1668 + - uid: 1235 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 1668 + - uid: 1236 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 1668 + - uid: 1237 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 1668 + - uid: 1238 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 1668 + - uid: 1239 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 1668 + - uid: 1241 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1668 + - uid: 1242 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 1668 + - uid: 1248 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 1668 + - uid: 1251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-12.5 + parent: 1668 + - uid: 1579 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1668 + - uid: 1580 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1668 + - uid: 1591 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1668 + - uid: 1592 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1668 + - uid: 1598 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1668 + - uid: 1599 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1668 + - uid: 1600 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1668 + - uid: 1603 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1668 + - uid: 1606 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1668 + - uid: 1607 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1668 + - uid: 1619 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1668 + - uid: 2103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1668 + - uid: 2148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,22.5 + parent: 1668 + - uid: 2152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 1668 + - uid: 2157 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1668 + - uid: 2168 + components: + - type: Transform + pos: 16.5,20.5 + parent: 1668 + - uid: 2244 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1668 + - uid: 2258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,24.5 + parent: 1668 + - uid: 2260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,22.5 + parent: 1668 + - uid: 2261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 1668 + - uid: 2262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,24.5 + parent: 1668 + - uid: 2265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 1668 + - uid: 2266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 1668 + - uid: 2268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,26.5 + parent: 1668 + - uid: 2269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,26.5 + parent: 1668 + - uid: 2270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,28.5 + parent: 1668 + - uid: 2271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,28.5 + parent: 1668 + - uid: 2272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,28.5 + parent: 1668 + - uid: 2273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 1668 + - uid: 2274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 1668 + - uid: 2275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,28.5 + parent: 1668 + - uid: 2276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,26.5 + parent: 1668 + - uid: 2277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,26.5 + parent: 1668 + - uid: 2316 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 1668 + - uid: 2317 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 1668 + - uid: 2318 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 1668 + - uid: 2319 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 1668 + - uid: 2320 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 1668 + - uid: 2423 + components: + - type: Transform + pos: 15.5,34.5 + parent: 1668 + - uid: 2424 + components: + - type: Transform + pos: 16.5,34.5 + parent: 1668 + - uid: 2425 + components: + - type: Transform + pos: 11.5,34.5 + parent: 1668 + - uid: 2426 + components: + - type: Transform + pos: 10.5,34.5 + parent: 1668 + - uid: 2529 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1668 + - uid: 2530 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1668 + - uid: 2584 + components: + - type: Transform + pos: 16.5,30.5 + parent: 1668 + - uid: 2585 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1668 + - uid: 2586 + components: + - type: Transform + pos: 14.5,30.5 + parent: 1668 + - uid: 2587 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1668 + - uid: 2588 + components: + - type: Transform + pos: 11.5,30.5 + parent: 1668 + - uid: 2589 + components: + - type: Transform + pos: 10.5,30.5 + parent: 1668 + - uid: 2907 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1668 + - uid: 2908 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1668 + - uid: 2909 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1668 + - uid: 2910 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1668 + - uid: 2912 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1668 + - uid: 2934 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1668 + - uid: 2935 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1668 + - uid: 2936 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1668 + - uid: 2937 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1668 + - uid: 2938 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1668 + - uid: 3021 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1668 + - uid: 3022 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1668 + - uid: 3230 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1668 + - uid: 3231 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1668 + - uid: 3237 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1668 + - uid: 3238 + components: + - type: Transform + pos: 2.5,22.5 + parent: 1668 + - uid: 3267 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1668 + - uid: 3269 + components: + - type: Transform + pos: -3.5,21.5 + parent: 1668 + - uid: 3270 + components: + - type: Transform + pos: -3.5,22.5 + parent: 1668 + - uid: 3520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1668 + - uid: 3671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1668 + - uid: 3884 + components: + - type: Transform + pos: -3.5,31.5 + parent: 1668 + - uid: 4040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,27.5 + parent: 1668 + - uid: 4049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,26.5 + parent: 1668 + - uid: 4053 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 1668 + - uid: 4085 + components: + - type: Transform + pos: -17.5,26.5 + parent: 1668 + - uid: 4086 + components: + - type: Transform + pos: -18.5,26.5 + parent: 1668 + - uid: 4429 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 1668 + - uid: 4430 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 1668 + - uid: 4431 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 1668 + - uid: 4432 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 1668 + - uid: 4433 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 1668 + - uid: 4434 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 1668 + - uid: 4435 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 1668 + - uid: 5474 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 1668 + - uid: 5475 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 1668 + - uid: 5476 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 1668 + - uid: 5477 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 1668 + - uid: 5478 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 1668 + - uid: 5479 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 1668 + - uid: 5480 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 1668 + - uid: 5963 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1668 + - uid: 6591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-7.5 + parent: 1668 + - uid: 6592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 1668 + - uid: 6593 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 1668 + - uid: 6594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-6.5 + parent: 1668 + - uid: 6595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 1668 + - uid: 6596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-8.5 + parent: 1668 + - uid: 6597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-7.5 + parent: 1668 + - uid: 6691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 1668 + - uid: 6692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-6.5 + parent: 1668 + - uid: 6693 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 1668 + - uid: 6694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 1668 + - uid: 6695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-7.5 + parent: 1668 + - uid: 6696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-6.5 + parent: 1668 +- proto: TableWood + entities: + - uid: 1283 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 1668 + - uid: 1284 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 1668 + - uid: 1285 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 1668 + - uid: 1841 + components: + - type: Transform + pos: 27.5,24.5 + parent: 1668 + - uid: 1842 + components: + - type: Transform + pos: 26.5,23.5 + parent: 1668 + - uid: 1843 + components: + - type: Transform + pos: 25.5,23.5 + parent: 1668 + - uid: 1844 + components: + - type: Transform + pos: 27.5,23.5 + parent: 1668 + - uid: 1845 + components: + - type: Transform + pos: 25.5,24.5 + parent: 1668 + - uid: 1846 + components: + - type: Transform + pos: 28.5,23.5 + parent: 1668 + - uid: 1847 + components: + - type: Transform + pos: 24.5,23.5 + parent: 1668 + - uid: 1872 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1668 + - uid: 1874 + components: + - type: Transform + pos: 24.5,21.5 + parent: 1668 + - uid: 1875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,21.5 + parent: 1668 + - uid: 1878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,21.5 + parent: 1668 + - uid: 1914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,20.5 + parent: 1668 + - uid: 1915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 1668 + - uid: 1916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 1668 + - uid: 1945 + components: + - type: Transform + pos: 20.5,20.5 + parent: 1668 + - uid: 1946 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1668 + - uid: 1947 + components: + - type: Transform + pos: 20.5,22.5 + parent: 1668 + - uid: 1996 + components: + - type: Transform + pos: 28.5,27.5 + parent: 1668 + - uid: 1997 + components: + - type: Transform + pos: 27.5,27.5 + parent: 1668 + - uid: 1998 + components: + - type: Transform + pos: 24.5,27.5 + parent: 1668 + - uid: 1999 + components: + - type: Transform + pos: 25.5,27.5 + parent: 1668 + - uid: 2072 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1668 + - uid: 2073 + components: + - type: Transform + pos: 27.5,11.5 + parent: 1668 + - uid: 2731 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1668 + - uid: 2806 + components: + - type: Transform + pos: -17.5,13.5 + parent: 1668 + - uid: 2807 + components: + - type: Transform + pos: -17.5,12.5 + parent: 1668 + - uid: 2808 + components: + - type: Transform + pos: -17.5,11.5 + parent: 1668 + - uid: 2809 + components: + - type: Transform + pos: -16.5,11.5 + parent: 1668 + - uid: 2813 + components: + - type: Transform + pos: -11.5,13.5 + parent: 1668 + - uid: 2815 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1668 + - uid: 2816 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1668 + - uid: 2825 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1668 + - uid: 2843 + components: + - type: Transform + pos: -20.5,11.5 + parent: 1668 + - uid: 2844 + components: + - type: Transform + pos: -20.5,12.5 + parent: 1668 + - uid: 4205 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 1668 + - uid: 4206 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 1668 + - uid: 4207 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 1668 + - uid: 4208 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 1668 + - uid: 4209 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 1668 + - uid: 4210 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 1668 + - uid: 4277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-36.5 + parent: 1668 + - uid: 4278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-36.5 + parent: 1668 + - uid: 4279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-36.5 + parent: 1668 + - uid: 4282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-33.5 + parent: 1668 + - uid: 4283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-32.5 + parent: 1668 + - uid: 4284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-29.5 + parent: 1668 + - uid: 4285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-29.5 + parent: 1668 + - uid: 4286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-29.5 + parent: 1668 + - uid: 4290 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 1668 + - uid: 4437 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 1668 + - uid: 4438 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 1668 + - uid: 4439 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 1668 + - uid: 4440 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 1668 + - uid: 4441 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 1668 + - uid: 4442 + components: + - type: Transform + pos: -4.5,-49.5 + parent: 1668 + - uid: 4443 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 1668 + - uid: 4445 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 1668 + - uid: 6719 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 1668 + - uid: 6720 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 1668 + - uid: 6721 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 1668 + - uid: 6722 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 1668 + - uid: 6723 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 1668 + - uid: 6724 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 1668 + - uid: 6749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-10.5 + parent: 1668 + - uid: 6750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-4.5 + parent: 1668 + - uid: 7104 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 1668 + - uid: 7274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,5.5 + parent: 1668 + - uid: 7275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 1668 + - uid: 7276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,5.5 + parent: 1668 +- proto: TargetClown + entities: + - uid: 3100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1668 +- proto: TargetDarts + entities: + - uid: 9132 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 1668 +- proto: TargetSyndicate + entities: + - uid: 3666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1668 +- proto: TearGasGrenade + entities: + - uid: 3169 + components: + - type: Transform + pos: 14.906606,30.419909 + parent: 1668 + - uid: 3170 + components: + - type: Transform + pos: 14.906606,30.419909 + parent: 1668 + - uid: 3171 + components: + - type: Transform + pos: 14.906606,30.419909 + parent: 1668 + - uid: 3172 + components: + - type: Transform + pos: 14.906606,30.419909 + parent: 1668 +- proto: TelecomServerFilledCargo + entities: + - uid: 8786 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 1668 +- proto: TelecomServerFilledCommand + entities: + - uid: 8785 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 1668 +- proto: TelecomServerFilledCommon + entities: + - uid: 8784 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 1668 +- proto: TelecomServerFilledEngineering + entities: + - uid: 8783 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 1668 +- proto: TelecomServerFilledMedical + entities: + - uid: 6390 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 1668 +- proto: TelecomServerFilledScience + entities: + - uid: 6391 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 1668 +- proto: TelecomServerFilledSecurity + entities: + - uid: 6389 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 1668 +- proto: TelecomServerFilledService + entities: + - uid: 8787 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1668 +- proto: Telecrystal5 + entities: + - uid: 2919 + components: + - type: Transform + pos: -9.54139,7.5595765 + parent: 1668 +- proto: Throngler + entities: + - uid: 2547 + components: + - type: Transform + pos: 19.5,32.5 + parent: 1668 +- proto: TintedWindow + entities: + - uid: 1129 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 1668 + - uid: 1146 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 1668 + - uid: 1147 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 1668 + - uid: 1148 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 1668 + - uid: 2114 + components: + - type: Transform + pos: 30.5,13.5 + parent: 1668 +- proto: ToiletGoldenEmpty + entities: + - uid: 2788 + components: + - type: Transform + pos: -18.5,16.5 + parent: 1668 +- proto: ToolboxElectricalFilled + entities: + - uid: 3186 + components: + - type: Transform + pos: -7.504042,12.840626 + parent: 1668 +- proto: ToolboxEmergencyFilled + entities: + - uid: 3187 + components: + - type: Transform + pos: -7.504042,12.646182 + parent: 1668 +- proto: ToolboxMechanicalFilled + entities: + - uid: 3188 + components: + - type: Transform + pos: -7.504042,12.47257 + parent: 1668 + - uid: 7100 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 1668 +- proto: TowelColorCentcom + entities: + - uid: 2850 + components: + - type: Transform + pos: -17.44774,15.377905 + parent: 1668 +- proto: TowelColorNT + entities: + - uid: 9338 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1668 +- proto: ToyAmongPequeno + entities: + - uid: 6117 + components: + - type: Transform + pos: -13.455584,-17.395884 + parent: 1668 +- proto: ToyFigurineMime + entities: + - uid: 6116 + components: + - type: Transform + pos: -14.511139,-17.375051 + parent: 1668 +- proto: ToyHammer + entities: + - uid: 6187 + components: + - type: MetaData + desc: Delivering justice one squeak at a time. + name: the ban hammer + - type: Transform + pos: -19.5,-8.5 + parent: 1668 +- proto: ToyRubberDuck + entities: + - uid: 2793 + components: + - type: Transform + pos: -17.501116,16.328264 + parent: 1668 +- proto: trayScanner + entities: + - uid: 6778 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 6795 components: - type: Transform - rot: 1.5707963267948966 rad + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TritiumCanister + entities: + - uid: 4123 + components: + - type: Transform + pos: -20.5,30.5 + parent: 1668 +- proto: TurboItemRecharger + entities: + - uid: 209 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1668 +- proto: TwoWayLever + entities: + - uid: 3648 + components: + - type: Transform + pos: 6.5,31.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 3644: + - Left: Forward + - Right: Reverse + - Middle: Off + 3645: + - Left: Forward + - Right: Reverse + - Middle: Off + 3663: + - Left: Forward + - Right: Reverse + - Middle: Off + 3651: + - Left: Forward + - Right: Reverse + - Middle: Off + 3646: + - Left: Forward + - Right: Reverse + - Middle: Off + 3649: + - Left: Forward + - Right: Reverse + - Middle: Off + 3638: + - Left: Forward + - Right: Reverse + - Middle: Off + 3654: + - Left: Forward + - Right: Reverse + - Middle: Off + 3662: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 3652 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 3655: + - Left: Forward + - Right: Reverse + - Middle: Off + 3653: + - Left: Forward + - Right: Reverse + - Middle: Off + 3656: + - Left: Forward + - Right: Reverse + - Middle: Off + 3647: + - Left: Forward + - Right: Reverse + - Middle: Off + 3650: + - Left: Forward + - Right: Reverse + - Middle: Off + 3657: + - Left: Forward + - Right: Reverse + - Middle: Off + 3658: + - Left: Forward + - Right: Reverse + - Middle: Off + 3659: + - Left: Forward + - Right: Reverse + - Middle: Off + 3264: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 9083 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 8745: + - Left: Reverse + - Right: Forward + - Middle: Off +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 1035 + components: + - type: Transform + pos: 7.383148,-17.230762 + parent: 1668 + - uid: 1036 + components: + - type: Transform + pos: 7.6053705,-17.223818 + parent: 1668 + - uid: 1037 + components: + - type: Transform + pos: 7.5012035,-17.411318 + parent: 1668 + - uid: 1038 + components: + - type: Transform + pos: 7.7303705,-17.411318 + parent: 1668 +- proto: VendingBarDrobe + entities: + - uid: 1286 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 1668 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 4032 + components: + - type: Transform + pos: -15.5,27.5 + parent: 1668 +- proto: VendingMachineBooze + entities: + - uid: 1229 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1668 + - uid: 2839 + components: + - type: Transform + pos: -17.5,9.5 + parent: 1668 + - uid: 4289 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 1668 +- proto: VendingMachineBoozeSyndicate + entities: + - uid: 1282 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 1668 +- proto: VendingMachineCargoDrobe + entities: + - uid: 3904 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1668 +- proto: VendingMachineCart + entities: + - uid: 97 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1668 + - uid: 7338 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 1668 +- proto: VendingMachineCentDrobe + entities: + - uid: 497 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1668 + - uid: 2822 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1668 + - uid: 4444 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 1668 +- proto: VendingMachineChang + entities: + - uid: 1754 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1668 +- proto: VendingMachineChefDrobe + entities: + - uid: 1164 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 1668 +- proto: VendingMachineChefvend + entities: + - uid: 1111 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1668 + - uid: 5450 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 1668 +- proto: VendingMachineChemDrobe + entities: + - uid: 757 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1668 +- proto: VendingMachineChemicals + entities: + - uid: 663 + components: + - type: Transform pos: 5.5,-12.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 6796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-4.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical -- proto: SurveillanceCameraRouterCommand +- proto: VendingMachineCigs entities: - - uid: 6864 + - uid: 2027 components: - type: Transform - pos: 29.5,-29.5 + pos: 34.5,-15.5 parent: 1668 -- proto: SurveillanceCameraRouterEngineering + - uid: 2112 + components: + - type: Transform + pos: 31.5,14.5 + parent: 1668 + - uid: 4287 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 1668 + - uid: 9097 + components: + - type: Transform + pos: -30.5,1.5 + parent: 1668 +- proto: VendingMachineClothing entities: - - uid: 6871 + - uid: 9109 components: - type: Transform - pos: 32.5,-29.5 + pos: -38.5,1.5 parent: 1668 -- proto: SurveillanceCameraRouterGeneral +- proto: VendingMachineCoffee entities: - - uid: 6869 + - uid: 1520 components: - type: Transform - pos: 29.5,-30.5 + pos: -7.5,4.5 parent: 1668 -- proto: SurveillanceCameraRouterMedical + - uid: 2108 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1668 + - uid: 3607 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1668 + - uid: 9096 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1668 +- proto: VendingMachineDinnerware entities: - - uid: 6870 - components: - - type: Transform - pos: 33.5,-29.5 - parent: 1668 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 6873 - components: - - type: Transform - pos: 30.5,-29.5 - parent: 1668 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 6867 - components: - - type: Transform - pos: 31.5,-30.5 - parent: 1668 -- proto: SurveillanceCameraRouterService - entities: - - uid: 6872 - components: - - type: Transform - pos: 31.5,-29.5 - parent: 1668 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 6868 - components: - - type: Transform - pos: 30.5,-30.5 - parent: 1668 -- proto: SurveillanceCameraSecurity - entities: - - uid: 6765 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Service checkpoint - - uid: 6801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,19.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court room north - - uid: 6802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court room south - - uid: 6803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Judge room - - uid: 6804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig lobby - - uid: 6805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden room - - uid: 6806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation room - - uid: 6807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig west - - uid: 6808 - components: - - type: Transform - pos: 9.5,27.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 6809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig east - - uid: 6815 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medbay checkpoint - - uid: 6816 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals checkpoint -- proto: SurveillanceCameraService - entities: - - uid: 6797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - - uid: 6798 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Canteen - - uid: 6799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 6800 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Jani closet -- proto: SurveillanceCameraSupply - entities: - - uid: 6811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo lobby - - uid: 6812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo command room - - uid: 6813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,31.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay north - - uid: 6814 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay south -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 6866 - components: - - type: Transform - pos: 32.5,-30.5 - parent: 1668 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 6865 - components: - - type: Transform - pos: 33.5,-30.5 - parent: 1668 -- proto: Table - entities: - - uid: 528 - components: - - type: Transform - pos: 21.5,5.5 - parent: 1668 - - uid: 529 - components: - - type: Transform - pos: 31.5,5.5 - parent: 1668 - - uid: 530 - components: - - type: Transform - pos: 21.5,-6.5 - parent: 1668 - - uid: 631 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1668 - - uid: 632 - components: - - type: Transform - pos: 15.5,1.5 - parent: 1668 - - uid: 633 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 1668 - - uid: 807 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 1668 - - uid: 808 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 1668 - uid: 1180 components: - type: Transform pos: 17.5,-15.5 parent: 1668 - - uid: 1181 + - uid: 5508 components: - type: Transform - pos: 16.5,-15.5 + pos: -9.5,-36.5 parent: 1668 - - uid: 2043 - components: - - type: Transform - pos: -1.5,19.5 - parent: 1668 - - uid: 2163 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1668 - - uid: 2164 - components: - - type: Transform - pos: -3.5,12.5 - parent: 1668 - - uid: 2165 - components: - - type: Transform - pos: 2.5,8.5 - parent: 1668 - - uid: 2166 - components: - - type: Transform - pos: 2.5,16.5 - parent: 1668 - - uid: 2210 - components: - - type: Transform - pos: -6.5,31.5 - parent: 1668 - - uid: 2211 - components: - - type: Transform - pos: -7.5,31.5 - parent: 1668 - - uid: 2212 - components: - - type: Transform - pos: -5.5,24.5 - parent: 1668 - - uid: 2213 - components: - - type: Transform - pos: -5.5,25.5 - parent: 1668 - - uid: 2214 - components: - - type: Transform - pos: -5.5,26.5 - parent: 1668 - - uid: 2215 - components: - - type: Transform - pos: -11.5,31.5 - parent: 1668 - - uid: 2216 - components: - - type: Transform - pos: -10.5,31.5 - parent: 1668 - - uid: 2826 - components: - - type: Transform - pos: 5.5,21.5 - parent: 1668 - - uid: 3142 - components: - - type: Transform - pos: 10.5,25.5 - parent: 1668 - - uid: 3143 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1668 - - uid: 3182 - components: - - type: Transform - pos: 10.5,15.5 - parent: 1668 - - uid: 3183 - components: - - type: Transform - pos: 10.5,10.5 - parent: 1668 - - uid: 3260 - components: - - type: Transform - pos: 8.5,23.5 - parent: 1668 - - uid: 5244 - components: - - type: Transform - pos: 27.5,-23.5 - parent: 1668 - - uid: 5245 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 1668 - - uid: 5247 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 1668 - - uid: 5248 - components: - - type: Transform - pos: 26.5,-23.5 - parent: 1668 - - uid: 5329 - components: - - type: Transform - pos: 34.5,-17.5 - parent: 1668 - - uid: 5330 - components: - - type: Transform - pos: 34.5,-16.5 - parent: 1668 - - uid: 5339 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 1668 - - uid: 5421 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 1668 - - uid: 6151 - components: - - type: Transform - pos: -19.5,-22.5 - parent: 1668 - - uid: 6270 - components: - - type: Transform - pos: 14.5,-27.5 - parent: 1668 - - uid: 6571 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 1668 - - uid: 6572 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 1668 - - uid: 6581 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 1668 - - uid: 6582 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 1668 - - uid: 6583 - components: - - type: Transform - pos: 11.5,-33.5 - parent: 1668 - - uid: 6584 - components: - - type: Transform - pos: 7.5,-33.5 - parent: 1668 - - uid: 6624 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 1668 - - uid: 6625 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 1668 -- proto: TableCarpet +- proto: VendingMachineEngiDrobe entities: - - uid: 699 + - uid: 3157 components: - type: Transform - pos: 18.5,14.5 + pos: -4.5,12.5 parent: 1668 - - uid: 6595 - components: - - type: Transform - pos: 18.5,12.5 - parent: 1668 - - uid: 6606 - components: - - type: Transform - pos: 18.5,13.5 - parent: 1668 -- proto: TableReinforced +- proto: VendingMachineEngivend entities: - - uid: 98 + - uid: 3158 components: - type: Transform - pos: 3.5,-9.5 + pos: -4.5,11.5 parent: 1668 - - uid: 99 +- proto: VendingMachineGames + entities: + - uid: 9107 components: - type: Transform - pos: 3.5,-10.5 + pos: -2.5,-23.5 parent: 1668 - - uid: 126 +- proto: VendingMachineHydrobe + entities: + - uid: 1014 components: - type: Transform - pos: 9.5,16.5 + pos: 5.5,-23.5 parent: 1668 - - uid: 206 +- proto: VendingMachineJaniDrobe + entities: + - uid: 8744 components: - type: Transform - pos: 0.5,0.5 + pos: -4.5,-8.5 parent: 1668 - - uid: 216 +- proto: VendingMachineLawDrobe + entities: + - uid: 2071 components: - type: Transform - pos: 2.5,-12.5 - parent: 1668 - - uid: 217 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 1668 - - uid: 218 - components: - - type: Transform - pos: 12.5,2.5 - parent: 1668 - - uid: 219 - components: - - type: Transform - pos: 14.5,2.5 - parent: 1668 - - uid: 489 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 1668 - - uid: 491 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 1668 - - uid: 494 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 1668 - - uid: 500 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 1668 - - uid: 501 - components: - - type: Transform - pos: 24.5,-8.5 - parent: 1668 - - uid: 503 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 1668 - - uid: 504 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 1668 - - uid: 505 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 1668 - - uid: 513 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 1668 - - uid: 514 - components: - - type: Transform - pos: 21.5,-10.5 - parent: 1668 - - uid: 596 - components: - - type: Transform - pos: 10.5,3.5 - parent: 1668 - - uid: 597 - components: - - type: Transform - pos: 10.5,4.5 - parent: 1668 - - uid: 598 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1668 - - uid: 599 - components: - - type: Transform - pos: 13.5,6.5 - parent: 1668 - - uid: 600 - components: - - type: Transform - pos: 14.5,6.5 - parent: 1668 - - uid: 601 - components: - - type: Transform - pos: 15.5,6.5 - parent: 1668 - - uid: 613 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 1668 - - uid: 614 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 1668 - - uid: 615 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 1668 - - uid: 618 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 1668 - - uid: 641 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1668 - - uid: 642 - components: - - type: Transform - pos: -0.5,1.5 - parent: 1668 - - uid: 643 - components: - - type: Transform - pos: 0.5,1.5 - parent: 1668 - - uid: 645 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 1668 - - uid: 646 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1668 - - uid: 647 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 1668 - - uid: 648 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1668 - - uid: 738 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 1668 - - uid: 770 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 1668 - - uid: 771 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 1668 - - uid: 794 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 1668 - - uid: 805 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 1668 - - uid: 809 - components: - - type: Transform - pos: -6.5,-13.5 + pos: 25.5,12.5 parent: 1668 +- proto: VendingMachineMedical + entities: - uid: 810 components: - type: Transform - pos: -6.5,-12.5 + pos: 8.5,-4.5 parent: 1668 - uid: 811 components: - type: Transform - pos: -4.5,-10.5 + pos: 23.5,-13.5 parent: 1668 - - uid: 812 +- proto: VendingMachineNutri + entities: + - uid: 997 components: - type: Transform - pos: -4.5,-9.5 + pos: 7.5,-18.5 parent: 1668 - - uid: 1194 +- proto: VendingMachinePride + entities: + - uid: 9108 components: - type: Transform - pos: 13.5,-12.5 + pos: -39.5,1.5 parent: 1668 - - uid: 1427 +- proto: VendingMachineSciDrobe + entities: + - uid: 9158 components: - type: Transform - pos: 6.5,-9.5 + pos: 19.5,-29.5 parent: 1668 - - uid: 1433 +- proto: VendingMachineSec + entities: + - uid: 82 components: - type: Transform - pos: -1.5,1.5 + pos: 13.5,5.5 parent: 1668 - - uid: 1617 + - uid: 1138 components: - type: Transform - pos: -4.5,9.5 + pos: 34.5,-8.5 parent: 1668 - - uid: 1618 +- proto: VendingMachineSecDrobe + entities: + - uid: 1593 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1668 +- proto: VendingMachineSeeds + entities: + - uid: 995 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1668 +- proto: VendingMachineShamblersJuice + entities: + - uid: 9290 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1668 +- proto: VendingMachineSmite + entities: + - uid: 9218 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1668 +- proto: VendingMachineSnack + entities: + - uid: 2113 + components: + - type: Transform + pos: 32.5,14.5 + parent: 1668 +- proto: VendingMachineSustenance + entities: + - uid: 9199 + components: + - type: Transform + pos: -41.5,1.5 + parent: 1668 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 9195 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 1668 +- proto: VendingMachineTheater + entities: + - uid: 9216 + components: + - type: Transform + pos: -36.5,1.5 + parent: 1668 +- proto: VendingMachineWinter + entities: + - uid: 9212 + components: + - type: Transform + pos: -37.5,1.5 + parent: 1668 +- proto: VendingMachineYouTool + entities: + - uid: 3159 components: - type: Transform pos: -4.5,10.5 parent: 1668 - - uid: 1636 - components: - - type: Transform - pos: -9.5,8.5 - parent: 1668 - - uid: 1637 - components: - - type: Transform - pos: -8.5,8.5 - parent: 1668 - - uid: 1638 - components: - - type: Transform - pos: -7.5,8.5 - parent: 1668 - - uid: 1639 - components: - - type: Transform - pos: -12.5,9.5 - parent: 1668 - - uid: 1640 - components: - - type: Transform - pos: -12.5,10.5 - parent: 1668 - - uid: 1641 - components: - - type: Transform - pos: -12.5,11.5 - parent: 1668 - - uid: 1642 - components: - - type: Transform - pos: -8.5,12.5 - parent: 1668 - - uid: 1643 - components: - - type: Transform - pos: -9.5,12.5 - parent: 1668 - - uid: 1654 - components: - - type: Transform - pos: -15.5,14.5 - parent: 1668 - - uid: 1655 - components: - - type: Transform - pos: -14.5,14.5 - parent: 1668 - - uid: 1656 - components: - - type: Transform - pos: -15.5,17.5 - parent: 1668 - - uid: 1657 - components: - - type: Transform - pos: -14.5,17.5 - parent: 1668 - - uid: 2423 - components: - - type: Transform - pos: 23.5,15.5 - parent: 1668 - - uid: 2424 - components: - - type: Transform - pos: 23.5,16.5 - parent: 1668 - - uid: 2720 - components: - - type: Transform - pos: 4.5,18.5 - parent: 1668 - - uid: 2721 - components: - - type: Transform - pos: 4.5,19.5 - parent: 1668 - - uid: 2822 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1668 - - uid: 2875 - components: - - type: Transform - pos: 8.5,29.5 - parent: 1668 - - uid: 2878 - components: - - type: Transform - pos: 8.5,32.5 - parent: 1668 - - uid: 2879 - components: - - type: Transform - pos: 10.5,32.5 - parent: 1668 - - uid: 2891 - components: - - type: Transform - pos: 2.5,30.5 - parent: 1668 - - uid: 2892 - components: - - type: Transform - pos: 2.5,31.5 - parent: 1668 - - uid: 2893 - components: - - type: Transform - pos: 2.5,32.5 - parent: 1668 - - uid: 2894 - components: - - type: Transform - pos: 16.5,30.5 - parent: 1668 - - uid: 2895 - components: - - type: Transform - pos: 16.5,31.5 - parent: 1668 - - uid: 2896 - components: - - type: Transform - pos: 16.5,32.5 - parent: 1668 - - uid: 3079 - components: - - type: Transform - pos: 8.5,17.5 - parent: 1668 - - uid: 3255 - components: - - type: Transform - pos: 16.5,19.5 - parent: 1668 - - uid: 3412 - components: - - type: Transform - pos: -18.5,4.5 - parent: 1668 - - uid: 3413 - components: - - type: Transform - pos: -19.5,4.5 - parent: 1668 - - uid: 3414 - components: - - type: Transform - pos: -20.5,4.5 - parent: 1668 - - uid: 3415 - components: - - type: Transform - pos: -20.5,5.5 - parent: 1668 - - uid: 3416 - components: - - type: Transform - pos: -20.5,6.5 - parent: 1668 - - uid: 3632 - components: - - type: Transform - pos: -12.5,4.5 - parent: 1668 - - uid: 3634 - components: - - type: Transform - pos: -10.5,4.5 - parent: 1668 - - uid: 3635 - components: - - type: Transform - pos: -10.5,6.5 - parent: 1668 - - uid: 3636 - components: - - type: Transform - pos: -11.5,6.5 - parent: 1668 - - uid: 3637 - components: - - type: Transform - pos: -12.5,6.5 - parent: 1668 - - uid: 3697 - components: - - type: Transform - pos: -16.5,6.5 - parent: 1668 - - uid: 3798 - components: - - type: Transform - pos: -13.5,-9.5 - parent: 1668 - - uid: 3799 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 1668 - - uid: 3800 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 1668 - - uid: 3801 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 1668 - - uid: 3802 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 1668 - - uid: 3803 - components: - - type: Transform - pos: -13.5,-6.5 - parent: 1668 - - uid: 3804 - components: - - type: Transform - pos: -13.5,-5.5 - parent: 1668 - - uid: 3805 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 1668 - - uid: 3806 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 1668 - - uid: 3807 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 1668 - - uid: 3808 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 1668 - - uid: 3809 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 1668 - - uid: 3810 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 1668 - - uid: 3811 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 1668 - - uid: 3812 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 1668 - - uid: 3813 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 1668 - - uid: 3814 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 1668 - - uid: 3815 - components: - - type: Transform - pos: -24.5,-7.5 - parent: 1668 - - uid: 3816 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 1668 - - uid: 3817 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 1668 - - uid: 3819 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 1668 - - uid: 3820 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 1668 - - uid: 3822 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 1668 - - uid: 4256 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 1668 - - uid: 4263 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 1668 - - uid: 4344 - components: - - type: Transform - pos: 6.5,-24.5 - parent: 1668 - - uid: 4347 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 1668 - - uid: 4348 - components: - - type: Transform - pos: -8.5,-26.5 - parent: 1668 - - uid: 4349 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 1668 - - uid: 4350 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 1668 - - uid: 4351 - components: - - type: Transform - pos: 7.5,-26.5 - parent: 1668 - - uid: 4352 - components: - - type: Transform - pos: 7.5,-25.5 - parent: 1668 - - uid: 4430 - components: - - type: Transform - pos: 3.5,-25.5 - parent: 1668 - - uid: 4431 - components: - - type: Transform - pos: 3.5,-26.5 - parent: 1668 - - uid: 4432 - components: - - type: Transform - pos: -4.5,-25.5 - parent: 1668 - - uid: 4433 - components: - - type: Transform - pos: -4.5,-26.5 - parent: 1668 - - uid: 4452 - components: - - type: Transform - pos: 2.5,-29.5 - parent: 1668 - - uid: 4459 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 1668 - - uid: 4466 - components: - - type: Transform - pos: -3.5,-28.5 - parent: 1668 - - uid: 4467 - components: - - type: Transform - pos: 2.5,-28.5 - parent: 1668 - - uid: 4582 - components: - - type: Transform - pos: -10.5,-28.5 - parent: 1668 - - uid: 4583 - components: - - type: Transform - pos: -9.5,-28.5 - parent: 1668 - - uid: 4584 - components: - - type: Transform - pos: -11.5,-28.5 - parent: 1668 - - uid: 4586 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 1668 - - uid: 4587 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 1668 - - uid: 4588 - components: - - type: Transform - pos: -11.5,-24.5 - parent: 1668 - - uid: 4749 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 1668 - - uid: 5312 - components: - - type: Transform - pos: 25.5,-26.5 - parent: 1668 - - uid: 5313 - components: - - type: Transform - pos: 26.5,-26.5 - parent: 1668 - - uid: 5315 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 1668 - - uid: 5316 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 1668 - - uid: 5317 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 1668 - - uid: 6453 - components: - - type: Transform - pos: -6.5,-43.5 - parent: 1668 - - uid: 6454 - components: - - type: Transform - pos: -6.5,-41.5 - parent: 1668 - - uid: 6455 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 1668 - - uid: 6456 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 1668 - - uid: 6457 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 1668 - - uid: 6458 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 1668 - - uid: 6459 - components: - - type: Transform - pos: 5.5,-39.5 - parent: 1668 - - uid: 6460 - components: - - type: Transform - pos: 3.5,-39.5 - parent: 1668 - - uid: 6461 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 1668 - - uid: 6462 - components: - - type: Transform - pos: 5.5,-43.5 - parent: 1668 - - uid: 6767 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 1668 -- proto: TableWood +- proto: WallmountTelescreen entities: - - uid: 2352 + - uid: 2972 components: - type: Transform - pos: 32.5,15.5 + pos: -15.5,8.5 parent: 1668 - - uid: 2353 + - uid: 4265 components: - type: Transform - pos: 32.5,16.5 + pos: 3.5,-35.5 parent: 1668 - - uid: 2354 + - uid: 4266 components: - type: Transform - pos: 32.5,17.5 + pos: 3.5,-33.5 parent: 1668 - - uid: 2355 + - uid: 4267 components: - type: Transform - pos: 32.5,18.5 + pos: -4.5,-33.5 parent: 1668 - - uid: 2356 + - uid: 4268 components: - type: Transform - pos: 32.5,19.5 + pos: -4.5,-35.5 parent: 1668 - - uid: 2357 + - uid: 4718 components: - type: Transform - pos: 27.5,20.5 + pos: -4.5,-46.5 parent: 1668 - - uid: 2358 + - uid: 4719 components: - type: Transform - pos: 28.5,20.5 + pos: -1.5,-46.5 parent: 1668 - - uid: 2359 + - uid: 4720 components: - type: Transform - pos: 29.5,20.5 + pos: 3.5,-46.5 parent: 1668 - - uid: 2360 - components: - - type: Transform - pos: 29.5,21.5 - parent: 1668 - - uid: 2361 - components: - - type: Transform - pos: 27.5,21.5 - parent: 1668 - - uid: 2362 - components: - - type: Transform - pos: 30.5,20.5 - parent: 1668 - - uid: 2363 - components: - - type: Transform - pos: 26.5,20.5 - parent: 1668 - - uid: 2364 - components: - - type: Transform - pos: 22.5,23.5 - parent: 1668 - - uid: 2365 - components: - - type: Transform - pos: 34.5,23.5 - parent: 1668 - - uid: 2366 - components: - - type: Transform - pos: 30.5,23.5 - parent: 1668 - - uid: 2367 - components: - - type: Transform - pos: 29.5,23.5 - parent: 1668 - - uid: 2368 - components: - - type: Transform - pos: 27.5,23.5 - parent: 1668 - - uid: 2369 - components: - - type: Transform - pos: 26.5,23.5 - parent: 1668 - - uid: 2411 - components: - - type: Transform - pos: 27.5,17.5 - parent: 1668 - - uid: 2412 - components: - - type: Transform - pos: 26.5,17.5 - parent: 1668 - - uid: 2413 - components: - - type: Transform - pos: 30.5,17.5 - parent: 1668 - - uid: 2414 - components: - - type: Transform - pos: 29.5,17.5 - parent: 1668 - - uid: 2435 - components: - - type: Transform - pos: 28.5,10.5 - parent: 1668 - - uid: 2436 - components: - - type: Transform - pos: 34.5,11.5 - parent: 1668 - - uid: 2437 - components: - - type: Transform - pos: 34.5,12.5 - parent: 1668 - - uid: 2486 - components: - - type: Transform - pos: 20.5,20.5 - parent: 1668 - - uid: 2487 - components: - - type: Transform - pos: 19.5,20.5 - parent: 1668 - - uid: 2488 - components: - - type: Transform - pos: 19.5,21.5 - parent: 1668 - - uid: 3394 - components: - - type: Transform - pos: -25.5,8.5 - parent: 1668 - - uid: 3395 - components: - - type: Transform - pos: -26.5,8.5 - parent: 1668 - - uid: 3396 - components: - - type: Transform - pos: -26.5,9.5 - parent: 1668 - - uid: 3397 - components: - - type: Transform - pos: -26.5,11.5 - parent: 1668 - - uid: 3398 - components: - - type: Transform - pos: -26.5,12.5 - parent: 1668 - - uid: 3399 - components: - - type: Transform - pos: -25.5,12.5 - parent: 1668 - - uid: 3400 - components: - - type: Transform - pos: -15.5,12.5 - parent: 1668 - - uid: 3401 - components: - - type: Transform - pos: -14.5,12.5 - parent: 1668 - - uid: 3402 - components: - - type: Transform - pos: -16.5,12.5 - parent: 1668 - - uid: 3403 - components: - - type: Transform - pos: -16.5,8.5 - parent: 1668 - - uid: 3404 - components: - - type: Transform - pos: -19.5,10.5 - parent: 1668 - - uid: 3405 - components: - - type: Transform - pos: -20.5,10.5 - parent: 1668 - - uid: 3406 - components: - - type: Transform - pos: -20.5,11.5 - parent: 1668 - - uid: 3407 - components: - - type: Transform - pos: -20.5,12.5 - parent: 1668 - - uid: 3409 - components: - - type: Transform - pos: -18.5,8.5 - parent: 1668 - - uid: 3410 - components: - - type: Transform - pos: -24.5,4.5 - parent: 1668 - - uid: 3411 - components: - - type: Transform - pos: -23.5,4.5 - parent: 1668 - - uid: 3417 - components: - - type: Transform - pos: -23.5,2.5 - parent: 1668 - - uid: 3418 - components: - - type: Transform - pos: -18.5,2.5 - parent: 1668 - - uid: 3445 - components: - - type: Transform - pos: -23.5,10.5 - parent: 1668 - - uid: 3446 - components: - - type: Transform - pos: -23.5,11.5 - parent: 1668 - - uid: 3829 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 1668 - - uid: 3830 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 1668 - - uid: 3831 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 1668 - - uid: 3832 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 1668 - - uid: 3833 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 1668 - - uid: 3834 - components: - - type: Transform - pos: -24.5,-3.5 - parent: 1668 - - uid: 3835 - components: - - type: Transform - pos: -17.5,-9.5 - parent: 1668 - - uid: 3836 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 1668 - - uid: 4184 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 1668 - - uid: 4369 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 1668 - - uid: 4370 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 1668 - - uid: 4371 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 1668 - - uid: 4372 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 1668 - - uid: 4373 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 1668 - - uid: 4374 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 1668 - - uid: 4418 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 1668 - - uid: 4419 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 1668 - - uid: 4420 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 1668 - - uid: 4421 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 1668 - - uid: 4422 - components: - - type: Transform - pos: 10.5,-21.5 - parent: 1668 - - uid: 4423 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 1668 - - uid: 4424 - components: - - type: Transform - pos: 10.5,-24.5 - parent: 1668 - - uid: 6728 - components: - - type: Transform - pos: 18.5,10.5 - parent: 1668 -- proto: TelecomServerFilled +- proto: WallPlastitaniumDiagonalIndestructible entities: - - uid: 3121 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 1668 -- proto: Telecrystal5 - entities: - - uid: 3772 - components: - - type: Transform - pos: -10.611931,6.5603595 - parent: 1668 -- proto: TintedWindow - entities: - - uid: 2752 - components: - - type: Transform - pos: 7.5,22.5 - parent: 1668 - - uid: 2760 - components: - - type: Transform - pos: 7.5,21.5 - parent: 1668 -- proto: ToiletGoldenEmpty - entities: - - uid: 5257 + - uid: 375 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,15.5 + pos: 20.5,33.5 parent: 1668 -- proto: ToolboxMechanicalFilled + - uid: 2133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,31.5 + parent: 1668 + - uid: 2184 + components: + - type: Transform + pos: 20.5,31.5 + parent: 1668 + - uid: 2185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,33.5 + parent: 1668 +- proto: WallPlastitaniumIndestructible entities: - - uid: 3900 + - uid: 373 components: - type: Transform - pos: -12.610057,-7.2428913 + pos: 19.5,30.5 parent: 1668 -- proto: ToyFigurineAtmosTech - entities: - - uid: 6889 + - uid: 377 components: - type: Transform - pos: 16.377594,-29.299969 + pos: 21.5,32.5 parent: 1668 -- proto: ToyFigurineBartender - entities: - - uid: 6898 + - uid: 1740 components: - type: Transform - pos: 6.5385118,-24.247501 + pos: 21.5,31.5 parent: 1668 -- proto: ToyFigurineBoxer - entities: - - uid: 793 + - uid: 2134 components: - type: Transform - pos: 2.494053,-15.45146 + pos: 20.5,30.5 parent: 1668 -- proto: ToyFigurineCaptain - entities: - - uid: 1189 + - uid: 2135 components: - type: Transform - pos: -12.035681,6.6117244 + pos: 21.5,30.5 parent: 1668 - - uid: 6985 + - uid: 2173 components: - type: Transform - pos: -19.5,-6.5 + pos: 12.5,35.5 parent: 1668 -- proto: ToyFigurineCargoTech - entities: - - uid: 6897 + - uid: 2177 components: - type: Transform - pos: -5.366757,26.262602 + pos: 13.5,35.5 parent: 1668 -- proto: ToyFigurineChaplain - entities: - - uid: 1186 + - uid: 2178 components: - type: Transform - pos: 2.6200008,16.762861 + pos: 14.5,35.5 parent: 1668 -- proto: ToyFigurineChef - entities: - - uid: 6899 + - uid: 2181 components: - type: Transform - pos: -10.860091,-28.497501 + pos: 17.5,35.5 parent: 1668 -- proto: ToyFigurineChemist - entities: - - uid: 6901 + - uid: 2187 components: - type: Transform - pos: 3.7089076,-9.834605 + pos: 15.5,35.5 parent: 1668 -- proto: ToyFigurineChiefEngineer - entities: - - uid: 6892 + - uid: 2188 components: - type: Transform - pos: 27.221512,-23.216656 + pos: 16.5,35.5 parent: 1668 - - uid: 6982 + - uid: 2190 components: - type: Transform - pos: -21.5,-7.5 + pos: 17.5,29.5 parent: 1668 -- proto: ToyFigurineChiefMedicalOfficer - entities: - - uid: 6900 + - uid: 2191 components: - type: Transform - pos: 13.343676,-12.106804 + pos: 17.5,30.5 parent: 1668 - - uid: 6980 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 1668 -- proto: ToyFigurineClown - entities: - - uid: 6907 - components: - - type: Transform - pos: -8.574588,-33.40033 - parent: 1668 -- proto: ToyFigurineDetective - entities: - - uid: 6508 - components: - - type: Transform - pos: 4.5357866,22.481915 - parent: 1668 -- proto: ToyFigurineEngineer - entities: - - uid: 6891 - components: - - type: Transform - pos: 26.955887,-23.01353 - parent: 1668 -- proto: ToyFigurineFootsoldier - entities: - - uid: 6510 - components: - - type: Transform - pos: 3.5129395,25.168112 - parent: 1668 -- proto: ToyFigurineGreytider - entities: - - uid: 2142 - components: - - type: Transform - pos: -1.5147417,19.684673 - parent: 1668 - - uid: 6509 - components: - - type: Transform - pos: 16.351696,22.083393 - parent: 1668 -- proto: ToyFigurineHamlet - entities: - - uid: 6503 - components: - - type: Transform - pos: -9.969621,-28.458797 - parent: 1668 -- proto: ToyFigurineHeadOfPersonnel - entities: - - uid: 6500 - components: - - type: Transform - pos: 2.714695,-2.0789247 - parent: 1668 - - uid: 6981 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 1668 -- proto: ToyFigurineHeadOfSecurity - entities: - - uid: 592 - components: - - type: Transform - pos: 8.675076,17.818161 - parent: 1668 - - uid: 6983 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 1668 -- proto: ToyFigurineJanitor - entities: - - uid: 6905 - components: - - type: Transform - pos: -18.176952,-31.706894 - parent: 1668 -- proto: ToyFigurineLawyer - entities: - - uid: 6904 - components: - - type: Transform - pos: 19.429096,21.772528 - parent: 1668 -- proto: ToyFigurineLibrarian - entities: - - uid: 6903 - components: - - type: Transform - pos: 18.65788,12.674046 - parent: 1668 -- proto: ToyFigurineMedicalDoctor - entities: - - uid: 6902 - components: - - type: Transform - pos: 9.723116,-4.147105 - parent: 1668 -- proto: ToyFigurineMime - entities: - - uid: 6908 - components: - - type: Transform - pos: 9.395194,-30.337831 - parent: 1668 -- proto: ToyFigurineMusician - entities: - - uid: 6499 - components: - - type: Transform - pos: 0.78786826,-28.113647 - parent: 1668 -- proto: ToyFigurineNukie - entities: - - uid: 6512 - components: - - type: Transform - pos: 3.1101613,28.112556 - parent: 1668 -- proto: ToyFigurineNukieCommander - entities: - - uid: 6511 - components: - - type: Transform - pos: 2.8740501,28.668112 - parent: 1668 -- proto: ToyFigurineNukieElite - entities: - - uid: 6507 - components: - - type: Transform - pos: 2.3733406,28.503387 - parent: 1668 -- proto: ToyFigurineParamedic - entities: - - uid: 3427 - components: - - type: Transform - pos: 10.656263,-7.212401 - parent: 1668 -- proto: ToyFigurinePassenger - entities: - - uid: 3428 - components: - - type: Transform - pos: 21.387323,5.715851 - parent: 1668 -- proto: ToyFigurineQuartermaster - entities: - - uid: 6896 - components: - - type: Transform - pos: -15.016072,14.885906 - parent: 1668 - - uid: 6979 - components: - - type: Transform - pos: -20.5,-5.5 - parent: 1668 -- proto: ToyFigurineRatKing - entities: - - uid: 6906 - components: - - type: Transform - pos: 18.512383,13.407988 - parent: 1668 -- proto: ToyFigurineResearchDirector - entities: - - uid: 3429 - components: - - type: Transform - pos: -32.494865,6.5819006 - parent: 1668 - - uid: 6984 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 1668 -- proto: ToyFigurineSalvage - entities: - - uid: 6895 - components: - - type: Transform - pos: -5.514065,26.593782 - parent: 1668 -- proto: ToyFigurineSecurity - entities: - - uid: 6488 - components: - - type: Transform - pos: 10.024659,25.7943 - parent: 1668 - - uid: 6893 - components: - - type: Transform - pos: 27.445951,-11.38564 - parent: 1668 -- proto: ToyFigurineThief - entities: - - uid: 6513 - components: - - type: Transform - pos: 15.358348,28.515333 - parent: 1668 -- proto: ToyFigurineWarden - entities: - - uid: 6894 - components: - - type: Transform - pos: 4.3459373,19.764877 - parent: 1668 -- proto: ToyFigurineWizard - entities: - - uid: 6514 - components: - - type: Transform - pos: 16.312458,25.32646 - parent: 1668 -- proto: ToyOwlman - entities: - - uid: 3464 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 1668 -- proto: ToyRubberDuck - entities: - - uid: 3423 - components: - - type: Transform - pos: -20.47715,15.513819 - parent: 1668 -- proto: TwoWayLever - entities: - - uid: 1588 - components: - - type: Transform - pos: -12.5,23.5 - parent: 1668 - - type: TwoWayLever - nextSignalLeft: True - - type: DeviceLinkSource - linkedPorts: - 1576: - - Left: Forward - - Right: Reverse - - Middle: Off - 1577: - - Left: Forward - - Right: Reverse - - Middle: Off - 1578: - - Left: Forward - - Right: Reverse - - Middle: Off - 1579: - - Left: Forward - - Right: Reverse - - Middle: Off - 1580: - - Left: Forward - - Right: Reverse - - Middle: Off - 1581: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 1589 - components: - - type: Transform - pos: -12.5,29.5 - parent: 1668 - - type: TwoWayLever - nextSignalLeft: True - - type: DeviceLinkSource - linkedPorts: - 1582: - - Left: Forward - - Right: Reverse - - Middle: Off - 1583: - - Left: Forward - - Right: Reverse - - Middle: Off - 1584: - - Left: Forward - - Right: Reverse - - Middle: Off - 1585: - - Left: Forward - - Right: Reverse - - Middle: Off - 1586: - - Left: Forward - - Right: Reverse - - Middle: Off - 1587: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 5906 - components: - - type: Transform - pos: -18.5,-32.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 5902: - - Left: Forward - - Right: Reverse - - Middle: Off - 5903: - - Left: Forward - - Right: Reverse - - Middle: Off - 5904: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 5907 - components: - - type: Transform - pos: -18.5,-31.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 5908: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: VendingMachineAmmo - entities: - - uid: 2821 - components: - - type: Transform - pos: 8.5,27.5 - parent: 1668 -- proto: VendingMachineBooze - entities: - - uid: 3408 - components: - - type: Transform - pos: -20.5,8.5 - parent: 1668 - - uid: 4415 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 1668 - - uid: 4416 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 1668 -- proto: VendingMachineCargoDrobe - entities: - - uid: 2209 - components: - - type: Transform - pos: -5.5,31.5 - parent: 1668 -- proto: VendingMachineCart - entities: - - uid: 764 - components: - - type: Transform - pos: -25.5,-9.5 - parent: 1668 -- proto: VendingMachineCentDrobe - entities: - - uid: 649 - components: - - type: Transform - pos: 2.5,1.5 - parent: 1668 - - uid: 2444 - components: - - type: Transform - pos: -14.5,10.5 - parent: 1668 -- proto: VendingMachineChang - entities: - - uid: 1406 - components: - - type: Transform - pos: -2.5,1.5 - parent: 1668 - - uid: 2445 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 1668 - - uid: 6573 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 1668 -- proto: VendingMachineChefvend - entities: - - uid: 4262 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 1668 -- proto: VendingMachineChemicals - entities: - - uid: 644 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 1668 -- proto: VendingMachineCigs - entities: - - uid: 2439 - components: - - type: Transform - pos: 29.5,10.5 - parent: 1668 - - uid: 6574 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 1668 -- proto: VendingMachineClothing - entities: - - uid: 2738 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 1668 - - uid: 6150 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 1668 -- proto: VendingMachineCoffee - entities: - - uid: 2438 - components: - - type: Transform - pos: 27.5,10.5 - parent: 1668 - - uid: 5463 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 1668 - - uid: 6591 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 1668 -- proto: VendingMachineCola - entities: - uid: 2192 components: - type: Transform - pos: -0.5,13.5 + pos: 17.5,31.5 parent: 1668 - - uid: 4403 + - uid: 2193 components: - type: Transform - pos: 6.5,-15.5 + pos: 17.5,32.5 parent: 1668 -- proto: VendingMachineColaBlack - entities: - - uid: 6729 + - uid: 2194 components: - type: Transform - pos: 1.5,-13.5 + pos: 9.5,29.5 parent: 1668 -- proto: VendingMachineCondiments - entities: - - uid: 6626 + - uid: 2195 components: - type: Transform - pos: 1.5,-25.5 + pos: 17.5,33.5 parent: 1668 -- proto: VendingMachineDinnerware - entities: - - uid: 4578 + - uid: 2196 components: - type: Transform - pos: -11.5,-21.5 + pos: 9.5,31.5 parent: 1668 -- proto: VendingMachineDiscount - entities: - - uid: 3185 + - uid: 2197 components: - type: Transform - pos: 9.5,10.5 + pos: 9.5,30.5 parent: 1668 - - uid: 6651 + - uid: 2198 components: - type: Transform - pos: -7.5,-15.5 + pos: 9.5,33.5 parent: 1668 -- proto: VendingMachineDonut - entities: - - uid: 3186 + - uid: 2199 components: - type: Transform - pos: 11.5,10.5 + pos: 9.5,32.5 parent: 1668 -- proto: VendingMachineEngivend - entities: - - uid: 5250 + - uid: 2203 components: - type: Transform - pos: 23.5,-20.5 + pos: 17.5,34.5 parent: 1668 -- proto: VendingMachineGames - entities: - - uid: 6608 + - uid: 2237 components: - type: Transform - pos: 16.5,10.5 + pos: 11.5,35.5 parent: 1668 -- proto: VendingMachineLawDrobe - entities: - - uid: 2489 + - uid: 2238 components: - type: Transform - pos: 18.5,23.5 + pos: 10.5,35.5 parent: 1668 -- proto: VendingMachineMedical - entities: - - uid: 617 + - uid: 2239 components: - type: Transform - pos: 15.5,-5.5 + pos: 9.5,35.5 parent: 1668 - - uid: 6601 + - uid: 2240 components: - type: Transform - pos: 9.5,-12.5 + pos: 9.5,34.5 parent: 1668 -- proto: VendingMachinePwrGame - entities: - - uid: 6634 + - uid: 2528 components: - type: Transform - pos: -2.5,-15.5 + pos: 21.5,33.5 parent: 1668 -- proto: VendingMachineSalvage - entities: - - uid: 6938 + - uid: 2534 components: - type: Transform - pos: -8.5,31.5 + pos: 18.5,30.5 parent: 1668 -- proto: VendingMachineSec - entities: - - uid: 2820 + - uid: 2559 components: - type: Transform - pos: 9.5,27.5 + pos: 20.5,34.5 parent: 1668 - - uid: 3259 + - uid: 2560 components: - type: Transform - pos: 8.5,21.5 + pos: 18.5,34.5 parent: 1668 - - uid: 5457 + - uid: 2562 components: - type: Transform - pos: 28.5,-10.5 + pos: 21.5,34.5 parent: 1668 -- proto: VendingMachineSnack - entities: - - uid: 4166 + - uid: 2570 components: - type: Transform - pos: -29.5,3.5 - parent: 1668 - - uid: 4401 - components: - - type: Transform - pos: 7.5,-15.5 - parent: 1668 -- proto: VendingMachineSnackOrange - entities: - - uid: 6726 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 1668 -- proto: VendingMachineSnackTeal - entities: - - uid: 6727 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1668 -- proto: VendingMachineSoda - entities: - - uid: 6648 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 1668 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 6556 - components: - - type: Transform - pos: -2.5,-45.5 - parent: 1668 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 2045 - components: - - type: Transform - pos: -3.5,23.5 - parent: 1668 - - uid: 4286 - components: - - type: Transform - pos: 10.5,29.5 - parent: 1668 - - uid: 6555 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 1668 -- proto: VendingMachineTheater - entities: - - uid: 2448 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 1668 -- proto: VendingMachineWinter - entities: - - uid: 2443 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 1668 -- proto: VendingMachineYouTool - entities: - - uid: 5251 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 1668 -- proto: WallmountTelescreen - entities: - - uid: 3449 - components: - - type: Transform - pos: -18.5,7.5 - parent: 1668 -- proto: WallmountTelevision - entities: - - uid: 3452 - components: - - type: Transform - pos: -23.5,1.5 + pos: 19.5,34.5 parent: 1668 - proto: WallRiveted entities: - - uid: 1 - components: - - type: Transform - pos: 10.5,2.5 - parent: 1668 - - uid: 2 - components: - - type: Transform - pos: 9.5,2.5 - parent: 1668 - - uid: 3 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1668 - uid: 4 components: - type: Transform pos: 8.5,2.5 parent: 1668 - - uid: 5 - components: - - type: Transform - pos: 7.5,2.5 - parent: 1668 - uid: 6 components: - type: Transform - pos: 6.5,2.5 + pos: -8.5,-5.5 parent: 1668 - uid: 7 components: - type: Transform - pos: 6.5,1.5 + pos: -8.5,6.5 parent: 1668 - uid: 8 components: - type: Transform - pos: 10.5,-3.5 + pos: 18.5,5.5 parent: 1668 - uid: 9 components: - type: Transform - pos: 9.5,-3.5 - parent: 1668 - - uid: 10 - components: - - type: Transform - pos: 8.5,-2.5 + pos: 11.5,2.5 parent: 1668 - uid: 11 components: - type: Transform pos: 8.5,-3.5 parent: 1668 - - uid: 12 + - uid: 17 components: - type: Transform - pos: 7.5,-3.5 + pos: -4.5,6.5 parent: 1668 - - uid: 13 + - uid: 19 components: - type: Transform - pos: 6.5,-3.5 + pos: 7.5,5.5 parent: 1668 - - uid: 14 + - uid: 23 components: - type: Transform - pos: 6.5,-2.5 + pos: 7.5,-7.5 + parent: 1668 + - uid: 24 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1668 + - uid: 26 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1668 + - uid: 28 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1668 + - uid: 48 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 1668 + - uid: 53 + components: + - type: Transform + pos: 33.5,-0.5 parent: 1668 - uid: 70 components: @@ -36290,16 +52184,6 @@ entities: - type: Transform pos: -4.5,-3.5 parent: 1668 - - uid: 72 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 1668 - - uid: 73 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 1668 - uid: 74 components: - type: Transform @@ -36310,75 +52194,100 @@ entities: - type: Transform pos: -2.5,2.5 parent: 1668 - - uid: 78 + - uid: 77 components: - type: Transform - pos: 5.5,7.5 + pos: 7.5,6.5 parent: 1668 - - uid: 86 + - uid: 80 components: - type: Transform - pos: 3.5,5.5 + pos: -1.5,-3.5 + parent: 1668 + - uid: 83 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1668 + - uid: 84 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1668 + - uid: 85 + components: + - type: Transform + pos: -6.5,-7.5 parent: 1668 - uid: 87 components: - type: Transform - pos: 3.5,7.5 + pos: 11.5,-3.5 parent: 1668 - uid: 88 components: - type: Transform - pos: 2.5,7.5 - parent: 1668 - - uid: 89 - components: - - type: Transform - pos: 1.5,7.5 - parent: 1668 - - uid: 90 - components: - - type: Transform - pos: 1.5,6.5 + pos: 24.5,8.5 parent: 1668 - uid: 91 components: - type: Transform - pos: 1.5,5.5 + pos: 3.5,6.5 parent: 1668 - - uid: 96 + - uid: 95 components: - type: Transform - pos: 5.5,5.5 + pos: -8.5,-3.5 parent: 1668 - - uid: 97 + - uid: 99 components: - type: Transform - pos: 8.5,6.5 - parent: 1668 - - uid: 100 - components: - - type: Transform - pos: 6.5,5.5 + pos: 2.5,6.5 parent: 1668 - uid: 101 components: - type: Transform - pos: 6.5,4.5 + pos: 3.5,-7.5 parent: 1668 - uid: 102 components: - type: Transform - pos: 8.5,4.5 + pos: 4.5,-7.5 + parent: 1668 + - uid: 103 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1668 + - uid: 107 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1668 + - uid: 109 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1668 + - uid: 110 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1668 + - uid: 111 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1668 + - uid: 112 + components: + - type: Transform + pos: -7.5,-7.5 parent: 1668 - uid: 113 components: - type: Transform - pos: 16.5,1.5 - parent: 1668 - - uid: 114 - components: - - type: Transform - pos: 16.5,2.5 + pos: -3.5,32.5 parent: 1668 - uid: 115 components: @@ -36393,12 +52302,12 @@ entities: - uid: 117 components: - type: Transform - pos: 18.5,1.5 + pos: -7.5,6.5 parent: 1668 - uid: 118 components: - type: Transform - pos: 18.5,-2.5 + pos: -8.5,5.5 parent: 1668 - uid: 119 components: @@ -36413,213 +52322,65 @@ entities: - uid: 121 components: - type: Transform - pos: 16.5,-2.5 + pos: 2.5,-7.5 parent: 1668 - - uid: 122 + - uid: 124 components: - type: Transform - pos: 16.5,-3.5 + pos: -8.5,4.5 parent: 1668 - - uid: 137 + - uid: 125 components: - type: Transform - pos: 8.5,-6.5 + rot: 3.141592653589793 rad + pos: 5.5,21.5 parent: 1668 - - uid: 138 + - uid: 127 components: - type: Transform - pos: 7.5,-6.5 + rot: 1.5707963267948966 rad + pos: 21.5,13.5 parent: 1668 - - uid: 139 + - uid: 129 components: - type: Transform - pos: 6.5,-6.5 + pos: 33.5,0.5 parent: 1668 - - uid: 140 + - uid: 168 components: - type: Transform - pos: 5.5,-6.5 + pos: 0.5,-3.5 parent: 1668 - - uid: 141 + - uid: 172 components: - type: Transform - pos: 3.5,-6.5 - parent: 1668 - - uid: 142 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 1668 - - uid: 143 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 1668 - - uid: 144 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 1668 - - uid: 145 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 1668 - - uid: 146 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 1668 - - uid: 147 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 1668 - - uid: 174 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 1668 - - uid: 175 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 1668 - - uid: 176 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 1668 - - uid: 177 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 1668 - - uid: 178 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 1668 - - uid: 179 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 1668 - - uid: 180 - components: - - type: Transform - pos: 16.5,-7.5 - parent: 1668 - - uid: 181 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 1668 - - uid: 182 - components: - - type: Transform - pos: 16.5,-10.5 + pos: 7.5,3.5 parent: 1668 - uid: 184 components: - type: Transform pos: 18.5,-7.5 parent: 1668 - - uid: 185 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 1668 - uid: 187 components: - type: Transform pos: 18.5,-4.5 parent: 1668 - - uid: 188 + - uid: 193 components: - type: Transform - pos: 18.5,-5.5 + pos: 28.5,8.5 parent: 1668 - - uid: 209 + - uid: 201 components: - type: Transform - pos: 18.5,-8.5 - parent: 1668 - - uid: 210 - components: - - type: Transform - pos: 18.5,-10.5 - parent: 1668 - - uid: 211 - components: - - type: Transform - pos: 18.5,-9.5 - parent: 1668 - - uid: 213 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 1668 - - uid: 229 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 1668 - - uid: 230 - components: - - type: Transform - pos: 8.5,-13.5 - parent: 1668 - - uid: 231 - components: - - type: Transform - pos: 8.5,-12.5 - parent: 1668 - - uid: 232 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 1668 - - uid: 233 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 1668 - - uid: 234 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 1668 - - uid: 235 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 1668 - - uid: 236 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 1668 - - uid: 237 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 1668 - - uid: 248 - components: - - type: Transform - pos: 16.5,4.5 + pos: 2.5,-8.5 parent: 1668 - uid: 249 components: - type: Transform pos: 18.5,3.5 parent: 1668 - - uid: 250 - components: - - type: Transform - pos: 18.5,4.5 - parent: 1668 - uid: 251 components: - type: Transform @@ -36635,166 +52396,6 @@ entities: - type: Transform pos: 18.5,8.5 parent: 1668 - - uid: 256 - components: - - type: Transform - pos: 16.5,7.5 - parent: 1668 - - uid: 257 - components: - - type: Transform - pos: 16.5,6.5 - parent: 1668 - - uid: 258 - components: - - type: Transform - pos: 15.5,7.5 - parent: 1668 - - uid: 273 - components: - - type: Transform - pos: 8.5,7.5 - parent: 1668 - - uid: 274 - components: - - type: Transform - pos: 8.5,9.5 - parent: 1668 - - uid: 276 - components: - - type: Transform - pos: 12.5,9.5 - parent: 1668 - - uid: 277 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1668 - - uid: 293 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1668 - - uid: 294 - components: - - type: Transform - pos: 4.5,9.5 - parent: 1668 - - uid: 295 - components: - - type: Transform - pos: 5.5,9.5 - parent: 1668 - - uid: 296 - components: - - type: Transform - pos: 5.5,8.5 - parent: 1668 - - uid: 300 - components: - - type: Transform - pos: 15.5,9.5 - parent: 1668 - - uid: 315 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 1668 - - uid: 316 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 1668 - - uid: 317 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 1668 - - uid: 318 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 1668 - - uid: 319 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 1668 - - uid: 320 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 1668 - - uid: 321 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 1668 - - uid: 322 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 1668 - - uid: 323 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 1668 - - uid: 324 - components: - - type: Transform - pos: -6.5,-8.5 - parent: 1668 - - uid: 325 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 1668 - - uid: 326 - components: - - type: Transform - pos: -8.5,-8.5 - parent: 1668 - - uid: 328 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 1668 - - uid: 329 - components: - - type: Transform - pos: -8.5,-3.5 - parent: 1668 - - uid: 330 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 1668 - - uid: 331 - components: - - type: Transform - pos: -9.5,-4.5 - parent: 1668 - - uid: 332 - components: - - type: Transform - pos: -9.5,-5.5 - parent: 1668 - - uid: 333 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 1668 - - uid: 334 - components: - - type: Transform - pos: -9.5,-7.5 - parent: 1668 - - uid: 335 - components: - - type: Transform - pos: -9.5,-8.5 - parent: 1668 - uid: 346 components: - type: Transform @@ -36840,30 +52441,10 @@ entities: - type: Transform pos: 18.5,9.5 parent: 1668 - - uid: 363 - components: - - type: Transform - pos: 19.5,9.5 - parent: 1668 - uid: 364 components: - type: Transform - pos: 20.5,9.5 - parent: 1668 - - uid: 365 - components: - - type: Transform - pos: 21.5,9.5 - parent: 1668 - - uid: 366 - components: - - type: Transform - pos: 22.5,9.5 - parent: 1668 - - uid: 367 - components: - - type: Transform - pos: 23.5,9.5 + pos: 32.5,-14.5 parent: 1668 - uid: 368 components: @@ -36890,31 +52471,6 @@ entities: - type: Transform pos: 28.5,9.5 parent: 1668 - - uid: 373 - components: - - type: Transform - pos: 29.5,9.5 - parent: 1668 - - uid: 374 - components: - - type: Transform - pos: 30.5,9.5 - parent: 1668 - - uid: 375 - components: - - type: Transform - pos: 31.5,9.5 - parent: 1668 - - uid: 376 - components: - - type: Transform - pos: 32.5,9.5 - parent: 1668 - - uid: 377 - components: - - type: Transform - pos: 33.5,9.5 - parent: 1668 - uid: 378 components: - type: Transform @@ -36928,12 +52484,8 @@ entities: - uid: 380 components: - type: Transform - pos: 35.5,8.5 - parent: 1668 - - uid: 381 - components: - - type: Transform - pos: 35.5,7.5 + rot: 3.141592653589793 rad + pos: 5.5,18.5 parent: 1668 - uid: 382 components: @@ -36945,41 +52497,11 @@ entities: - type: Transform pos: 34.5,7.5 parent: 1668 - - uid: 384 - components: - - type: Transform - pos: 28.5,8.5 - parent: 1668 - - uid: 385 - components: - - type: Transform - pos: 24.5,8.5 - parent: 1668 - uid: 386 components: - type: Transform pos: 35.5,-7.5 parent: 1668 - - uid: 387 - components: - - type: Transform - pos: 35.5,-8.5 - parent: 1668 - - uid: 388 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 1668 - - uid: 389 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 1668 - - uid: 390 - components: - - type: Transform - pos: 34.5,-8.5 - parent: 1668 - uid: 391 components: - type: Transform @@ -36990,70 +52512,27 @@ entities: - type: Transform pos: 33.5,-7.5 parent: 1668 - - uid: 394 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 1668 - uid: 395 components: - type: Transform - pos: 30.5,-7.5 - parent: 1668 - - uid: 397 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 1668 - - uid: 398 - components: - - type: Transform - pos: 23.5,-9.5 - parent: 1668 - - uid: 399 - components: - - type: Transform - pos: 30.5,-9.5 + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 parent: 1668 - uid: 400 components: - type: Transform pos: 28.5,-7.5 parent: 1668 - - uid: 402 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 1668 - - uid: 403 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 1668 - - uid: 404 - components: - - type: Transform - pos: 31.5,-9.5 - parent: 1668 - - uid: 405 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 1668 - uid: 406 components: - type: Transform pos: 19.5,-7.5 parent: 1668 - - uid: 407 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 1668 - uid: 409 components: - type: Transform - pos: 22.5,-7.5 + rot: 1.5707963267948966 rad + pos: 24.5,11.5 parent: 1668 - uid: 410 components: @@ -37065,4796 +52544,6185 @@ entities: - type: Transform pos: 24.5,-7.5 parent: 1668 - - uid: 412 + - uid: 472 components: - type: Transform - pos: 22.5,-9.5 + pos: 7.5,2.5 parent: 1668 - - uid: 413 - components: - - type: Transform - pos: 21.5,-9.5 - parent: 1668 - - uid: 414 - components: - - type: Transform - pos: 20.5,-9.5 - parent: 1668 - - uid: 415 - components: - - type: Transform - pos: 19.5,-9.5 - parent: 1668 - - uid: 416 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 1668 - - uid: 417 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 1668 - - uid: 418 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 1668 - - uid: 419 - components: - - type: Transform - pos: 29.5,-12.5 - parent: 1668 - - uid: 420 - components: - - type: Transform - pos: 28.5,-12.5 - parent: 1668 - - uid: 421 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 1668 - - uid: 422 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 1668 - - uid: 423 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 1668 - - uid: 424 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 1668 - - uid: 425 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 1668 - - uid: 426 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 1668 - - uid: 427 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 1668 - - uid: 428 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 1668 - - uid: 429 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 1668 - - uid: 430 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 1668 - - uid: 431 - components: - - type: Transform - pos: 35.5,-1.5 - parent: 1668 - - uid: 432 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 1668 - - uid: 433 - components: - - type: Transform - pos: 35.5,0.5 - parent: 1668 - - uid: 468 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 1668 - - uid: 470 - components: - - type: Transform - pos: 33.5,0.5 - parent: 1668 - - uid: 658 + - uid: 501 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-2.5 + pos: 24.5,10.5 parent: 1668 - - uid: 659 + - uid: 502 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-2.5 + pos: 18.5,13.5 parent: 1668 - - uid: 660 + - uid: 503 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: 19.5,13.5 parent: 1668 - - uid: 661 + - uid: 516 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 1668 + - uid: 579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1668 + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1668 + - uid: 601 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,2.5 + pos: 13.5,-14.5 parent: 1668 - - uid: 662 + - uid: 606 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,2.5 + pos: 11.5,-14.5 parent: 1668 - - uid: 663 + - uid: 633 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1668 + - uid: 634 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1668 + - uid: 635 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1668 + - uid: 636 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1668 + - uid: 637 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1668 + - uid: 638 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1668 + - uid: 639 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1668 + - uid: 641 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 1668 + - uid: 642 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1668 + - uid: 643 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1668 + - uid: 644 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1668 + - uid: 645 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1668 + - uid: 647 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1668 + - uid: 648 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1668 + - uid: 701 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,2.5 + pos: 14.5,-14.5 parent: 1668 - - uid: 664 + - uid: 702 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,1.5 + pos: 15.5,-14.5 parent: 1668 - - uid: 665 + - uid: 703 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,3.5 + pos: 16.5,-14.5 parent: 1668 + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 1668 + - uid: 705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 1668 + - uid: 706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 1668 + - uid: 707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 1668 + - uid: 708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 1668 + - uid: 709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 1668 + - uid: 710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 1668 + - uid: 711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 1668 + - uid: 713 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 1668 + - uid: 714 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1668 + - uid: 716 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 1668 + - uid: 717 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 1668 + - uid: 718 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 1668 + - uid: 758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 1668 + - uid: 940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 1668 + - uid: 942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1668 + - uid: 943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 1668 + - uid: 944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 1668 + - uid: 945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 1668 + - uid: 948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 1668 + - uid: 952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 1668 + - uid: 953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 1668 + - uid: 954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 1668 + - uid: 972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 1668 + - uid: 973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 1668 + - uid: 977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 1668 + - uid: 978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 1668 + - uid: 979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1668 + - uid: 980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 1668 + - uid: 1051 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 1668 + - uid: 1052 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1668 + - uid: 1053 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 1668 + - uid: 1055 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 1668 + - uid: 1056 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 1668 + - uid: 1057 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 1668 + - uid: 1058 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 1668 + - uid: 1059 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 1668 + - uid: 1060 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1668 + - uid: 1061 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1668 + - uid: 1062 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1668 + - uid: 1063 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 1668 + - uid: 1065 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 1668 + - uid: 1066 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 1668 + - uid: 1067 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 1668 + - uid: 1070 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 1668 + - uid: 1100 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 1668 + - uid: 1103 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 1668 + - uid: 1104 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 1668 + - uid: 1105 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 1668 + - uid: 1107 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 1668 + - uid: 1112 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 1668 + - uid: 1113 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 1668 + - uid: 1114 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 1668 + - uid: 1115 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1668 + - uid: 1116 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 1668 + - uid: 1117 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 1668 + - uid: 1118 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 1668 + - uid: 1119 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1668 + - uid: 1120 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 1668 + - uid: 1154 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 1668 + - uid: 1159 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 1668 + - uid: 1160 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 1668 + - uid: 1161 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 1668 + - uid: 1163 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 1668 + - uid: 1192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-28.5 + parent: 1668 + - uid: 1196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-28.5 + parent: 1668 + - uid: 1197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-28.5 + parent: 1668 + - uid: 1200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-28.5 + parent: 1668 + - uid: 1201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-28.5 + parent: 1668 + - uid: 1203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-28.5 + parent: 1668 + - uid: 1206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-28.5 + parent: 1668 + - uid: 1207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-28.5 + parent: 1668 + - uid: 1208 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 1668 + - uid: 1216 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 1668 + - uid: 1218 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 1668 + - uid: 1219 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 1668 + - uid: 1221 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 1668 + - uid: 1222 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 1668 + - uid: 1223 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 1668 + - uid: 1224 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 1668 + - uid: 1244 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 1668 + - uid: 1276 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 1668 + - uid: 1277 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 1668 + - uid: 1278 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 1668 + - uid: 1522 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1668 + - uid: 1523 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1668 + - uid: 1532 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1668 + - uid: 1533 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1668 + - uid: 1540 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1668 + - uid: 1541 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1668 + - uid: 1546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 1668 + - uid: 1547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 1668 + - uid: 1548 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1668 + - uid: 1563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 1668 + - uid: 1752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,27.5 + parent: 1668 + - uid: 1757 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1668 + - uid: 1759 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1668 + - uid: 1762 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1668 + - uid: 1763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,26.5 + parent: 1668 + - uid: 1764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,25.5 + parent: 1668 + - uid: 1765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 1668 + - uid: 1772 + components: + - type: Transform + pos: 35.5,13.5 + parent: 1668 + - uid: 1773 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1668 + - uid: 1774 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1668 + - uid: 1775 + components: + - type: Transform + pos: 35.5,16.5 + parent: 1668 + - uid: 1776 + components: + - type: Transform + pos: 35.5,18.5 + parent: 1668 + - uid: 1777 + components: + - type: Transform + pos: 35.5,19.5 + parent: 1668 + - uid: 1778 + components: + - type: Transform + pos: 35.5,20.5 + parent: 1668 + - uid: 1779 + components: + - type: Transform + pos: 35.5,17.5 + parent: 1668 + - uid: 1867 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1668 + - uid: 1868 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1668 + - uid: 1876 + components: + - type: Transform + pos: -22.5,18.5 + parent: 1668 + - uid: 1877 + components: + - type: Transform + pos: -20.5,18.5 + parent: 1668 + - uid: 1880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,24.5 + parent: 1668 + - uid: 1881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 1668 + - uid: 1882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 1668 + - uid: 1883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,20.5 + parent: 1668 + - uid: 1884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 1668 + - uid: 1885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,18.5 + parent: 1668 + - uid: 1886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,21.5 + parent: 1668 + - uid: 1887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,22.5 + parent: 1668 + - uid: 1888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,23.5 + parent: 1668 + - uid: 1889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,24.5 + parent: 1668 + - uid: 1890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,25.5 + parent: 1668 + - uid: 1891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,26.5 + parent: 1668 + - uid: 1892 + components: + - type: Transform + pos: 27.5,28.5 + parent: 1668 + - uid: 1893 + components: + - type: Transform + pos: 26.5,28.5 + parent: 1668 + - uid: 1894 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1668 + - uid: 1895 + components: + - type: Transform + pos: 24.5,28.5 + parent: 1668 + - uid: 1896 + components: + - type: Transform + pos: 25.5,28.5 + parent: 1668 + - uid: 1897 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1668 + - uid: 1898 + components: + - type: Transform + pos: 23.5,28.5 + parent: 1668 + - uid: 1899 + components: + - type: Transform + pos: 20.5,28.5 + parent: 1668 + - uid: 1900 + components: + - type: Transform + pos: 21.5,28.5 + parent: 1668 + - uid: 1902 + components: + - type: Transform + pos: 29.5,28.5 + parent: 1668 + - uid: 1903 + components: + - type: Transform + pos: 34.5,28.5 + parent: 1668 + - uid: 1904 + components: + - type: Transform + pos: 35.5,28.5 + parent: 1668 + - uid: 1905 + components: + - type: Transform + pos: 33.5,28.5 + parent: 1668 + - uid: 1906 + components: + - type: Transform + pos: 30.5,28.5 + parent: 1668 + - uid: 1907 + components: + - type: Transform + pos: 32.5,28.5 + parent: 1668 + - uid: 1908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,27.5 + parent: 1668 + - uid: 1909 + components: + - type: Transform + pos: 28.5,28.5 + parent: 1668 + - uid: 1910 + components: + - type: Transform + pos: 32.5,17.5 + parent: 1668 + - uid: 1926 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1668 + - uid: 1942 + components: + - type: Transform + pos: 20.5,23.5 + parent: 1668 + - uid: 1943 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1668 + - uid: 1948 + components: + - type: Transform + pos: 20.5,17.5 + parent: 1668 + - uid: 1949 + components: + - type: Transform + pos: 20.5,18.5 + parent: 1668 + - uid: 1951 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1668 + - uid: 1952 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1668 + - uid: 1954 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1668 + - uid: 2033 + components: + - type: Transform + pos: 20.5,27.5 + parent: 1668 + - uid: 2034 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1668 + - uid: 2058 + components: + - type: Transform + pos: 34.5,13.5 + parent: 1668 + - uid: 2059 + components: + - type: Transform + pos: 33.5,13.5 + parent: 1668 + - uid: 2060 + components: + - type: Transform + pos: 32.5,13.5 + parent: 1668 + - uid: 2061 + components: + - type: Transform + pos: 31.5,13.5 + parent: 1668 + - uid: 2063 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1668 + - uid: 2064 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1668 + - uid: 2065 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1668 + - uid: 2066 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1668 + - uid: 2123 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1668 + - uid: 2126 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1668 + - uid: 2127 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1668 + - uid: 2128 + components: + - type: Transform + pos: 9.5,23.5 + parent: 1668 + - uid: 2129 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1668 + - uid: 2132 + components: + - type: Transform + pos: 9.5,36.5 + parent: 1668 + - uid: 2142 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1668 + - uid: 2150 + components: + - type: Transform + pos: 12.5,21.5 + parent: 1668 + - uid: 2155 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1668 + - uid: 2167 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1668 + - uid: 2170 + components: + - type: Transform + pos: 9.5,28.5 + parent: 1668 + - uid: 2171 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1668 + - uid: 2174 + components: + - type: Transform + pos: 8.5,36.5 + parent: 1668 + - uid: 2175 + components: + - type: Transform + pos: 10.5,36.5 + parent: 1668 + - uid: 2176 + components: + - type: Transform + pos: 18.5,29.5 + parent: 1668 + - uid: 2180 + components: + - type: Transform + pos: 17.5,36.5 + parent: 1668 + - uid: 2182 + components: + - type: Transform + pos: 16.5,36.5 + parent: 1668 + - uid: 2186 + components: + - type: Transform + pos: 18.5,36.5 + parent: 1668 + - uid: 2204 + components: + - type: Transform + pos: 8.5,35.5 + parent: 1668 + - uid: 2205 + components: + - type: Transform + pos: 8.5,34.5 + parent: 1668 + - uid: 2206 + components: + - type: Transform + pos: 8.5,33.5 + parent: 1668 + - uid: 2207 + components: + - type: Transform + pos: 8.5,32.5 + parent: 1668 + - uid: 2208 + components: + - type: Transform + pos: 8.5,31.5 + parent: 1668 + - uid: 2209 + components: + - type: Transform + pos: 8.5,30.5 + parent: 1668 + - uid: 2210 + components: + - type: Transform + pos: 8.5,29.5 + parent: 1668 + - uid: 2211 + components: + - type: Transform + pos: 8.5,28.5 + parent: 1668 + - uid: 2264 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 1668 + - uid: 2279 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 1668 + - uid: 2280 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 1668 + - uid: 2282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-37.5 + parent: 1668 + - uid: 2283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 1668 + - uid: 2284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-37.5 + parent: 1668 + - uid: 2285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-37.5 + parent: 1668 + - uid: 2286 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 1668 + - uid: 2287 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 1668 + - uid: 2288 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 1668 + - uid: 2289 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 1668 + - uid: 2290 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1668 + - uid: 2291 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 1668 + - uid: 2292 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1668 + - uid: 2293 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 1668 + - uid: 2297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-46.5 + parent: 1668 + - uid: 2299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-46.5 + parent: 1668 + - uid: 2300 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 1668 + - uid: 2301 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 1668 + - uid: 2321 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 1668 + - uid: 2350 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 1668 + - uid: 2378 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 1668 + - uid: 2379 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 1668 + - uid: 2380 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 1668 + - uid: 2382 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 1668 + - uid: 2383 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 1668 + - uid: 2384 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 1668 + - uid: 2385 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 1668 + - uid: 2533 + components: + - type: Transform + pos: 21.5,35.5 + parent: 1668 + - uid: 2542 + components: + - type: Transform + pos: 22.5,32.5 + parent: 1668 + - uid: 2544 + components: + - type: Transform + pos: 22.5,34.5 + parent: 1668 + - uid: 2546 + components: + - type: Transform + pos: 14.5,36.5 + parent: 1668 + - uid: 2549 + components: + - type: Transform + pos: 13.5,36.5 + parent: 1668 + - uid: 2550 + components: + - type: Transform + pos: 15.5,36.5 + parent: 1668 + - uid: 2551 + components: + - type: Transform + pos: 11.5,36.5 + parent: 1668 + - uid: 2552 + components: + - type: Transform + pos: 12.5,36.5 + parent: 1668 + - uid: 2561 + components: + - type: Transform + pos: 22.5,33.5 + parent: 1668 + - uid: 2563 + components: + - type: Transform + pos: 18.5,35.5 + parent: 1668 + - uid: 2565 + components: + - type: Transform + pos: 19.5,29.5 + parent: 1668 + - uid: 2568 + components: + - type: Transform + pos: 19.5,35.5 + parent: 1668 + - uid: 2569 + components: + - type: Transform + pos: 20.5,35.5 + parent: 1668 + - uid: 2574 + components: + - type: Transform + pos: 22.5,35.5 + parent: 1668 + - uid: 2575 + components: + - type: Transform + pos: 21.5,29.5 + parent: 1668 + - uid: 2576 + components: + - type: Transform + pos: 22.5,30.5 + parent: 1668 + - uid: 2578 + components: + - type: Transform + pos: 20.5,29.5 + parent: 1668 + - uid: 2579 + components: + - type: Transform + pos: 22.5,31.5 + parent: 1668 + - uid: 2580 + components: + - type: Transform + pos: 22.5,29.5 + parent: 1668 + - uid: 2582 + components: + - type: Transform + pos: 3.5,33.5 + parent: 1668 + - uid: 2626 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 1668 + - uid: 2627 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 1668 + - uid: 2628 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 1668 + - uid: 2635 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1668 + - uid: 2636 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1668 + - uid: 2637 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1668 + - uid: 2638 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 1668 + - uid: 2639 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1668 + - uid: 2656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,4.5 + parent: 1668 + - uid: 2657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 1668 + - uid: 2658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1668 + - uid: 2659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1668 + - uid: 2680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,2.5 + parent: 1668 + - uid: 2681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1668 + - uid: 2695 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1668 + - uid: 2699 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 1668 + - uid: 2701 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 1668 + - uid: 2716 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1668 + - uid: 2717 + components: + - type: Transform + pos: -18.5,2.5 + parent: 1668 + - uid: 2718 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1668 + - uid: 2719 + components: + - type: Transform + pos: -21.5,2.5 + parent: 1668 + - uid: 2720 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1668 + - uid: 2721 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1668 + - uid: 2722 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1668 + - uid: 2723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,8.5 + parent: 1668 + - uid: 2726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,2.5 + parent: 1668 + - uid: 2728 + components: + - type: Transform + pos: -24.5,8.5 + parent: 1668 + - uid: 2729 + components: + - type: Transform + pos: -23.5,8.5 + parent: 1668 + - uid: 2732 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1668 + - uid: 2733 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1668 + - uid: 2734 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1668 + - uid: 2735 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1668 + - uid: 2738 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1668 + - uid: 2739 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1668 + - uid: 2740 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1668 + - uid: 2741 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1668 + - uid: 2742 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1668 + - uid: 2743 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1668 + - uid: 2744 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1668 + - uid: 2745 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1668 + - uid: 2746 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1668 + - uid: 2747 + components: + - type: Transform + pos: -24.5,11.5 + parent: 1668 + - uid: 2748 + components: + - type: Transform + pos: -24.5,14.5 + parent: 1668 + - uid: 2749 + components: + - type: Transform + pos: -23.5,14.5 + parent: 1668 + - uid: 2750 + components: + - type: Transform + pos: -22.5,14.5 + parent: 1668 + - uid: 2751 + components: + - type: Transform + pos: -21.5,14.5 + parent: 1668 + - uid: 2752 + components: + - type: Transform + pos: -20.5,14.5 + parent: 1668 + - uid: 2753 + components: + - type: Transform + pos: -19.5,14.5 + parent: 1668 + - uid: 2756 + components: + - type: Transform + pos: -19.5,17.5 + parent: 1668 + - uid: 2757 + components: + - type: Transform + pos: -18.5,17.5 + parent: 1668 + - uid: 2758 + components: + - type: Transform + pos: -17.5,17.5 + parent: 1668 + - uid: 2759 + components: + - type: Transform + pos: -16.5,17.5 + parent: 1668 + - uid: 2760 + components: + - type: Transform + pos: -16.5,16.5 + parent: 1668 + - uid: 2761 + components: + - type: Transform + pos: -16.5,15.5 + parent: 1668 + - uid: 2762 + components: + - type: Transform + pos: -16.5,14.5 + parent: 1668 + - uid: 2763 + components: + - type: Transform + pos: -17.5,14.5 + parent: 1668 + - uid: 2764 + components: + - type: Transform + pos: -15.5,14.5 + parent: 1668 + - uid: 2765 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1668 + - uid: 2766 + components: + - type: Transform + pos: -14.5,13.5 + parent: 1668 + - uid: 2767 + components: + - type: Transform + pos: -14.5,11.5 + parent: 1668 + - uid: 2768 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1668 + - uid: 2769 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1668 + - uid: 2770 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1668 + - uid: 2771 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1668 + - uid: 2772 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1668 + - uid: 2773 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1668 + - uid: 2774 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1668 + - uid: 2776 + components: + - type: Transform + pos: -11.5,14.5 + parent: 1668 + - uid: 2777 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1668 + - uid: 2778 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1668 + - uid: 2922 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1668 + - uid: 2931 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1668 + - uid: 2932 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1668 + - uid: 2987 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1668 + - uid: 2995 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1668 + - uid: 2997 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1668 + - uid: 2999 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1668 + - uid: 3001 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1668 + - uid: 3005 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1668 + - uid: 3006 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1668 + - uid: 3008 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1668 + - uid: 3009 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1668 + - uid: 3010 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1668 + - uid: 3011 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1668 + - uid: 3016 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1668 + - uid: 3017 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1668 + - uid: 3024 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1668 + - uid: 3026 + components: + - type: Transform + pos: -2.5,20.5 + parent: 1668 + - uid: 3035 + components: + - type: Transform + pos: -7.5,16.5 + parent: 1668 + - uid: 3036 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1668 + - uid: 3221 + components: + - type: Transform + pos: -10.5,14.5 + parent: 1668 + - uid: 3232 + components: + - type: Transform + pos: -3.5,23.5 + parent: 1668 + - uid: 3240 + components: + - type: Transform + pos: 5.5,22.5 + parent: 1668 + - uid: 3241 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1668 + - uid: 3244 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1668 + - uid: 3245 + components: + - type: Transform + pos: -2.5,22.5 + parent: 1668 + - uid: 3252 + components: + - type: Transform + pos: 20.5,26.5 + parent: 1668 + - uid: 3258 + components: + - type: Transform + pos: -2.5,23.5 + parent: 1668 + - uid: 3259 + components: + - type: Transform + pos: -2.5,24.5 + parent: 1668 + - uid: 3260 + components: + - type: Transform + pos: -2.5,25.5 + parent: 1668 + - uid: 3261 + components: + - type: Transform + pos: -2.5,26.5 + parent: 1668 + - uid: 3262 + components: + - type: Transform + pos: -2.5,27.5 + parent: 1668 + - uid: 3263 + components: + - type: Transform + pos: -2.5,28.5 + parent: 1668 + - uid: 3265 + components: + - type: Transform + pos: -1.5,33.5 + parent: 1668 + - uid: 3268 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1668 + - uid: 3274 + components: + - type: Transform + pos: -8.5,23.5 + parent: 1668 + - uid: 3275 + components: + - type: Transform + pos: -8.5,24.5 + parent: 1668 + - uid: 3276 + components: + - type: Transform + pos: -8.5,25.5 + parent: 1668 + - uid: 3277 + components: + - type: Transform + pos: -8.5,26.5 + parent: 1668 + - uid: 3278 + components: + - type: Transform + pos: -8.5,27.5 + parent: 1668 + - uid: 3279 + components: + - type: Transform + pos: -8.5,28.5 + parent: 1668 + - uid: 3280 + components: + - type: Transform + pos: -7.5,28.5 + parent: 1668 + - uid: 3281 + components: + - type: Transform + pos: -6.5,28.5 + parent: 1668 + - uid: 3282 + components: + - type: Transform + pos: -5.5,28.5 + parent: 1668 + - uid: 3283 + components: + - type: Transform + pos: -4.5,28.5 + parent: 1668 + - uid: 3284 + components: + - type: Transform + pos: -3.5,28.5 + parent: 1668 + - uid: 3287 + components: + - type: Transform + pos: -14.5,27.5 + parent: 1668 + - uid: 3288 + components: + - type: Transform + pos: -13.5,23.5 + parent: 1668 + - uid: 3289 + components: + - type: Transform + pos: -14.5,26.5 + parent: 1668 + - uid: 3290 + components: + - type: Transform + pos: -14.5,24.5 + parent: 1668 + - uid: 3291 + components: + - type: Transform + pos: -14.5,23.5 + parent: 1668 + - uid: 3292 + components: + - type: Transform + pos: -14.5,25.5 + parent: 1668 + - uid: 3296 + components: + - type: Transform + pos: -9.5,23.5 + parent: 1668 + - uid: 3299 + components: + - type: Transform + pos: -11.5,28.5 + parent: 1668 + - uid: 3301 + components: + - type: Transform + pos: -13.5,28.5 + parent: 1668 + - uid: 3302 + components: + - type: Transform + pos: -12.5,28.5 + parent: 1668 + - uid: 3304 + components: + - type: Transform + pos: -14.5,28.5 + parent: 1668 + - uid: 3347 + components: + - type: Transform + pos: -9.5,28.5 + parent: 1668 + - uid: 3348 + components: + - type: Transform + pos: -10.5,28.5 + parent: 1668 + - uid: 3367 + components: + - type: Transform + pos: -18.5,28.5 + parent: 1668 + - uid: 3402 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1668 + - uid: 3405 + components: + - type: Transform + pos: -19.5,28.5 + parent: 1668 + - uid: 3407 + components: + - type: Transform + pos: -15.5,28.5 + parent: 1668 + - uid: 3421 + components: + - type: Transform + pos: -17.5,28.5 + parent: 1668 + - uid: 3422 + components: + - type: Transform + pos: -16.5,28.5 + parent: 1668 + - uid: 3434 + components: + - type: Transform + pos: -26.5,18.5 + parent: 1668 + - uid: 3436 + components: + - type: Transform + pos: -29.5,28.5 + parent: 1668 + - uid: 3437 + components: + - type: Transform + pos: -31.5,28.5 + parent: 1668 + - uid: 3441 + components: + - type: Transform + pos: -32.5,18.5 + parent: 1668 + - uid: 3442 + components: + - type: Transform + pos: -32.5,21.5 + parent: 1668 + - uid: 3443 + components: + - type: Transform + pos: -32.5,22.5 + parent: 1668 + - uid: 3444 + components: + - type: Transform + pos: -32.5,19.5 + parent: 1668 + - uid: 3445 + components: + - type: Transform + pos: -31.5,22.5 + parent: 1668 + - uid: 3446 + components: + - type: Transform + pos: -32.5,20.5 + parent: 1668 + - uid: 3447 + components: + - type: Transform + pos: -30.5,22.5 + parent: 1668 + - uid: 3448 + components: + - type: Transform + pos: -29.5,22.5 + parent: 1668 + - uid: 3449 + components: + - type: Transform + pos: -28.5,22.5 + parent: 1668 + - uid: 3450 + components: + - type: Transform + pos: -28.5,24.5 + parent: 1668 + - uid: 3451 + components: + - type: Transform + pos: -31.5,24.5 + parent: 1668 + - uid: 3452 + components: + - type: Transform + pos: -32.5,24.5 + parent: 1668 + - uid: 3453 + components: + - type: Transform + pos: -29.5,24.5 + parent: 1668 + - uid: 3454 + components: + - type: Transform + pos: -32.5,25.5 + parent: 1668 + - uid: 3455 + components: + - type: Transform + pos: -32.5,26.5 + parent: 1668 + - uid: 3456 + components: + - type: Transform + pos: -32.5,27.5 + parent: 1668 + - uid: 3457 + components: + - type: Transform + pos: -32.5,28.5 + parent: 1668 + - uid: 3458 + components: + - type: Transform + pos: -30.5,24.5 + parent: 1668 + - uid: 3461 + components: + - type: Transform + pos: -31.5,18.5 + parent: 1668 + - uid: 3462 + components: + - type: Transform + pos: -26.5,28.5 + parent: 1668 + - uid: 3465 + components: + - type: Transform + pos: -30.5,18.5 + parent: 1668 + - uid: 3467 + components: + - type: Transform + pos: -28.5,28.5 + parent: 1668 + - uid: 3468 + components: + - type: Transform + pos: -29.5,18.5 + parent: 1668 + - uid: 3469 + components: + - type: Transform + pos: -19.5,18.5 + parent: 1668 + - uid: 3470 + components: + - type: Transform + pos: -30.5,28.5 + parent: 1668 + - uid: 3471 + components: + - type: Transform + pos: -28.5,18.5 + parent: 1668 + - uid: 3619 + components: + - type: Transform + pos: -3.5,33.5 + parent: 1668 + - uid: 3622 + components: + - type: Transform + pos: -3.5,29.5 + parent: 1668 + - uid: 3623 + components: + - type: Transform + pos: -1.5,36.5 + parent: 1668 + - uid: 3624 + components: + - type: Transform + pos: -1.5,34.5 + parent: 1668 + - uid: 3625 + components: + - type: Transform + pos: -1.5,35.5 + parent: 1668 + - uid: 3641 + components: + - type: Transform + pos: 3.5,36.5 + parent: 1668 + - uid: 3727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,23.5 + parent: 1668 + - uid: 3730 + components: + - type: Transform + pos: 6.5,23.5 + parent: 1668 + - uid: 4054 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 1668 + - uid: 4055 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 1668 + - uid: 4056 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1668 + - uid: 4057 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 1668 + - uid: 4059 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1668 + - uid: 4060 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 1668 + - uid: 4061 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 1668 + - uid: 4062 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 1668 + - uid: 4063 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 1668 + - uid: 4064 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 1668 + - uid: 4068 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 1668 + - uid: 4069 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1668 + - uid: 4070 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 1668 + - uid: 4071 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 1668 + - uid: 4072 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 1668 + - uid: 4073 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 1668 + - uid: 4074 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 1668 + - uid: 4075 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 1668 + - uid: 4077 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 1668 + - uid: 4078 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 1668 + - uid: 4079 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 1668 + - uid: 4141 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 1668 + - uid: 4143 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 1668 + - uid: 4144 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 1668 + - uid: 4145 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 1668 + - uid: 4146 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 1668 + - uid: 4147 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1668 + - uid: 4148 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 1668 + - uid: 4149 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 1668 + - uid: 4150 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 1668 + - uid: 4152 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 1668 + - uid: 4154 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 1668 + - uid: 4155 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1668 + - uid: 4156 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1668 + - uid: 4157 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1668 + - uid: 4159 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1668 + - uid: 4160 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1668 + - uid: 4161 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1668 + - uid: 4162 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1668 + - uid: 4163 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1668 + - uid: 4164 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1668 + - uid: 4166 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1668 + - uid: 4167 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 1668 + - uid: 4171 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 1668 + - uid: 4172 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 1668 + - uid: 4221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-46.5 + parent: 1668 + - uid: 4223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-46.5 + parent: 1668 + - uid: 4224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 1668 + - uid: 4225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-42.5 + parent: 1668 + - uid: 4226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-37.5 + parent: 1668 + - uid: 4227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-38.5 + parent: 1668 + - uid: 4229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-44.5 + parent: 1668 + - uid: 4230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 + parent: 1668 + - uid: 4233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-39.5 + parent: 1668 + - uid: 4234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-38.5 + parent: 1668 + - uid: 4235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 1668 + - uid: 4236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-41.5 + parent: 1668 + - uid: 4237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-37.5 + parent: 1668 + - uid: 4238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-37.5 + parent: 1668 + - uid: 4239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-37.5 + parent: 1668 + - uid: 4280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 1668 + - uid: 4299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-37.5 + parent: 1668 + - uid: 4301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 1668 + - uid: 4302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-37.5 + parent: 1668 + - uid: 4303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 1668 + - uid: 4318 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 1668 + - uid: 4328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 1668 + - uid: 4329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 1668 + - uid: 4330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-43.5 + parent: 1668 + - uid: 4331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-44.5 + parent: 1668 + - uid: 4332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-39.5 + parent: 1668 + - uid: 4333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-41.5 + parent: 1668 + - uid: 4334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-37.5 + parent: 1668 + - uid: 4335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-40.5 + parent: 1668 + - uid: 4336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-42.5 + parent: 1668 + - uid: 4337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-43.5 + parent: 1668 + - uid: 4341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 1668 + - uid: 4342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-37.5 + parent: 1668 + - uid: 4350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-44.5 + parent: 1668 + - uid: 4351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-44.5 + parent: 1668 + - uid: 4353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-45.5 + parent: 1668 + - uid: 4354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-46.5 + parent: 1668 + - uid: 4357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 1668 + - uid: 4360 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 1668 + - uid: 4362 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 1668 + - uid: 4363 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 1668 + - uid: 4364 + components: + - type: Transform + pos: 2.5,-50.5 + parent: 1668 + - uid: 4365 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 1668 + - uid: 4368 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 1668 + - uid: 4369 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 1668 + - uid: 4370 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 1668 + - uid: 4371 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 1668 + - uid: 4372 + components: + - type: Transform + pos: -8.5,-49.5 + parent: 1668 + - uid: 4374 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 1668 + - uid: 4379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-46.5 + parent: 1668 + - uid: 4381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-44.5 + parent: 1668 + - uid: 4382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-46.5 + parent: 1668 + - uid: 4383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-46.5 + parent: 1668 + - uid: 4384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-46.5 + parent: 1668 + - uid: 4387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-44.5 + parent: 1668 + - uid: 4388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 1668 + - uid: 4390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 1668 + - uid: 4393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-46.5 + parent: 1668 + - uid: 4395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-44.5 + parent: 1668 + - uid: 4396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-46.5 + parent: 1668 + - uid: 4397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-46.5 + parent: 1668 + - uid: 4399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-45.5 + parent: 1668 + - uid: 4452 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 1668 + - uid: 4453 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 1668 + - uid: 4454 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 1668 + - uid: 4458 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 1668 + - uid: 4459 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 1668 + - uid: 4460 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 1668 + - uid: 4461 + components: + - type: Transform + pos: 15.5,-49.5 + parent: 1668 + - uid: 4462 + components: + - type: Transform + pos: 16.5,-49.5 + parent: 1668 + - uid: 4463 + components: + - type: Transform + pos: 17.5,-49.5 + parent: 1668 + - uid: 4464 + components: + - type: Transform + pos: 18.5,-49.5 + parent: 1668 + - uid: 4465 + components: + - type: Transform + pos: 16.5,-47.5 + parent: 1668 + - uid: 4466 + components: + - type: Transform + pos: 17.5,-47.5 + parent: 1668 + - uid: 4467 + components: + - type: Transform + pos: 18.5,-47.5 + parent: 1668 + - uid: 4469 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 1668 + - uid: 4470 + components: + - type: Transform + pos: 18.5,-43.5 + parent: 1668 + - uid: 4471 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 1668 + - uid: 4474 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 1668 + - uid: 4475 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 1668 + - uid: 4476 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 1668 + - uid: 4479 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 1668 + - uid: 4481 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 1668 + - uid: 4482 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 1668 + - uid: 4483 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 1668 + - uid: 4484 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 1668 + - uid: 4485 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 1668 + - uid: 4486 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 1668 + - uid: 4487 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 1668 + - uid: 4488 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 1668 + - uid: 4489 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 1668 + - uid: 4490 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 1668 + - uid: 4491 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 1668 + - uid: 4492 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 1668 + - uid: 4493 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 1668 + - uid: 4494 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1668 + - uid: 4495 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 1668 + - uid: 4499 + components: + - type: Transform + pos: -13.5,-49.5 + parent: 1668 + - uid: 4500 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 1668 + - uid: 4501 + components: + - type: Transform + pos: -15.5,-49.5 + parent: 1668 + - uid: 4502 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 1668 + - uid: 4503 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 1668 + - uid: 4504 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 1668 + - uid: 4505 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 1668 + - uid: 4506 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 1668 + - uid: 4507 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 1668 + - uid: 4508 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 1668 + - uid: 4511 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 1668 + - uid: 4512 + components: + - type: Transform + pos: -19.5,-43.5 + parent: 1668 + - uid: 4513 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 1668 + - uid: 4516 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 1668 + - uid: 4517 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 1668 + - uid: 4518 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 1668 + - uid: 4521 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 1668 + - uid: 4522 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 1668 + - uid: 4523 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 1668 + - uid: 4524 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 1668 + - uid: 4525 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 1668 + - uid: 4526 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 1668 + - uid: 4527 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 1668 + - uid: 4528 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 1668 + - uid: 4529 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 1668 + - uid: 4530 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 1668 + - uid: 4531 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 1668 + - uid: 4532 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 1668 + - uid: 4533 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 1668 + - uid: 4534 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 1668 + - uid: 4535 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 1668 + - uid: 4536 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 1668 + - uid: 4537 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 1668 + - uid: 4538 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 1668 + - uid: 4539 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 1668 + - uid: 4540 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 1668 + - uid: 4541 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 1668 + - uid: 4542 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 1668 + - uid: 4543 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 1668 + - uid: 4544 + components: + - type: Transform + pos: -22.5,-47.5 + parent: 1668 + - uid: 4545 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 1668 + - uid: 4546 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 1668 + - uid: 4547 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 1668 + - uid: 4548 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 1668 + - uid: 4549 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 1668 + - uid: 4550 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 1668 + - uid: 4551 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 1668 + - uid: 4552 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 1668 + - uid: 4553 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 1668 + - uid: 4554 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 1668 + - uid: 4555 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 1668 + - uid: 4556 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 1668 + - uid: 4557 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 1668 + - uid: 4558 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 1668 + - uid: 4559 + components: + - type: Transform + pos: 19.5,-49.5 + parent: 1668 + - uid: 4560 + components: + - type: Transform + pos: 20.5,-49.5 + parent: 1668 + - uid: 4561 + components: + - type: Transform + pos: 21.5,-49.5 + parent: 1668 + - uid: 4562 + components: + - type: Transform + pos: 21.5,-47.5 + parent: 1668 + - uid: 4563 + components: + - type: Transform + pos: 20.5,-47.5 + parent: 1668 + - uid: 4564 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 1668 + - uid: 4565 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 1668 + - uid: 4566 + components: + - type: Transform + pos: 20.5,-45.5 + parent: 1668 + - uid: 4567 + components: + - type: Transform + pos: 20.5,-44.5 + parent: 1668 + - uid: 4568 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 1668 + - uid: 4569 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 1668 + - uid: 4570 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 1668 + - uid: 4571 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 1668 + - uid: 4572 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 1668 + - uid: 4573 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 1668 + - uid: 4574 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 1668 + - uid: 4575 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 1668 + - uid: 4576 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 1668 + - uid: 4577 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 1668 + - uid: 4578 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 1668 + - uid: 4787 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 1668 + - uid: 4800 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 1668 + - uid: 5512 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 1668 + - uid: 5513 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 1668 + - uid: 5515 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 1668 + - uid: 5516 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 1668 + - uid: 5519 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 1668 + - uid: 5521 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 1668 + - uid: 5524 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 1668 + - uid: 5526 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 1668 + - uid: 5527 + components: + - type: Transform + pos: -22.5,-34.5 + parent: 1668 + - uid: 5528 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 1668 + - uid: 5529 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 1668 + - uid: 5530 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 1668 + - uid: 5534 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 1668 + - uid: 5535 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 1668 + - uid: 5540 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 1668 + - uid: 5543 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 1668 + - uid: 5546 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 1668 + - uid: 5549 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 1668 + - uid: 5550 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 1668 + - uid: 5570 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 1668 + - uid: 5574 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 1668 + - uid: 5575 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 1668 + - uid: 5576 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 1668 + - uid: 5577 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 1668 + - uid: 5578 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 1668 + - uid: 5579 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 1668 + - uid: 5580 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 1668 + - uid: 5581 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 1668 + - uid: 5582 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 1668 + - uid: 5583 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 1668 + - uid: 5584 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 1668 + - uid: 5585 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 1668 + - uid: 5586 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 1668 + - uid: 5587 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 1668 + - uid: 5588 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 1668 + - uid: 5589 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 1668 + - uid: 5590 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 1668 + - uid: 5591 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 1668 + - uid: 5592 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 1668 + - uid: 5593 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 1668 + - uid: 5594 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 1668 + - uid: 5595 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 1668 + - uid: 5596 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 1668 + - uid: 5597 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 1668 + - uid: 5598 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1668 + - uid: 5599 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 1668 + - uid: 5600 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 1668 + - uid: 5601 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 1668 + - uid: 5602 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 1668 + - uid: 5603 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 1668 + - uid: 5607 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 1668 + - uid: 5608 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 1668 + - uid: 5609 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 1668 + - uid: 5610 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 1668 + - uid: 5619 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 1668 + - uid: 5620 + components: + - type: Transform + pos: -32.5,-34.5 + parent: 1668 + - uid: 5621 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 1668 + - uid: 5622 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 1668 + - uid: 5623 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 1668 + - uid: 5624 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 1668 + - uid: 5637 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 1668 + - uid: 5638 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 1668 + - uid: 5639 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 1668 + - uid: 5640 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 1668 + - uid: 5641 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 1668 + - uid: 5642 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 1668 + - uid: 5643 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 1668 + - uid: 5644 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 1668 + - uid: 5645 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 1668 + - uid: 5667 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 1668 + - uid: 5720 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 1668 + - uid: 5721 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 1668 + - uid: 5722 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 1668 + - uid: 5723 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1668 + - uid: 5724 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1668 + - uid: 5895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,11.5 + parent: 1668 + - uid: 5898 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1668 + - uid: 5899 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 1668 + - uid: 5900 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1668 + - uid: 5901 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 1668 + - uid: 5902 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1668 + - uid: 5903 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 1668 + - uid: 5904 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1668 + - uid: 5905 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 1668 + - uid: 5906 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1668 + - uid: 5907 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 1668 + - uid: 5908 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1668 + - uid: 5909 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 1668 + - uid: 5910 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 1668 + - uid: 5917 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1668 + - uid: 5918 + components: + - type: Transform + pos: -29.5,3.5 + parent: 1668 + - uid: 6008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,8.5 + parent: 1668 + - uid: 6009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,14.5 + parent: 1668 + - uid: 6010 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 1668 + - uid: 6011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,14.5 + parent: 1668 + - uid: 6012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,14.5 + parent: 1668 + - uid: 6013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,14.5 + parent: 1668 + - uid: 6018 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1668 + - uid: 6019 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 1668 + - uid: 6020 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 1668 + - uid: 6021 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 1668 + - uid: 6023 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 1668 + - uid: 6024 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 1668 + - uid: 6025 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 1668 + - uid: 6026 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 1668 + - uid: 6027 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 1668 + - uid: 6028 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 1668 + - uid: 6029 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1668 + - uid: 6030 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1668 + - uid: 6031 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 1668 + - uid: 6032 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 1668 + - uid: 6033 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1668 + - uid: 6034 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 1668 + - uid: 6035 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 1668 + - uid: 6036 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 1668 + - uid: 6037 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 1668 + - uid: 6038 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 1668 + - uid: 6039 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 1668 + - uid: 6040 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 1668 + - uid: 6041 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 1668 + - uid: 6043 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1668 + - uid: 6044 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1668 + - uid: 6046 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 1668 + - uid: 6091 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 1668 + - uid: 6092 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 1668 + - uid: 6093 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 1668 + - uid: 6094 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 1668 + - uid: 6095 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 1668 + - uid: 6096 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 1668 + - uid: 6097 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 1668 + - uid: 6098 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 1668 + - uid: 6099 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 1668 + - uid: 6111 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 1668 + - uid: 6112 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 1668 + - uid: 6126 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 1668 + - uid: 6127 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 1668 + - uid: 6128 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 1668 + - uid: 6129 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 1668 + - uid: 6130 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 1668 + - uid: 6131 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 1668 + - uid: 6579 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 1668 + - uid: 6580 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 1668 + - uid: 6581 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 1668 + - uid: 6582 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 1668 + - uid: 6583 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 1668 + - uid: 6584 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 1668 + - uid: 6585 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 1668 + - uid: 6586 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 1668 + - uid: 6587 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 1668 + - uid: 6588 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 1668 + - uid: 6589 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 1668 + - uid: 6590 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 1668 + - uid: 6598 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 1668 + - uid: 6599 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 1668 + - uid: 6600 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 1668 + - uid: 6602 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 1668 + - uid: 6603 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 1668 + - uid: 6604 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 1668 + - uid: 6605 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 1668 + - uid: 6606 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 1668 + - uid: 6607 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 1668 + - uid: 6608 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 1668 + - uid: 6609 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 1668 + - uid: 6610 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 1668 + - uid: 6611 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 1668 + - uid: 6612 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 1668 + - uid: 6613 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 1668 + - uid: 6614 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 1668 + - uid: 6615 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 1668 + - uid: 6616 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 1668 + - uid: 6617 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 1668 + - uid: 6618 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 1668 + - uid: 6619 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 1668 + - uid: 6620 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 1668 + - uid: 6621 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 1668 + - uid: 6622 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 1668 + - uid: 6623 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 1668 + - uid: 6624 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 1668 + - uid: 6625 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 1668 + - uid: 6626 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 1668 + - uid: 6627 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 1668 + - uid: 6628 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 1668 + - uid: 6629 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 1668 + - uid: 6630 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 1668 + - uid: 6631 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 1668 + - uid: 6632 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 1668 + - uid: 6633 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 1668 + - uid: 6634 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 1668 + - uid: 6687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-4.5 + parent: 1668 + - uid: 6688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-5.5 + parent: 1668 + - uid: 6689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-10.5 + parent: 1668 + - uid: 6690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-9.5 + parent: 1668 + - uid: 6698 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 1668 + - uid: 6699 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 1668 + - uid: 6700 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 1668 + - uid: 6701 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 1668 + - uid: 6702 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 1668 + - uid: 6703 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 1668 + - uid: 6704 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 1668 + - uid: 6705 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 1668 + - uid: 6706 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 1668 + - uid: 6707 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 1668 + - uid: 6708 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 1668 + - uid: 6709 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 1668 + - uid: 6710 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 1668 + - uid: 6711 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 1668 + - uid: 6712 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 1668 + - uid: 6713 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 1668 + - uid: 6714 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 1668 + - uid: 6715 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 1668 + - uid: 6716 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 1668 + - uid: 6941 + components: + - type: Transform + pos: -30.5,2.5 + parent: 1668 + - uid: 6942 + components: + - type: Transform + pos: -31.5,2.5 + parent: 1668 + - uid: 6943 + components: + - type: Transform + pos: -32.5,2.5 + parent: 1668 + - uid: 6945 + components: + - type: Transform + pos: -34.5,2.5 + parent: 1668 + - uid: 6946 + components: + - type: Transform + pos: -35.5,2.5 + parent: 1668 + - uid: 6947 + components: + - type: Transform + pos: -36.5,2.5 + parent: 1668 + - uid: 6948 + components: + - type: Transform + pos: -37.5,2.5 + parent: 1668 + - uid: 6949 + components: + - type: Transform + pos: -38.5,2.5 + parent: 1668 + - uid: 6950 + components: + - type: Transform + pos: -39.5,2.5 + parent: 1668 + - uid: 6951 + components: + - type: Transform + pos: -40.5,2.5 + parent: 1668 + - uid: 6952 + components: + - type: Transform + pos: -41.5,2.5 + parent: 1668 + - uid: 6956 + components: + - type: Transform + pos: -45.5,2.5 + parent: 1668 + - uid: 6957 + components: + - type: Transform + pos: -46.5,2.5 + parent: 1668 + - uid: 7107 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 1668 + - uid: 7111 + components: + - type: Transform + pos: -51.5,-8.5 + parent: 1668 + - uid: 7112 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 1668 + - uid: 7113 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 1668 + - uid: 7114 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 1668 + - uid: 7115 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 1668 + - uid: 7116 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 1668 + - uid: 7117 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 1668 + - uid: 7118 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 1668 + - uid: 7119 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 1668 + - uid: 7122 + components: + - type: Transform + pos: -47.5,2.5 + parent: 1668 + - uid: 7125 + components: + - type: Transform + pos: -51.5,2.5 + parent: 1668 + - uid: 7126 + components: + - type: Transform + pos: -52.5,2.5 + parent: 1668 + - uid: 7127 + components: + - type: Transform + pos: -52.5,3.5 + parent: 1668 + - uid: 7128 + components: + - type: Transform + pos: -52.5,4.5 + parent: 1668 + - uid: 7129 + components: + - type: Transform + pos: -52.5,5.5 + parent: 1668 + - uid: 7130 + components: + - type: Transform + pos: -52.5,6.5 + parent: 1668 + - uid: 7131 + components: + - type: Transform + pos: -52.5,7.5 + parent: 1668 + - uid: 7132 + components: + - type: Transform + pos: -51.5,7.5 + parent: 1668 + - uid: 7136 + components: + - type: Transform + pos: -47.5,7.5 + parent: 1668 + - uid: 7137 + components: + - type: Transform + pos: -46.5,7.5 + parent: 1668 + - uid: 7138 + components: + - type: Transform + pos: -46.5,6.5 + parent: 1668 + - uid: 7139 + components: + - type: Transform + pos: -46.5,5.5 + parent: 1668 + - uid: 7140 + components: + - type: Transform + pos: -46.5,4.5 + parent: 1668 + - uid: 7141 + components: + - type: Transform + pos: -46.5,3.5 + parent: 1668 + - uid: 7142 + components: + - type: Transform + pos: -45.5,7.5 + parent: 1668 + - uid: 7146 + components: + - type: Transform + pos: -41.5,7.5 + parent: 1668 + - uid: 7147 + components: + - type: Transform + pos: -40.5,7.5 + parent: 1668 + - uid: 7148 + components: + - type: Transform + pos: -40.5,6.5 + parent: 1668 + - uid: 7149 + components: + - type: Transform + pos: -40.5,5.5 + parent: 1668 + - uid: 7150 + components: + - type: Transform + pos: -40.5,4.5 + parent: 1668 + - uid: 7151 + components: + - type: Transform + pos: -40.5,3.5 + parent: 1668 + - uid: 7155 + components: + - type: Transform + pos: -53.5,2.5 + parent: 1668 + - uid: 7156 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 1668 + - uid: 7157 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 1668 + - uid: 7158 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 1668 + - uid: 7159 + components: + - type: Transform + pos: -54.5,2.5 + parent: 1668 + - uid: 7160 + components: + - type: Transform + pos: -55.5,2.5 + parent: 1668 + - uid: 7244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,7.5 + parent: 1668 + - uid: 7245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,8.5 + parent: 1668 + - uid: 7246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,9.5 + parent: 1668 + - uid: 7247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,10.5 + parent: 1668 + - uid: 7248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,11.5 + parent: 1668 + - uid: 7249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,12.5 + parent: 1668 + - uid: 7250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,14.5 + parent: 1668 + - uid: 7251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,13.5 + parent: 1668 + - uid: 7252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,14.5 + parent: 1668 + - uid: 7253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,14.5 + parent: 1668 + - uid: 7254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,14.5 + parent: 1668 + - uid: 7255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,14.5 + parent: 1668 + - uid: 7256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,14.5 + parent: 1668 + - uid: 7257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,14.5 + parent: 1668 + - uid: 7325 + components: + - type: Transform + pos: -34.5,8.5 + parent: 1668 + - uid: 7326 + components: + - type: Transform + pos: -35.5,8.5 + parent: 1668 + - uid: 7327 + components: + - type: Transform + pos: -36.5,8.5 + parent: 1668 + - uid: 7328 + components: + - type: Transform + pos: -37.5,8.5 + parent: 1668 + - uid: 7329 + components: + - type: Transform + pos: -38.5,8.5 + parent: 1668 + - uid: 7348 + components: + - type: Transform + pos: -39.5,-29.5 + parent: 1668 + - uid: 7349 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 1668 + - uid: 7350 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 1668 + - uid: 7351 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 1668 + - uid: 7352 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 1668 + - uid: 7353 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 1668 + - uid: 7354 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 1668 + - uid: 7355 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 1668 + - uid: 7356 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 1668 + - uid: 7357 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 1668 + - uid: 7358 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 1668 + - uid: 8281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-28.5 + parent: 1668 + - uid: 8780 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 1668 + - uid: 8781 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 1668 + - uid: 8782 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1668 +- proto: WallWood + entities: + - uid: 6135 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 1668 + - uid: 6136 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 1668 + - uid: 6137 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 1668 + - uid: 6138 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 1668 + - uid: 6139 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1668 + - uid: 6140 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1668 + - uid: 6141 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1668 + - uid: 6142 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1668 + - uid: 6143 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1668 + - uid: 6144 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1668 + - uid: 6145 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1668 + - uid: 6146 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 1668 + - uid: 6147 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 1668 + - uid: 6148 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1668 + - uid: 6149 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 1668 + - uid: 6150 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 1668 + - uid: 6152 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 1668 + - uid: 6154 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 1668 + - uid: 6156 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 1668 +- proto: WardrobePrisonFilled + entities: + - uid: 1629 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1668 + - uid: 1630 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1668 +- proto: WarningN2 + entities: + - uid: 3375 + components: + - type: Transform + pos: -28.5,24.5 + parent: 1668 +- proto: WarningO2 + entities: + - uid: 3371 + components: + - type: Transform + pos: -28.5,22.5 + parent: 1668 +- proto: WaterCooler + entities: + - uid: 1382 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1668 + - uid: 1931 + components: + - type: Transform + pos: 33.5,18.5 + parent: 1668 + - uid: 2115 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1668 + - uid: 3266 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1668 + - uid: 3994 + components: + - type: Transform + pos: -7.5,29.5 + parent: 1668 + - uid: 4015 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1668 + - uid: 8763 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 1668 + - uid: 8776 + components: + - type: Transform + pos: -51.5,3.5 + parent: 1668 + - uid: 8777 + components: + - type: Transform + pos: -45.5,3.5 + parent: 1668 + - uid: 9098 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1668 +- proto: WaterTankFull + entities: + - uid: 1033 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1668 +- proto: WaterTankHighCapacity + entities: + - uid: 1031 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1668 +- proto: WaterVaporCanister + entities: + - uid: 4124 + components: + - type: Transform + pos: -20.5,29.5 + parent: 1668 +- proto: WeaponAdvancedLaser + entities: + - uid: 2396 + components: + - type: Transform + pos: 16.496824,28.712013 + parent: 1668 + - uid: 2397 + components: + - type: Transform + pos: 16.496824,28.587013 + parent: 1668 + - uid: 2398 + components: + - type: Transform + pos: 16.496824,28.430763 + parent: 1668 +- proto: WeaponCapacitorRecharger + entities: + - uid: 1151 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 1668 + - uid: 1622 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1668 + - uid: 1745 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1668 + - uid: 2245 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1668 + - uid: 2783 + components: + - type: Transform + pos: -23.5,10.5 + parent: 1668 + - uid: 2985 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1668 + - uid: 4631 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 1668 + - uid: 4632 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 1668 + - uid: 4633 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 1668 + - uid: 4634 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 1668 + - uid: 4635 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 1668 + - uid: 4636 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 1668 + - uid: 4637 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 1668 + - uid: 4638 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 1668 + - uid: 6751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-4.5 + parent: 1668 + - uid: 7106 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 1668 +- proto: WeaponDisabler + entities: + - uid: 6817 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6842 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6901 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponDisablerPractice + entities: + - uid: 4180 + components: + - type: Transform + pos: 11.414704,7.5328236 + parent: 1668 +- proto: WeaponDisablerSMG + entities: + - uid: 2220 + components: + - type: Transform + pos: 16.481405,20.689053 + parent: 1668 + - uid: 2221 + components: + - type: Transform + pos: 16.49703,20.439053 + parent: 1668 + - uid: 2222 + components: + - type: Transform + pos: 16.49703,20.564053 + parent: 1668 + - uid: 6748 + components: + - type: Transform + pos: -30.479265,-10.454217 + parent: 1668 +- proto: WeaponLaserCannon + entities: + - uid: 2393 + components: + - type: Transform + pos: 15.512449,28.868263 + parent: 1668 + - uid: 2394 + components: + - type: Transform + pos: 15.512449,28.712013 + parent: 1668 + - uid: 2395 + components: + - type: Transform + pos: 15.528074,28.602638 + parent: 1668 +- proto: WeaponLaserCarbine + entities: + - uid: 2390 + components: + - type: Transform + pos: 14.512449,28.718964 + parent: 1668 + - uid: 2391 + components: + - type: Transform + pos: 14.512449,28.593964 + parent: 1668 + - uid: 2392 + components: + - type: Transform + pos: 14.512449,28.453339 + parent: 1668 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 4179 + components: + - type: Transform + pos: 11.461579,8.095324 + parent: 1668 +- proto: WeaponLaserGun + entities: + - uid: 2402 + components: + - type: Transform + pos: 11.387449,28.737816 + parent: 1668 + - uid: 2403 + components: + - type: Transform + pos: 11.387449,28.59719 + parent: 1668 + - uid: 2404 + components: + - type: Transform + pos: 11.403074,28.425316 + parent: 1668 +- proto: WeaponLaserSvalinn + entities: + - uid: 2405 + components: + - type: Transform + pos: 12.371824,28.800316 + parent: 1668 + - uid: 2406 + components: + - type: Transform + pos: 12.371824,28.62844 + parent: 1668 + - uid: 2407 + components: + - type: Transform + pos: 12.371824,28.456566 + parent: 1668 +- proto: WeaponMakeshiftLaser + entities: + - uid: 2399 + components: + - type: Transform + pos: 10.496824,28.69094 + parent: 1668 + - uid: 2400 + components: + - type: Transform + pos: 10.496824,28.612816 + parent: 1668 + - uid: 2401 + components: + - type: Transform + pos: 10.496824,28.50344 + parent: 1668 +- proto: WeaponParticleDecelerator + entities: + - uid: 9207 + components: + - type: Transform + pos: -31.094982,-6.204217 + parent: 1668 +- proto: WeaponPistolN1984 + entities: + - uid: 1383 + components: + - type: Transform + pos: -11.42821,5.5092115 + parent: 1668 + - uid: 6897 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponPulseCarbine + entities: + - uid: 2411 + components: + - type: Transform + pos: 12.5012,34.757042 + parent: 1668 + - uid: 2412 + components: + - type: Transform + pos: 12.5012,34.678917 + parent: 1668 + - uid: 2413 + components: + - type: Transform + pos: 12.5012,34.600792 + parent: 1668 + - uid: 2414 + components: + - type: Transform + pos: 12.5012,34.507042 + parent: 1668 +- proto: WeaponPulsePistol + entities: + - uid: 2419 + components: + - type: Transform + pos: 13.525505,34.760513 + parent: 1668 + - uid: 2420 + components: + - type: Transform + pos: 13.53245,34.67718 + parent: 1668 + - uid: 2421 + components: + - type: Transform + pos: 13.53245,34.607735 + parent: 1668 + - uid: 2422 + components: + - type: Transform + pos: 13.539394,34.51746 + parent: 1668 +- proto: WeaponRevolverMatebaAP + entities: + - uid: 2427 + components: + - type: Transform + pos: 15.508711,34.772667 + parent: 1668 + - uid: 2428 + components: + - type: Transform + pos: 15.508711,34.647667 + parent: 1668 + - uid: 2429 + components: + - type: Transform + pos: 15.508711,34.522667 + parent: 1668 + - uid: 2430 + components: + - type: Transform + pos: 15.508711,34.397667 + parent: 1668 +- proto: WeaponRifleAk + entities: + - uid: 2330 + components: + - type: Transform + pos: 10.48632,26.788996 + parent: 1668 + - uid: 2331 + components: + - type: Transform + pos: 10.48632,26.68483 + parent: 1668 + - uid: 2332 + components: + - type: Transform + pos: 10.48632,26.549412 + parent: 1668 + - uid: 2333 + components: + - type: Transform + pos: 10.496737,26.424412 + parent: 1668 +- proto: WeaponRifleLecter + entities: + - uid: 2302 + components: + - type: Transform + pos: 10.490067,24.777998 + parent: 1668 + - uid: 2303 + components: + - type: Transform + pos: 10.490067,24.652998 + parent: 1668 + - uid: 2304 + components: + - type: Transform + pos: 10.490067,24.517582 + parent: 1668 + - uid: 2305 + components: + - type: Transform + pos: 10.490067,24.350914 + parent: 1668 + - uid: 6825 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6836 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponRifleM90GrenadeLauncher + entities: + - uid: 2573 + components: + - type: Transform + pos: 10.572034,30.676907 + parent: 1668 + - uid: 2577 + components: + - type: Transform + pos: 10.572034,30.794964 + parent: 1668 + - uid: 2581 + components: + - type: Transform + pos: 10.572034,30.551907 + parent: 1668 + - uid: 2590 + components: + - type: Transform + pos: 10.572034,30.38524 + parent: 1668 +- proto: WeaponShotgunEnforcer + entities: + - uid: 2358 + components: + - type: Transform + pos: 15.464579,22.856552 + parent: 1668 + - uid: 2359 + components: + - type: Transform + pos: 15.464579,22.762802 + parent: 1668 + - uid: 2360 + components: + - type: Transform + pos: 15.464579,22.648218 + parent: 1668 + - uid: 2361 + components: + - type: Transform + pos: 15.464579,22.523218 + parent: 1668 +- proto: WeaponShotgunKammerer + entities: + - uid: 2366 + components: + - type: Transform + pos: 15.495829,24.820536 + parent: 1668 + - uid: 2367 + components: + - type: Transform + pos: 15.495829,24.695536 + parent: 1668 + - uid: 2368 + components: + - type: Transform + pos: 15.495829,24.56012 + parent: 1668 + - uid: 2369 + components: + - type: Transform + pos: 15.495829,24.43512 + parent: 1668 +- proto: WeaponSubMachineGunC20r + entities: + - uid: 2452 + components: + - type: Transform + pos: 10.556818,34.725677 + parent: 1668 + - uid: 2453 + components: + - type: Transform + pos: 10.556818,34.628456 + parent: 1668 + - uid: 2454 + components: + - type: Transform + pos: 10.556818,34.531235 + parent: 1668 + - uid: 2455 + components: + - type: Transform + pos: 10.556818,34.413177 + parent: 1668 +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 2259 + components: + - type: Transform + pos: 10.565318,22.826067 + parent: 1668 + - uid: 2263 + components: + - type: Transform + pos: 10.558374,22.70045 + parent: 1668 + - uid: 2267 + components: + - type: Transform + pos: 10.558374,22.45045 + parent: 1668 + - uid: 2278 + components: + - type: Transform + pos: 10.558374,22.57545 + parent: 1668 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 2374 + components: + - type: Transform + pos: 15.516663,26.827843 + parent: 1668 + - uid: 2375 + components: + - type: Transform + pos: 15.516663,26.702843 + parent: 1668 + - uid: 2376 + components: + - type: Transform + pos: 15.516663,26.577843 + parent: 1668 + - uid: 2377 + components: + - type: Transform + pos: 15.527079,26.432009 + parent: 1668 +- proto: WeaponTaser + entities: + - uid: 1150 + components: + - type: Transform + pos: 33.496967,-8.27028 + parent: 1668 + - uid: 1729 + components: + - type: Transform + pos: 13.572582,4.6884594 + parent: 1668 + - uid: 2241 + components: + - type: Transform + pos: 10.518752,20.758615 + parent: 1668 + - uid: 2242 + components: + - type: Transform + pos: 10.518752,20.55549 + parent: 1668 + - uid: 2243 + components: + - type: Transform + pos: 10.534377,20.36799 + parent: 1668 + - uid: 2831 + components: + - type: Transform + pos: -22.555105,13.627862 + parent: 1668 + - uid: 6827 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6838 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponXrayCannon + entities: + - uid: 2838 + components: + - type: Transform + pos: 14.507596,34.746235 + parent: 1668 + - uid: 2913 + components: + - type: Transform + pos: 14.507596,34.65827 + parent: 1668 + - uid: 2914 + components: + - type: Transform + pos: 14.507596,34.57957 + parent: 1668 + - uid: 2916 + components: + - type: Transform + pos: 14.507596,34.500866 + parent: 1668 +- proto: WeedSpray + entities: + - uid: 1043 + components: + - type: Transform + pos: 6.2641845,-21.25511 + parent: 1668 + - uid: 1044 + components: + - type: Transform + pos: 6.4673095,-21.25511 + parent: 1668 + - uid: 1045 + components: + - type: Transform + pos: 6.3735595,-21.50511 + parent: 1668 + - uid: 1046 + components: + - type: Transform + pos: 6.5923095,-21.520735 + parent: 1668 +- proto: Welder + entities: + - uid: 3177 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1668 +- proto: WeldingFuelTankFull + entities: + - uid: 4095 + components: + - type: Transform + pos: -9.5,20.5 + parent: 1668 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 3180 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1668 +- proto: WetFloorSign + entities: + - uid: 9075 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1668 +- proto: WheatBushel + entities: + - uid: 5463 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5464 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5465 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5466 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5467 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5468 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5469 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5470 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5471 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5472 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Windoor + entities: + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1668 + - uid: 1933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 1668 +- proto: WindoorCargoLocked + entities: + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,22.5 + parent: 1668 + - uid: 2989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,22.5 + parent: 1668 +- proto: WindoorHydroponicsLocked + entities: + - uid: 969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 1668 + - uid: 970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1668 + - uid: 971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1668 + - uid: 981 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1668 +- proto: WindoorKitchenLocked + entities: + - uid: 1096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1668 + - uid: 1097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1668 + - uid: 1098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1668 + - uid: 1176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 1668 + - uid: 1177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 1668 + - uid: 1178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 1668 +- proto: WindoorSecureBrigLocked + entities: + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,12.5 + parent: 1668 + - uid: 1584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1668 + - uid: 1864 + components: + - type: Transform + pos: 23.5,23.5 + parent: 1668 + - uid: 1865 + components: + - type: Transform + pos: 29.5,23.5 + parent: 1668 + - uid: 1866 + components: + - type: Transform + pos: 26.5,23.5 + parent: 1668 + - uid: 1932 + components: + - type: Transform + pos: 34.5,17.5 + parent: 1668 + - uid: 1961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,23.5 + parent: 1668 + - uid: 1974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,23.5 + parent: 1668 + - uid: 2032 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1668 +- proto: WindoorSecureCargoLocked + entities: + - uid: 3885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,31.5 + parent: 1668 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 2903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,10.5 + parent: 1668 + - uid: 2904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,12.5 + parent: 1668 + - uid: 5923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1668 + - uid: 5924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,5.5 + parent: 1668 + - uid: 5925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,5.5 + parent: 1668 + - uid: 5926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,6.5 + parent: 1668 + - uid: 6006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1668 + - uid: 6007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,6.5 + parent: 1668 +- proto: WindoorSecureChemistryLocked + entities: - uid: 666 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,4.5 + pos: 2.5,-11.5 parent: 1668 - uid: 667 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,5.5 + pos: 2.5,-9.5 parent: 1668 - uid: 668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,5.5 + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 parent: 1668 - uid: 669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 parent: 1668 - - uid: 686 + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 1668 + - uid: 982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 1668 +- proto: WindoorSecureCommandLocked + entities: + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1668 + - uid: 9184 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 1668 + - uid: 9192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-10.5 + parent: 1668 + - uid: 9206 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 1668 + - uid: 9209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-10.5 + parent: 1668 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 3030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 1668 + - uid: 3031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 1668 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 550 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1668 + - uid: 551 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1668 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 1668 + - uid: 558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,2.5 + parent: 1668 + - uid: 586 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1668 - - uid: 687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 1668 - - uid: 689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1668 - - uid: 690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,7.5 - parent: 1668 - - uid: 691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 1668 - - uid: 692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1668 - - uid: 693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1668 - - uid: 694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1668 - - uid: 695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 1668 - - uid: 696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 1668 - - uid: 697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 1668 - - uid: 698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 1668 - - uid: 724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1668 - - uid: 726 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 1668 - - uid: 727 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 1668 - - uid: 728 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 1668 - - uid: 745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 1668 - - uid: 746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 1668 - - uid: 747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 1668 - - uid: 748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 1668 - - uid: 749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1668 - - uid: 750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 1668 - - uid: 751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-15.5 - parent: 1668 - - uid: 752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 1668 - - uid: 753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 1668 - - uid: 754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 1668 - - uid: 755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1668 - - uid: 756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 1668 - - uid: 757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1668 - - uid: 806 - components: - - type: Transform - pos: 35.5,-29.5 - parent: 1668 - - uid: 826 - components: - - type: Transform - pos: -13.5,11.5 - parent: 1668 - - uid: 827 - components: - - type: Transform - pos: -13.5,12.5 - parent: 1668 - - uid: 832 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 1668 - - uid: 835 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 1668 - - uid: 837 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 1668 - - uid: 838 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 1668 - - uid: 839 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 1668 - - uid: 840 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 1668 - - uid: 841 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 1668 - - uid: 842 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 1668 - - uid: 843 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 1668 - - uid: 844 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 1668 - - uid: 851 - components: - - type: Transform - pos: -13.5,10.5 - parent: 1668 - - uid: 1080 - components: - - type: Transform - pos: -13.5,9.5 - parent: 1668 - - uid: 1081 - components: - - type: Transform - pos: -13.5,8.5 - parent: 1668 - - uid: 1082 - components: - - type: Transform - pos: -13.5,7.5 - parent: 1668 - - uid: 1083 - components: - - type: Transform - pos: -12.5,7.5 - parent: 1668 - - uid: 1084 - components: - - type: Transform - pos: -11.5,7.5 - parent: 1668 - - uid: 1085 - components: - - type: Transform - pos: -10.5,7.5 + pos: 11.5,4.5 parent: 1668 - uid: 1132 components: - type: Transform - pos: 15.5,-16.5 + rot: -1.5707963267948966 rad + pos: 32.5,-11.5 parent: 1668 - uid: 1133 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 1668 - - uid: 1134 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 1668 - - uid: 1135 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 1668 - - uid: 1136 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 1668 - - uid: 1138 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 1668 - - uid: 1139 - components: - - type: Transform - pos: 29.5,-14.5 - parent: 1668 - - uid: 1141 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 1668 - - uid: 1142 - components: - - type: Transform - pos: 35.5,-14.5 - parent: 1668 - - uid: 1143 - components: - - type: Transform - pos: 35.5,-15.5 - parent: 1668 - - uid: 1144 - components: - - type: Transform - pos: 35.5,-16.5 - parent: 1668 - - uid: 1145 - components: - - type: Transform - pos: 35.5,-17.5 - parent: 1668 - - uid: 1152 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 1668 - - uid: 1183 - components: - - type: Transform - pos: 35.5,-12.5 - parent: 1668 - - uid: 1184 - components: - - type: Transform - pos: 35.5,-10.5 - parent: 1668 - - uid: 1322 - components: - - type: Transform - pos: -2.5,5.5 - parent: 1668 - - uid: 1392 - components: - - type: Transform - pos: 35.5,-30.5 - parent: 1668 - - uid: 1394 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 1668 - - uid: 1395 - components: - - type: Transform - pos: 35.5,-32.5 - parent: 1668 - - uid: 1408 - components: - - type: Transform - pos: -4.5,17.5 - parent: 1668 - - uid: 1409 - components: - - type: Transform - pos: -2.5,17.5 - parent: 1668 - - uid: 1410 - components: - - type: Transform - pos: 1.5,17.5 - parent: 1668 - - uid: 1411 - components: - - type: Transform - pos: 3.5,17.5 - parent: 1668 - - uid: 1412 - components: - - type: Transform - pos: 3.5,15.5 - parent: 1668 - - uid: 1413 - components: - - type: Transform - pos: -4.5,16.5 - parent: 1668 - - uid: 1414 - components: - - type: Transform - pos: -4.5,14.5 - parent: 1668 - - uid: 1415 - components: - - type: Transform - pos: -4.5,13.5 - parent: 1668 - - uid: 1416 - components: - - type: Transform - pos: -4.5,12.5 - parent: 1668 - - uid: 1490 - components: - - type: Transform - pos: -5.5,13.5 - parent: 1668 - - uid: 1491 - components: - - type: Transform - pos: -7.5,13.5 - parent: 1668 - - uid: 1492 - components: - - type: Transform - pos: -9.5,13.5 - parent: 1668 - - uid: 1493 - components: - - type: Transform - pos: -8.5,13.5 - parent: 1668 - - uid: 1494 - components: - - type: Transform - pos: -8.5,14.5 - parent: 1668 - - uid: 1495 - components: - - type: Transform - pos: -11.5,13.5 - parent: 1668 - - uid: 1496 - components: - - type: Transform - pos: -12.5,13.5 - parent: 1668 - - uid: 1497 - components: - - type: Transform - pos: -13.5,13.5 - parent: 1668 - - uid: 1498 - components: - - type: Transform - pos: -14.5,13.5 - parent: 1668 - - uid: 1499 - components: - - type: Transform - pos: -15.5,13.5 - parent: 1668 - - uid: 1500 - components: - - type: Transform - pos: -16.5,13.5 - parent: 1668 - - uid: 1501 - components: - - type: Transform - pos: -16.5,14.5 - parent: 1668 - - uid: 1502 - components: - - type: Transform - pos: -16.5,15.5 - parent: 1668 - - uid: 1503 - components: - - type: Transform - pos: -16.5,16.5 - parent: 1668 - - uid: 1504 - components: - - type: Transform - pos: -14.5,18.5 - parent: 1668 - - uid: 1505 - components: - - type: Transform - pos: -8.5,16.5 - parent: 1668 - - uid: 1506 - components: - - type: Transform - pos: -8.5,17.5 - parent: 1668 - - uid: 1507 - components: - - type: Transform - pos: -8.5,18.5 - parent: 1668 - - uid: 1508 - components: - - type: Transform - pos: -7.5,18.5 - parent: 1668 - - uid: 1509 - components: - - type: Transform - pos: -4.5,18.5 - parent: 1668 - - uid: 1510 - components: - - type: Transform - pos: -5.5,18.5 - parent: 1668 - - uid: 1511 - components: - - type: Transform - pos: -9.5,18.5 - parent: 1668 - - uid: 1512 - components: - - type: Transform - pos: -11.5,18.5 - parent: 1668 - - uid: 1523 - components: - - type: Transform - pos: -2.5,18.5 - parent: 1668 - - uid: 1524 - components: - - type: Transform - pos: -2.5,19.5 - parent: 1668 - - uid: 1525 - components: - - type: Transform - pos: -3.5,19.5 - parent: 1668 - - uid: 1526 - components: - - type: Transform - pos: -4.5,19.5 - parent: 1668 - - uid: 1527 - components: - - type: Transform - pos: 1.5,18.5 - parent: 1668 - - uid: 1528 - components: - - type: Transform - pos: 1.5,19.5 - parent: 1668 - - uid: 1529 - components: - - type: Transform - pos: 2.5,19.5 - parent: 1668 - - uid: 1530 - components: - - type: Transform - pos: 3.5,19.5 - parent: 1668 - - uid: 1531 - components: - - type: Transform - pos: 3.5,18.5 - parent: 1668 - - uid: 1532 - components: - - type: Transform - pos: 0.5,17.5 - parent: 1668 - - uid: 1535 - components: - - type: Transform - pos: -1.5,17.5 - parent: 1668 - - uid: 1536 - components: - - type: Transform - pos: 3.5,21.5 - parent: 1668 - - uid: 1537 - components: - - type: Transform - pos: 3.5,20.5 - parent: 1668 - - uid: 1538 - components: - - type: Transform - pos: -14.5,19.5 - parent: 1668 - - uid: 1553 - components: - - type: Transform - pos: -4.5,20.5 - parent: 1668 - - uid: 1554 - components: - - type: Transform - pos: -4.5,22.5 - parent: 1668 - - uid: 1555 - components: - - type: Transform - pos: -4.5,23.5 - parent: 1668 - - uid: 1556 - components: - - type: Transform - pos: -4.5,24.5 - parent: 1668 - - uid: 1557 - components: - - type: Transform - pos: -4.5,25.5 - parent: 1668 - - uid: 1558 - components: - - type: Transform - pos: -4.5,26.5 - parent: 1668 - - uid: 1559 - components: - - type: Transform - pos: -4.5,27.5 - parent: 1668 - - uid: 1560 - components: - - type: Transform - pos: -4.5,28.5 - parent: 1668 - - uid: 1561 - components: - - type: Transform - pos: -4.5,29.5 - parent: 1668 - - uid: 1562 - components: - - type: Transform - pos: -4.5,30.5 - parent: 1668 - - uid: 1563 - components: - - type: Transform - pos: -4.5,31.5 - parent: 1668 - - uid: 1564 - components: - - type: Transform - pos: -4.5,32.5 - parent: 1668 - - uid: 1565 - components: - - type: Transform - pos: -5.5,32.5 - parent: 1668 - - uid: 1567 - components: - - type: Transform - pos: -11.5,32.5 - parent: 1668 - - uid: 1568 - components: - - type: Transform - pos: -11.5,34.5 - parent: 1668 - - uid: 1569 - components: - - type: Transform - pos: -7.5,33.5 - parent: 1668 - - uid: 1570 - components: - - type: Transform - pos: -7.5,32.5 - parent: 1668 - - uid: 1571 - components: - - type: Transform - pos: -11.5,33.5 - parent: 1668 - - uid: 1573 - components: - - type: Transform - pos: -13.5,32.5 - parent: 1668 - - uid: 1574 - components: - - type: Transform - pos: -14.5,32.5 - parent: 1668 - - uid: 1575 - components: - - type: Transform - pos: -14.5,31.5 - parent: 1668 - - uid: 1664 - components: - - type: Transform - pos: -7.5,34.5 - parent: 1668 - - uid: 1665 - components: - - type: Transform - pos: -8.5,34.5 - parent: 1668 - - uid: 1666 - components: - - type: Transform - pos: -10.5,34.5 - parent: 1668 - - uid: 1794 - components: - - type: Transform - pos: 3.5,22.5 - parent: 1668 - - uid: 1795 - components: - - type: Transform - pos: 2.5,22.5 - parent: 1668 - - uid: 1796 - components: - - type: Transform - pos: 1.5,22.5 - parent: 1668 - - uid: 1797 - components: - - type: Transform - pos: 0.5,22.5 - parent: 1668 - - uid: 1798 - components: - - type: Transform - pos: 0.5,23.5 - parent: 1668 - - uid: 1799 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1668 - - uid: 1800 - components: - - type: Transform - pos: -2.5,22.5 - parent: 1668 - - uid: 1801 - components: - - type: Transform - pos: -3.5,22.5 - parent: 1668 - - uid: 1994 - components: - - type: Transform - pos: 4.5,15.5 - parent: 1668 - - uid: 1995 - components: - - type: Transform - pos: 5.5,15.5 - parent: 1668 - - uid: 1996 - components: - - type: Transform - pos: 5.5,16.5 - parent: 1668 - - uid: 1997 - components: - - type: Transform - pos: 5.5,17.5 - parent: 1668 - - uid: 1998 - components: - - type: Transform - pos: 4.5,17.5 - parent: 1668 - - uid: 2005 - components: - - type: Transform - pos: 0.5,24.5 - parent: 1668 - - uid: 2006 - components: - - type: Transform - pos: 0.5,25.5 - parent: 1668 - - uid: 2007 - components: - - type: Transform - pos: -0.5,25.5 - parent: 1668 - - uid: 2008 - components: - - type: Transform - pos: -1.5,25.5 - parent: 1668 - - uid: 2009 - components: - - type: Transform - pos: -3.5,25.5 - parent: 1668 - - uid: 2238 - components: - - type: Transform - pos: 17.5,9.5 - parent: 1668 - - uid: 2239 - components: - - type: Transform - pos: 16.5,9.5 - parent: 1668 - - uid: 2245 - components: - - type: Transform - pos: 15.5,15.5 - parent: 1668 - - uid: 2251 - components: - - type: Transform - pos: 15.5,16.5 - parent: 1668 - - uid: 2252 - components: - - type: Transform - pos: 15.5,17.5 - parent: 1668 - - uid: 2253 - components: - - type: Transform - pos: 16.5,17.5 - parent: 1668 - - uid: 2254 - components: - - type: Transform - pos: 17.5,17.5 - parent: 1668 - - uid: 2255 - components: - - type: Transform - pos: 18.5,17.5 - parent: 1668 - - uid: 2256 - components: - - type: Transform - pos: 20.5,17.5 - parent: 1668 - - uid: 2257 - components: - - type: Transform - pos: 21.5,10.5 - parent: 1668 - - uid: 2258 - components: - - type: Transform - pos: 21.5,13.5 - parent: 1668 - - uid: 2259 - components: - - type: Transform - pos: 21.5,14.5 - parent: 1668 - - uid: 2260 - components: - - type: Transform - pos: 21.5,15.5 - parent: 1668 - - uid: 2261 - components: - - type: Transform - pos: 21.5,16.5 - parent: 1668 - - uid: 2262 - components: - - type: Transform - pos: 21.5,17.5 - parent: 1668 - - uid: 2263 - components: - - type: Transform - pos: 35.5,10.5 - parent: 1668 - - uid: 2264 - components: - - type: Transform - pos: 35.5,11.5 - parent: 1668 - - uid: 2265 - components: - - type: Transform - pos: 35.5,12.5 - parent: 1668 - - uid: 2266 - components: - - type: Transform - pos: 35.5,13.5 - parent: 1668 - - uid: 2267 - components: - - type: Transform - pos: 35.5,14.5 - parent: 1668 - - uid: 2268 - components: - - type: Transform - pos: 35.5,15.5 - parent: 1668 - - uid: 2274 - components: - - type: Transform - pos: 24.5,14.5 - parent: 1668 - - uid: 2275 - components: - - type: Transform - pos: 32.5,14.5 - parent: 1668 - - uid: 2292 - components: - - type: Transform - pos: 35.5,16.5 - parent: 1668 - - uid: 2293 - components: - - type: Transform - pos: 35.5,17.5 - parent: 1668 - - uid: 2294 - components: - - type: Transform - pos: 35.5,18.5 - parent: 1668 - - uid: 2295 - components: - - type: Transform - pos: 35.5,19.5 - parent: 1668 - - uid: 2296 - components: - - type: Transform - pos: 35.5,20.5 - parent: 1668 - - uid: 2297 - components: - - type: Transform - pos: 35.5,21.5 - parent: 1668 - - uid: 2298 - components: - - type: Transform - pos: 35.5,22.5 - parent: 1668 - - uid: 2301 - components: - - type: Transform - pos: 17.5,18.5 - parent: 1668 - - uid: 2302 - components: - - type: Transform - pos: 17.5,19.5 - parent: 1668 - - uid: 2303 - components: - - type: Transform - pos: 17.5,20.5 - parent: 1668 - - uid: 2304 - components: - - type: Transform - pos: 17.5,21.5 - parent: 1668 - - uid: 2305 - components: - - type: Transform - pos: 17.5,22.5 - parent: 1668 - - uid: 2306 - components: - - type: Transform - pos: 17.5,23.5 - parent: 1668 - - uid: 2307 - components: - - type: Transform - pos: 17.5,24.5 - parent: 1668 - - uid: 2308 - components: - - type: Transform - pos: 18.5,24.5 - parent: 1668 - - uid: 2309 - components: - - type: Transform - pos: 19.5,24.5 - parent: 1668 - - uid: 2310 - components: - - type: Transform - pos: 20.5,24.5 - parent: 1668 - - uid: 2311 - components: - - type: Transform - pos: 21.5,24.5 - parent: 1668 - - uid: 2312 - components: - - type: Transform - pos: 21.5,23.5 - parent: 1668 - - uid: 2313 - components: - - type: Transform - pos: 21.5,19.5 - parent: 1668 - - uid: 2314 - components: - - type: Transform - pos: 21.5,20.5 - parent: 1668 - - uid: 2315 - components: - - type: Transform - pos: 21.5,21.5 - parent: 1668 - - uid: 2318 - components: - - type: Transform - pos: 35.5,23.5 - parent: 1668 - - uid: 2319 - components: - - type: Transform - pos: 35.5,24.5 - parent: 1668 - - uid: 2320 - components: - - type: Transform - pos: 34.5,24.5 - parent: 1668 - - uid: 2321 - components: - - type: Transform - pos: 33.5,24.5 - parent: 1668 - - uid: 2322 - components: - - type: Transform - pos: 32.5,24.5 - parent: 1668 - - uid: 2323 - components: - - type: Transform - pos: 31.5,24.5 - parent: 1668 - - uid: 2324 - components: - - type: Transform - pos: 30.5,24.5 - parent: 1668 - - uid: 2325 - components: - - type: Transform - pos: 29.5,24.5 - parent: 1668 - - uid: 2326 - components: - - type: Transform - pos: 28.5,24.5 - parent: 1668 - - uid: 2327 - components: - - type: Transform - pos: 27.5,24.5 - parent: 1668 - - uid: 2328 - components: - - type: Transform - pos: 26.5,24.5 - parent: 1668 - - uid: 2329 - components: - - type: Transform - pos: 25.5,24.5 - parent: 1668 - - uid: 2330 - components: - - type: Transform - pos: 24.5,24.5 - parent: 1668 - - uid: 2331 - components: - - type: Transform - pos: 23.5,24.5 - parent: 1668 - - uid: 2332 - components: - - type: Transform - pos: 22.5,24.5 - parent: 1668 - - uid: 2333 - components: - - type: Transform - pos: 22.5,20.5 - parent: 1668 - - uid: 2334 - components: - - type: Transform - pos: 24.5,20.5 - parent: 1668 - - uid: 2335 - components: - - type: Transform - pos: 34.5,20.5 - parent: 1668 - - uid: 2336 - components: - - type: Transform - pos: 32.5,20.5 - parent: 1668 - - uid: 2350 - components: - - type: Transform - pos: 35.5,-28.5 - parent: 1668 - - uid: 2501 - components: - - type: Transform - pos: 13.5,16.5 - parent: 1668 - - uid: 2502 - components: - - type: Transform - pos: 13.5,17.5 - parent: 1668 - - uid: 2503 - components: - - type: Transform - pos: 13.5,18.5 - parent: 1668 - - uid: 2504 - components: - - type: Transform - pos: 13.5,19.5 - parent: 1668 - - uid: 2508 - components: - - type: Transform - pos: 10.5,19.5 - parent: 1668 - - uid: 2514 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1668 - - uid: 2515 - components: - - type: Transform - pos: 6.5,16.5 - parent: 1668 - - uid: 2516 - components: - - type: Transform - pos: 10.5,20.5 - parent: 1668 - - uid: 2517 - components: - - type: Transform - pos: 13.5,20.5 - parent: 1668 - - uid: 2518 - components: - - type: Transform - pos: 14.5,20.5 - parent: 1668 - - uid: 2519 - components: - - type: Transform - pos: 15.5,20.5 - parent: 1668 - - uid: 2520 - components: - - type: Transform - pos: 16.5,20.5 - parent: 1668 - - uid: 2547 - components: - - type: Transform - pos: 7.5,20.5 - parent: 1668 - - uid: 2548 - components: - - type: Transform - pos: 6.5,20.5 - parent: 1668 - - uid: 2549 - components: - - type: Transform - pos: 5.5,20.5 - parent: 1668 - - uid: 2550 - components: - - type: Transform - pos: 4.5,20.5 - parent: 1668 - - uid: 2551 - components: - - type: Transform - pos: 7.5,17.5 - parent: 1668 - - uid: 2552 - components: - - type: Transform - pos: 7.5,18.5 - parent: 1668 - - uid: 2559 - components: - - type: Transform - pos: 16.5,23.5 - parent: 1668 - - uid: 2560 - components: - - type: Transform - pos: 15.5,23.5 - parent: 1668 - - uid: 2561 - components: - - type: Transform - pos: 14.5,23.5 - parent: 1668 - - uid: 2748 - components: - - type: Transform - pos: 3.5,26.5 - parent: 1668 - - uid: 2749 - components: - - type: Transform - pos: 4.5,26.5 - parent: 1668 - - uid: 2750 - components: - - type: Transform - pos: 1.5,26.5 - parent: 1668 - - uid: 2751 - components: - - type: Transform - pos: 4.5,23.5 - parent: 1668 - - uid: 2753 - components: - - type: Transform - pos: 3.5,23.5 - parent: 1668 - - uid: 2757 - components: - - type: Transform - pos: 6.5,23.5 - parent: 1668 - - uid: 2759 - components: - - type: Transform - pos: 7.5,23.5 - parent: 1668 - - uid: 2761 - components: - - type: Transform - pos: 2.5,26.5 - parent: 1668 - - uid: 2766 - components: - - type: Transform - pos: 17.5,25.5 - parent: 1668 - - uid: 2767 - components: - - type: Transform - pos: 17.5,26.5 - parent: 1668 - - uid: 2768 - components: - - type: Transform - pos: 16.5,26.5 - parent: 1668 - - uid: 2769 - components: - - type: Transform - pos: 15.5,26.5 - parent: 1668 - - uid: 2770 - components: - - type: Transform - pos: 14.5,26.5 - parent: 1668 - - uid: 2783 - components: - - type: Transform - pos: 9.5,26.5 - parent: 1668 - - uid: 2788 - components: - - type: Transform - pos: 11.5,30.5 - parent: 1668 - - uid: 2789 - components: - - type: Transform - pos: 7.5,30.5 - parent: 1668 - - uid: 2793 - components: - - type: Transform - pos: 7.5,32.5 - parent: 1668 - - uid: 2794 - components: - - type: Transform - pos: 14.5,33.5 - parent: 1668 - - uid: 2795 - components: - - type: Transform - pos: 13.5,33.5 - parent: 1668 - - uid: 2796 - components: - - type: Transform - pos: 12.5,33.5 - parent: 1668 - - uid: 2797 - components: - - type: Transform - pos: 11.5,33.5 - parent: 1668 - - uid: 2798 - components: - - type: Transform - pos: 10.5,33.5 - parent: 1668 - - uid: 2799 - components: - - type: Transform - pos: 9.5,33.5 - parent: 1668 - - uid: 2800 - components: - - type: Transform - pos: 8.5,33.5 - parent: 1668 - - uid: 2801 - components: - - type: Transform - pos: 7.5,33.5 - parent: 1668 - - uid: 2802 - components: - - type: Transform - pos: 6.5,33.5 - parent: 1668 - - uid: 2803 - components: - - type: Transform - pos: 5.5,33.5 - parent: 1668 - - uid: 2804 - components: - - type: Transform - pos: 4.5,33.5 - parent: 1668 - - uid: 2805 - components: - - type: Transform - pos: 3.5,33.5 - parent: 1668 - - uid: 2806 - components: - - type: Transform - pos: 2.5,33.5 - parent: 1668 - - uid: 2807 - components: - - type: Transform - pos: 1.5,33.5 - parent: 1668 - - uid: 2814 - components: - - type: Transform - pos: 11.5,32.5 - parent: 1668 - - uid: 2833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,23.5 - parent: 1668 - - uid: 2834 - components: - - type: Transform - pos: 1.5,23.5 - parent: 1668 - - uid: 2835 - components: - - type: Transform - pos: 1.5,24.5 - parent: 1668 - - uid: 2836 - components: - - type: Transform - pos: 1.5,25.5 - parent: 1668 - - uid: 2837 - components: - - type: Transform - pos: 1.5,27.5 - parent: 1668 - - uid: 2838 - components: - - type: Transform - pos: 1.5,28.5 - parent: 1668 - - uid: 2839 - components: - - type: Transform - pos: 1.5,29.5 - parent: 1668 - - uid: 2840 - components: - - type: Transform - pos: 1.5,30.5 - parent: 1668 - - uid: 2841 - components: - - type: Transform - pos: 1.5,31.5 - parent: 1668 - - uid: 2842 - components: - - type: Transform - pos: 1.5,32.5 - parent: 1668 - - uid: 2843 - components: - - type: Transform - pos: 17.5,27.5 - parent: 1668 - - uid: 2844 - components: - - type: Transform - pos: 17.5,28.5 - parent: 1668 - - uid: 2845 - components: - - type: Transform - pos: 17.5,29.5 - parent: 1668 - - uid: 2846 - components: - - type: Transform - pos: 17.5,30.5 - parent: 1668 - - uid: 2847 - components: - - type: Transform - pos: 17.5,31.5 - parent: 1668 - - uid: 2848 - components: - - type: Transform - pos: 17.5,32.5 - parent: 1668 - - uid: 2849 - components: - - type: Transform - pos: 17.5,33.5 - parent: 1668 - - uid: 2850 - components: - - type: Transform - pos: 16.5,33.5 - parent: 1668 - - uid: 2851 - components: - - type: Transform - pos: 15.5,33.5 - parent: 1668 - - uid: 2852 - components: - - type: Transform - pos: 16.5,29.5 - parent: 1668 - - uid: 2853 - components: - - type: Transform - pos: 14.5,29.5 - parent: 1668 - - uid: 2854 - components: - - type: Transform - pos: 15.5,29.5 - parent: 1668 - - uid: 2855 - components: - - type: Transform - pos: 2.5,29.5 - parent: 1668 - - uid: 2856 - components: - - type: Transform - pos: 3.5,29.5 - parent: 1668 - - uid: 2857 - components: - - type: Transform - pos: 4.5,29.5 - parent: 1668 - - uid: 2883 - components: - - type: Transform - pos: 4.5,32.5 - parent: 1668 - - uid: 2884 - components: - - type: Transform - pos: 14.5,32.5 - parent: 1668 - - uid: 2885 - components: - - type: Transform - pos: 4.5,30.5 - parent: 1668 - - uid: 2888 - components: - - type: Transform - pos: 14.5,30.5 - parent: 1668 - - uid: 3140 - components: - - type: Transform - pos: 33.5,-0.5 - parent: 1668 - - uid: 3184 - components: - - type: Transform - pos: 0.5,26.5 - parent: 1668 - - uid: 3187 - components: - - type: Transform - pos: 0.5,27.5 - parent: 1668 - - uid: 3188 - components: - - type: Transform - pos: 0.5,28.5 - parent: 1668 - - uid: 3189 - components: - - type: Transform - pos: 0.5,29.5 - parent: 1668 - - uid: 3190 - components: - - type: Transform - pos: 0.5,30.5 - parent: 1668 - - uid: 3191 - components: - - type: Transform - pos: 0.5,31.5 - parent: 1668 - - uid: 3192 - components: - - type: Transform - pos: 0.5,32.5 - parent: 1668 - - uid: 3193 - components: - - type: Transform - pos: 0.5,33.5 - parent: 1668 - - uid: 3194 - components: - - type: Transform - pos: 0.5,34.5 - parent: 1668 - - uid: 3195 - components: - - type: Transform - pos: 1.5,34.5 - parent: 1668 - - uid: 3196 - components: - - type: Transform - pos: 2.5,34.5 - parent: 1668 - - uid: 3197 - components: - - type: Transform - pos: 3.5,34.5 - parent: 1668 - - uid: 3198 - components: - - type: Transform - pos: 4.5,34.5 - parent: 1668 - - uid: 3199 - components: - - type: Transform - pos: 5.5,34.5 - parent: 1668 - - uid: 3200 - components: - - type: Transform - pos: 6.5,34.5 - parent: 1668 - - uid: 3201 - components: - - type: Transform - pos: 7.5,34.5 - parent: 1668 - - uid: 3202 - components: - - type: Transform - pos: 8.5,34.5 - parent: 1668 - - uid: 3203 - components: - - type: Transform - pos: 9.5,34.5 - parent: 1668 - - uid: 3204 - components: - - type: Transform - pos: 10.5,34.5 - parent: 1668 - - uid: 3205 - components: - - type: Transform - pos: 11.5,34.5 - parent: 1668 - - uid: 3206 - components: - - type: Transform - pos: 12.5,34.5 - parent: 1668 - - uid: 3207 - components: - - type: Transform - pos: 13.5,34.5 - parent: 1668 - - uid: 3208 - components: - - type: Transform - pos: 14.5,34.5 - parent: 1668 - - uid: 3209 - components: - - type: Transform - pos: 15.5,34.5 - parent: 1668 - - uid: 3210 - components: - - type: Transform - pos: 16.5,34.5 - parent: 1668 - - uid: 3211 - components: - - type: Transform - pos: 17.5,34.5 - parent: 1668 - - uid: 3212 - components: - - type: Transform - pos: 18.5,34.5 - parent: 1668 - - uid: 3213 - components: - - type: Transform - pos: 18.5,33.5 - parent: 1668 - - uid: 3214 - components: - - type: Transform - pos: 18.5,32.5 - parent: 1668 - - uid: 3215 - components: - - type: Transform - pos: 18.5,31.5 - parent: 1668 - - uid: 3216 - components: - - type: Transform - pos: 18.5,30.5 - parent: 1668 - - uid: 3217 - components: - - type: Transform - pos: 18.5,29.5 - parent: 1668 - - uid: 3218 - components: - - type: Transform - pos: 18.5,28.5 - parent: 1668 - - uid: 3219 - components: - - type: Transform - pos: 18.5,27.5 - parent: 1668 - - uid: 3220 - components: - - type: Transform - pos: 18.5,26.5 - parent: 1668 - - uid: 3221 - components: - - type: Transform - pos: 18.5,25.5 - parent: 1668 - - uid: 3222 - components: - - type: Transform - pos: 35.5,25.5 - parent: 1668 - - uid: 3223 - components: - - type: Transform - pos: 34.5,25.5 - parent: 1668 - - uid: 3224 - components: - - type: Transform - pos: 33.5,25.5 - parent: 1668 - - uid: 3225 - components: - - type: Transform - pos: 32.5,25.5 - parent: 1668 - - uid: 3226 - components: - - type: Transform - pos: 31.5,25.5 - parent: 1668 - - uid: 3227 - components: - - type: Transform - pos: 30.5,25.5 - parent: 1668 - - uid: 3228 - components: - - type: Transform - pos: 29.5,25.5 - parent: 1668 - - uid: 3229 - components: - - type: Transform - pos: 28.5,25.5 - parent: 1668 - - uid: 3230 - components: - - type: Transform - pos: 27.5,25.5 - parent: 1668 - - uid: 3231 - components: - - type: Transform - pos: 26.5,25.5 - parent: 1668 - - uid: 3232 - components: - - type: Transform - pos: 25.5,25.5 - parent: 1668 - - uid: 3233 - components: - - type: Transform - pos: 24.5,25.5 - parent: 1668 - - uid: 3234 - components: - - type: Transform - pos: 23.5,25.5 - parent: 1668 - - uid: 3235 - components: - - type: Transform - pos: 22.5,25.5 - parent: 1668 - - uid: 3236 - components: - - type: Transform - pos: 21.5,25.5 - parent: 1668 - - uid: 3237 - components: - - type: Transform - pos: 20.5,25.5 - parent: 1668 - - uid: 3238 - components: - - type: Transform - pos: 19.5,25.5 - parent: 1668 - - uid: 3262 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 1668 - - uid: 3263 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 1668 - - uid: 3264 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 1668 - - uid: 3265 - components: - - type: Transform - pos: -13.5,-10.5 - parent: 1668 - - uid: 3266 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 1668 - - uid: 3267 - components: - - type: Transform - pos: -15.5,-10.5 - parent: 1668 - - uid: 3268 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 1668 - - uid: 3269 - components: - - type: Transform - pos: -17.5,-10.5 - parent: 1668 - - uid: 3270 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 1668 - - uid: 3271 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 1668 - - uid: 3272 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 1668 - - uid: 3273 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 1668 - - uid: 3274 - components: - - type: Transform - pos: -17.5,13.5 - parent: 1668 - - uid: 3275 - components: - - type: Transform - pos: -18.5,13.5 - parent: 1668 - - uid: 3276 - components: - - type: Transform - pos: -19.5,13.5 - parent: 1668 - - uid: 3277 - components: - - type: Transform - pos: -19.5,14.5 - parent: 1668 - - uid: 3278 - components: - - type: Transform - pos: -19.5,15.5 - parent: 1668 - - uid: 3279 - components: - - type: Transform - pos: -19.5,16.5 - parent: 1668 - - uid: 3280 - components: - - type: Transform - pos: -20.5,16.5 - parent: 1668 - - uid: 3281 - components: - - type: Transform - pos: -21.5,16.5 - parent: 1668 - - uid: 3282 - components: - - type: Transform - pos: -22.5,16.5 - parent: 1668 - - uid: 3283 - components: - - type: Transform - pos: -22.5,15.5 - parent: 1668 - - uid: 3284 - components: - - type: Transform - pos: -22.5,14.5 - parent: 1668 - - uid: 3285 - components: - - type: Transform - pos: -22.5,13.5 - parent: 1668 - - uid: 3286 - components: - - type: Transform - pos: -20.5,13.5 - parent: 1668 - - uid: 3294 - components: - - type: Transform - pos: -10.5,3.5 - parent: 1668 - - uid: 3295 - components: - - type: Transform - pos: -11.5,3.5 - parent: 1668 - - uid: 3296 - components: - - type: Transform - pos: -12.5,3.5 - parent: 1668 - - uid: 3297 - components: - - type: Transform - pos: -13.5,3.5 - parent: 1668 - - uid: 3298 - components: - - type: Transform - pos: -14.5,3.5 - parent: 1668 - - uid: 3299 - components: - - type: Transform - pos: -15.5,3.5 - parent: 1668 - - uid: 3300 - components: - - type: Transform - pos: -16.5,3.5 - parent: 1668 - - uid: 3301 - components: - - type: Transform - pos: -17.5,3.5 - parent: 1668 - - uid: 3302 - components: - - type: Transform - pos: -17.5,2.5 - parent: 1668 - - uid: 3303 - components: - - type: Transform - pos: -17.5,1.5 - parent: 1668 - - uid: 3304 - components: - - type: Transform - pos: -13.5,1.5 - parent: 1668 - - uid: 3305 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 1668 - - uid: 3306 - components: - - type: Transform - pos: -11.5,-2.5 - parent: 1668 - - uid: 3307 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 1668 - - uid: 3308 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 1668 - - uid: 3309 - components: - - type: Transform - pos: -14.5,-2.5 - parent: 1668 - - uid: 3310 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 1668 - - uid: 3311 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 1668 - - uid: 3312 - components: - - type: Transform - pos: -17.5,-2.5 - parent: 1668 - - uid: 3313 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 1668 - - uid: 3314 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 1668 - - uid: 3315 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 1668 - - uid: 3316 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 1668 - - uid: 3317 - components: - - type: Transform - pos: -18.5,1.5 - parent: 1668 - - uid: 3318 - components: - - type: Transform - pos: -19.5,1.5 - parent: 1668 - - uid: 3319 - components: - - type: Transform - pos: -20.5,1.5 - parent: 1668 - - uid: 3320 - components: - - type: Transform - pos: -23.5,13.5 - parent: 1668 - - uid: 3321 - components: - - type: Transform - pos: -24.5,13.5 - parent: 1668 - - uid: 3322 - components: - - type: Transform - pos: -25.5,13.5 - parent: 1668 - - uid: 3323 - components: - - type: Transform - pos: -26.5,13.5 - parent: 1668 - - uid: 3324 - components: - - type: Transform - pos: -27.5,13.5 - parent: 1668 - - uid: 3325 - components: - - type: Transform - pos: -27.5,10.5 - parent: 1668 - - uid: 3326 - components: - - type: Transform - pos: -27.5,7.5 - parent: 1668 - - uid: 3331 - components: - - type: Transform - pos: -17.5,12.5 - parent: 1668 - - uid: 3332 - components: - - type: Transform - pos: -17.5,10.5 - parent: 1668 - - uid: 3333 - components: - - type: Transform - pos: -17.5,9.5 - parent: 1668 - - uid: 3334 - components: - - type: Transform - pos: -17.5,8.5 - parent: 1668 - - uid: 3335 - components: - - type: Transform - pos: -17.5,7.5 - parent: 1668 - - uid: 3336 - components: - - type: Transform - pos: -13.5,6.5 - parent: 1668 - - uid: 3337 - components: - - type: Transform - pos: -13.5,4.5 - parent: 1668 - - uid: 3338 - components: - - type: Transform - pos: -14.5,7.5 - parent: 1668 - - uid: 3339 - components: - - type: Transform - pos: -15.5,7.5 - parent: 1668 - - uid: 3340 - components: - - type: Transform - pos: -16.5,7.5 - parent: 1668 - - uid: 3341 - components: - - type: Transform - pos: -17.5,4.5 - parent: 1668 - - uid: 3342 - components: - - type: Transform - pos: -17.5,6.5 - parent: 1668 - - uid: 3343 - components: - - type: Transform - pos: -18.5,7.5 - parent: 1668 - - uid: 3344 - components: - - type: Transform - pos: -20.5,7.5 - parent: 1668 - - uid: 3345 - components: - - type: Transform - pos: -21.5,7.5 - parent: 1668 - - uid: 3346 - components: - - type: Transform - pos: -22.5,7.5 - parent: 1668 - - uid: 3347 - components: - - type: Transform - pos: -22.5,1.5 - parent: 1668 - - uid: 3348 - components: - - type: Transform - pos: -26.5,7.5 - parent: 1668 - - uid: 3349 - components: - - type: Transform - pos: -25.5,7.5 - parent: 1668 - - uid: 3350 - components: - - type: Transform - pos: -24.5,7.5 - parent: 1668 - - uid: 3351 - components: - - type: Transform - pos: -25.5,6.5 - parent: 1668 - - uid: 3352 - components: - - type: Transform - pos: -23.5,1.5 - parent: 1668 - - uid: 3353 - components: - - type: Transform - pos: -24.5,1.5 - parent: 1668 - - uid: 3354 - components: - - type: Transform - pos: -25.5,1.5 - parent: 1668 - - uid: 3355 - components: - - type: Transform - pos: -25.5,2.5 - parent: 1668 - - uid: 3356 - components: - - type: Transform - pos: -25.5,3.5 - parent: 1668 - - uid: 3357 - components: - - type: Transform - pos: -25.5,4.5 - parent: 1668 - - uid: 3358 - components: - - type: Transform - pos: -25.5,5.5 - parent: 1668 - - uid: 3359 - components: - - type: Transform - pos: -28.5,1.5 - parent: 1668 - - uid: 3360 - components: - - type: Transform - pos: -28.5,2.5 - parent: 1668 - - uid: 3361 - components: - - type: Transform - pos: -28.5,3.5 - parent: 1668 - - uid: 3362 - components: - - type: Transform - pos: -26.5,1.5 - parent: 1668 - - uid: 3363 - components: - - type: Transform - pos: -28.5,5.5 - parent: 1668 - - uid: 3364 - components: - - type: Transform - pos: -28.5,6.5 - parent: 1668 - - uid: 3365 - components: - - type: Transform - pos: -28.5,7.5 - parent: 1668 - - uid: 3366 - components: - - type: Transform - pos: -27.5,1.5 - parent: 1668 - - uid: 3367 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 1668 - - uid: 3368 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 1668 - - uid: 3369 - components: - - type: Transform - pos: -24.5,-10.5 - parent: 1668 - - uid: 3370 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 1668 - - uid: 3371 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 1668 - - uid: 3372 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 1668 - - uid: 3373 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 1668 - - uid: 3374 - components: - - type: Transform - pos: -18.5,-2.5 - parent: 1668 - - uid: 3375 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 1668 - - uid: 3376 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 1668 - - uid: 3377 - components: - - type: Transform - pos: -24.5,-2.5 - parent: 1668 - - uid: 3378 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 1668 - - uid: 3379 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 1668 - - uid: 3380 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 1668 - - uid: 3381 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 1668 - - uid: 3382 - components: - - type: Transform - pos: -28.5,-3.5 - parent: 1668 - - uid: 3383 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 1668 - - uid: 3384 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 1668 - - uid: 3443 - components: - - type: Transform - pos: -17.5,14.5 - parent: 1668 - - uid: 3444 - components: - - type: Transform - pos: -18.5,14.5 - parent: 1668 - - uid: 3780 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 1668 - - uid: 3783 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 1668 - - uid: 3784 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 1668 - - uid: 3785 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 1668 - - uid: 3786 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 1668 - - uid: 3919 - components: - - type: Transform - pos: -29.5,2.5 - parent: 1668 - - uid: 3920 - components: - - type: Transform - pos: -31.5,2.5 - parent: 1668 - - uid: 3921 - components: - - type: Transform - pos: -32.5,2.5 - parent: 1668 - - uid: 3922 - components: - - type: Transform - pos: -33.5,2.5 - parent: 1668 - - uid: 3923 - components: - - type: Transform - pos: -34.5,2.5 - parent: 1668 - - uid: 3924 - components: - - type: Transform - pos: -34.5,-3.5 - parent: 1668 - - uid: 3925 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 1668 - - uid: 3926 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 1668 - - uid: 3927 - components: - - type: Transform - pos: -31.5,-3.5 - parent: 1668 - - uid: 3928 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 1668 - - uid: 3929 - components: - - type: Transform - pos: -29.5,-3.5 - parent: 1668 - - uid: 3930 - components: - - type: Transform - pos: -29.5,7.5 - parent: 1668 - - uid: 3931 - components: - - type: Transform - pos: -31.5,7.5 - parent: 1668 - - uid: 3932 - components: - - type: Transform - pos: -34.5,7.5 - parent: 1668 - - uid: 4188 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 1668 - - uid: 4190 - components: - - type: Transform - pos: 5.5,-17.5 - parent: 1668 - - uid: 4191 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 1668 - - uid: 4192 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 1668 - - uid: 4193 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 1668 - - uid: 4194 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 1668 - - uid: 4195 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 1668 - - uid: 4196 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 1668 - - uid: 4197 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 1668 - - uid: 4198 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 1668 - - uid: 4199 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 1668 - - uid: 4202 - components: - - type: Transform - pos: -2.5,-20.5 - parent: 1668 - - uid: 4203 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 1668 - - uid: 4204 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 1668 - - uid: 4205 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 1668 - - uid: 4206 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 1668 - - uid: 4207 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 1668 - - uid: 4208 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 1668 - - uid: 4209 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 1668 - - uid: 4210 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 1668 - - uid: 4211 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 1668 - - uid: 4212 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 1668 - - uid: 4213 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 1668 - - uid: 4214 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 1668 - - uid: 4215 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 1668 - - uid: 4216 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 1668 - - uid: 4217 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 1668 - - uid: 4218 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 1668 - - uid: 4219 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 1668 - - uid: 4220 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 1668 - - uid: 4221 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 1668 - - uid: 4234 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 1668 - - uid: 4235 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 1668 - - uid: 4236 - components: - - type: Transform - pos: -15.5,-16.5 - parent: 1668 - - uid: 4237 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 1668 - - uid: 4238 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 1668 - - uid: 4239 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 1668 - - uid: 4240 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 1668 - - uid: 4244 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 1668 - - uid: 4245 - components: - - type: Transform - pos: -11.5,-20.5 - parent: 1668 - - uid: 4246 - components: - - type: Transform - pos: -10.5,-20.5 - parent: 1668 - - uid: 4247 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 1668 - - uid: 4248 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 1668 - - uid: 4249 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 1668 - - uid: 4250 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 1668 - - uid: 4267 - components: - - type: Transform - pos: -12.5,-21.5 - parent: 1668 - - uid: 4268 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 1668 - - uid: 4269 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 1668 - - uid: 4270 - components: - - type: Transform - pos: -6.5,-21.5 - parent: 1668 - - uid: 4271 - components: - - type: Transform - pos: -6.5,-22.5 - parent: 1668 - - uid: 4272 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 1668 - - uid: 4273 - components: - - type: Transform - pos: -6.5,-24.5 - parent: 1668 - - uid: 4274 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 1668 - - uid: 4275 - components: - - type: Transform - pos: -8.5,-28.5 - parent: 1668 - - uid: 4276 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 1668 - - uid: 4277 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 1668 - - uid: 4278 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 1668 - - uid: 4279 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 1668 - - uid: 4280 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 1668 - - uid: 4281 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 1668 - - uid: 4282 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 1668 - - uid: 4283 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 1668 - - uid: 4284 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 1668 - - uid: 4285 - components: - - type: Transform - pos: -12.5,-24.5 - parent: 1668 - - uid: 4288 - components: - - type: Transform - pos: 11.5,-29.5 - parent: 1668 - - uid: 4289 - components: - - type: Transform - pos: 10.5,-29.5 - parent: 1668 - - uid: 4290 - components: - - type: Transform - pos: 9.5,-29.5 - parent: 1668 - - uid: 4291 - components: - - type: Transform - pos: 8.5,-29.5 - parent: 1668 - - uid: 4292 - components: - - type: Transform - pos: 7.5,-29.5 - parent: 1668 - - uid: 4293 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 1668 - - uid: 4294 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 1668 - - uid: 4295 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 1668 - - uid: 4296 - components: - - type: Transform - pos: 11.5,-25.5 - parent: 1668 - - uid: 4297 - components: - - type: Transform - pos: 11.5,-24.5 - parent: 1668 - - uid: 4298 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 1668 - - uid: 4300 - components: - - type: Transform - pos: 7.5,-24.5 - parent: 1668 - - uid: 4301 - components: - - type: Transform - pos: 5.5,-24.5 - parent: 1668 - - uid: 4302 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 1668 - - uid: 4303 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 1668 - - uid: 4304 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 1668 - - uid: 4330 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 1668 - - uid: 4331 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 1668 - - uid: 4332 - components: - - type: Transform - pos: -4.5,-24.5 - parent: 1668 - - uid: 4333 - components: - - type: Transform - pos: -5.5,-24.5 - parent: 1668 - - uid: 4335 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 1668 - - uid: 4336 - components: - - type: Transform - pos: 2.5,-24.5 - parent: 1668 - - uid: 4337 - components: - - type: Transform - pos: 3.5,-24.5 - parent: 1668 - - uid: 4338 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 1668 - - uid: 4353 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 1668 - - uid: 4356 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 1668 - - uid: 4357 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 1668 - - uid: 4358 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 1668 - - uid: 4362 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 1668 - - uid: 4363 - components: - - type: Transform - pos: 2.5,-30.5 - parent: 1668 - - uid: 4364 - components: - - type: Transform - pos: 3.5,-30.5 - parent: 1668 - - uid: 4368 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 1668 - - uid: 4641 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 1668 - - uid: 4642 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 1668 - - uid: 4643 - components: - - type: Transform - pos: -15.5,-23.5 - parent: 1668 - - uid: 4644 - components: - - type: Transform - pos: -15.5,-22.5 - parent: 1668 - - uid: 4645 - components: - - type: Transform - pos: -15.5,-21.5 - parent: 1668 - - uid: 4646 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 1668 - - uid: 4647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 1668 - - uid: 4648 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-30.5 + pos: 32.5,-10.5 parent: 1668 - - uid: 4654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1668 - - uid: 4655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 1668 - - uid: 4656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 1668 - - uid: 4657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 1668 - - uid: 4658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-34.5 - parent: 1668 - - uid: 4659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 1668 - - uid: 4660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 1668 - - uid: 4661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 1668 - - uid: 4662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 1668 - - uid: 4666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 1668 - - uid: 4670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 1668 - - uid: 4674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 1668 - - uid: 4675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 1668 - - uid: 4676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 - parent: 1668 - - uid: 4677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 1668 - - uid: 4678 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 1668 - - uid: 4679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 1668 - - uid: 4680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 1668 - - uid: 4681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 1668 - - uid: 4682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-32.5 - parent: 1668 - - uid: 4683 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 1668 - - uid: 4684 - components: - - type: Transform - pos: 35.5,-18.5 - parent: 1668 - - uid: 4685 - components: - - type: Transform - pos: 35.5,-19.5 - parent: 1668 - - uid: 4686 - components: - - type: Transform - pos: 35.5,-20.5 - parent: 1668 - - uid: 4687 - components: - - type: Transform - pos: 35.5,-22.5 - parent: 1668 - - uid: 4688 - components: - - type: Transform - pos: 35.5,-23.5 - parent: 1668 - - uid: 4689 - components: - - type: Transform - pos: 35.5,-24.5 - parent: 1668 - - uid: 4690 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 1668 - - uid: 4691 - components: - - type: Transform - pos: 35.5,-25.5 - parent: 1668 - - uid: 4692 - components: - - type: Transform - pos: 35.5,-26.5 - parent: 1668 - - uid: 4693 - components: - - type: Transform - pos: 35.5,-27.5 - parent: 1668 - - uid: 4699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 1668 - - uid: 4700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 1668 - - uid: 4701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 1668 - - uid: 4704 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 1668 - - uid: 4705 - components: - - type: Transform - pos: 21.5,-33.5 - parent: 1668 - - uid: 4706 - components: - - type: Transform - pos: 26.5,-31.5 - parent: 1668 - - uid: 4707 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 1668 - - uid: 4708 - components: - - type: Transform - pos: 26.5,-30.5 - parent: 1668 - - uid: 4709 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 1668 - - uid: 4710 - components: - - type: Transform - pos: 26.5,-28.5 - parent: 1668 - - uid: 4717 - components: - - type: Transform - pos: 20.5,-33.5 - parent: 1668 - - uid: 4718 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 1668 - - uid: 4719 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 1668 - - uid: 4720 - components: - - type: Transform - pos: 18.5,-32.5 - parent: 1668 - - uid: 4724 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 1668 - - uid: 4725 - components: - - type: Transform - pos: 14.5,-22.5 - parent: 1668 - - uid: 4726 - components: - - type: Transform - pos: 22.5,-27.5 - parent: 1668 - - uid: 4727 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 1668 - - uid: 4728 - components: - - type: Transform - pos: 20.5,-27.5 - parent: 1668 - - uid: 4729 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 1668 - - uid: 4730 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 1668 - - uid: 4731 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 1668 - - uid: 4732 - components: - - type: Transform - pos: 19.5,-27.5 - parent: 1668 - - uid: 4733 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 1668 - - uid: 4734 - components: - - type: Transform - pos: 18.5,-27.5 - parent: 1668 - - uid: 4735 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 1668 - - uid: 4736 - components: - - type: Transform - pos: 17.5,-28.5 - parent: 1668 - - uid: 4737 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 1668 - - uid: 4738 - components: - - type: Transform - pos: 15.5,-28.5 - parent: 1668 - - uid: 4739 - components: - - type: Transform - pos: 14.5,-28.5 - parent: 1668 - - uid: 4740 - components: - - type: Transform - pos: 14.5,-29.5 - parent: 1668 - - uid: 4741 - components: - - type: Transform - pos: 18.5,-33.5 - parent: 1668 - - uid: 4742 - components: - - type: Transform - pos: 14.5,-31.5 - parent: 1668 - - uid: 4743 - components: - - type: Transform - pos: 22.5,-26.5 - parent: 1668 - - uid: 4744 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 1668 - - uid: 4745 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 1668 - - uid: 4747 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 1668 - - uid: 4748 - components: - - type: Transform - pos: 22.5,-24.5 - parent: 1668 - - uid: 4758 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 1668 - - uid: 4759 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 1668 - - uid: 4760 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 1668 - - uid: 4761 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 1668 - - uid: 5041 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 1668 - - uid: 5042 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 1668 - - uid: 5043 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 1668 - - uid: 5044 - components: - - type: Transform - pos: 22.5,-19.5 - parent: 1668 - - uid: 5048 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 1668 - - uid: 5049 - components: - - type: Transform - pos: 33.5,-14.5 - parent: 1668 - - uid: 5050 - components: - - type: Transform - pos: 34.5,-14.5 - parent: 1668 - - uid: 5052 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 1668 - - uid: 5053 - components: - - type: Transform - pos: 24.5,-27.5 - parent: 1668 - - uid: 5054 - components: - - type: Transform - pos: 25.5,-27.5 - parent: 1668 - - uid: 5055 - components: - - type: Transform - pos: 26.5,-27.5 - parent: 1668 - - uid: 5057 - components: - - type: Transform - pos: 28.5,-27.5 - parent: 1668 - - uid: 5059 - components: - - type: Transform - pos: 30.5,-27.5 - parent: 1668 - - uid: 5060 - components: - - type: Transform - pos: 31.5,-27.5 - parent: 1668 - - uid: 5061 - components: - - type: Transform - pos: 32.5,-27.5 - parent: 1668 - - uid: 5062 - components: - - type: Transform - pos: 33.5,-27.5 - parent: 1668 - - uid: 5063 - components: - - type: Transform - pos: 34.5,-27.5 - parent: 1668 - - uid: 5102 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 1668 - - uid: 5103 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1668 - - uid: 5104 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 1668 - - uid: 5105 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 1668 - - uid: 5106 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 1668 - - uid: 5107 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 1668 - - uid: 5113 - components: - - type: Transform - pos: 28.5,-26.5 - parent: 1668 - - uid: 5119 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 1668 - - uid: 5120 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 1668 - - uid: 5344 - components: - - type: Transform - pos: 33.5,-32.5 - parent: 1668 - - uid: 5355 - components: - - type: Transform - pos: 31.5,-32.5 - parent: 1668 - - uid: 5388 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 1668 - - uid: 5390 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 1668 - - uid: 5392 - components: - - type: Transform - pos: 32.5,-32.5 - parent: 1668 - - uid: 5396 - components: - - type: Transform - pos: 26.5,-33.5 - parent: 1668 - - uid: 5405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 1668 - - uid: 5409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-31.5 - parent: 1668 - - uid: 5784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 1668 - - uid: 5864 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 1668 - - uid: 5879 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 1668 - - uid: 5881 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 1668 - - uid: 5882 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 1668 - - uid: 5905 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 1668 - - uid: 5909 + - uid: 1585 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-34.5 + pos: 18.5,12.5 parent: 1668 - - uid: 5913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-34.5 - parent: 1668 - - uid: 5917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 1668 - - uid: 5918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 1668 - - uid: 5919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 1668 - - uid: 5920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 1668 - - uid: 5921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 1668 - - uid: 5930 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 1668 - - uid: 5931 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 1668 - - uid: 5941 - components: - - type: Transform - pos: -17.5,-27.5 - parent: 1668 - - uid: 5942 - components: - - type: Transform - pos: -16.5,-22.5 - parent: 1668 - - uid: 5943 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 1668 - - uid: 5944 - components: - - type: Transform - pos: -17.5,-23.5 - parent: 1668 - - uid: 5963 - components: - - type: Transform - pos: -21.5,-30.5 - parent: 1668 - - uid: 5964 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 1668 - - uid: 5965 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 1668 - - uid: 5966 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 1668 - - uid: 5967 - components: - - type: Transform - pos: -23.5,-21.5 - parent: 1668 - - uid: 5968 - components: - - type: Transform - pos: -22.5,-21.5 - parent: 1668 - - uid: 5969 - components: - - type: Transform - pos: -21.5,-21.5 - parent: 1668 - - uid: 5970 - components: - - type: Transform - pos: -17.5,-21.5 - parent: 1668 - - uid: 5971 - components: - - type: Transform - pos: -16.5,-21.5 - parent: 1668 - - uid: 5972 - components: - - type: Transform - pos: -23.5,-28.5 - parent: 1668 - - uid: 5973 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 1668 - - uid: 5974 - components: - - type: Transform - pos: -21.5,-28.5 - parent: 1668 - - uid: 5975 - components: - - type: Transform - pos: -21.5,-22.5 - parent: 1668 - - uid: 6101 - components: - - type: Transform - pos: 28.5,-32.5 - parent: 1668 - - uid: 6233 - components: - - type: Transform - pos: -6.5,-35.5 - parent: 1668 - - uid: 6234 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 1668 - - uid: 6235 - components: - - type: Transform - pos: -6.5,-37.5 - parent: 1668 - - uid: 6236 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 1668 - - uid: 6237 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 1668 - - uid: 6238 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 1668 - - uid: 6241 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 1668 - - uid: 6242 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 1668 - - uid: 6246 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 1668 - - uid: 6247 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 1668 - - uid: 6248 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 1668 - - uid: 6249 - components: - - type: Transform - pos: 5.5,-37.5 - parent: 1668 - - uid: 6250 - components: - - type: Transform - pos: 5.5,-36.5 - parent: 1668 - - uid: 6251 - components: - - type: Transform - pos: 5.5,-35.5 - parent: 1668 - - uid: 6271 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 1668 - - uid: 6272 - components: - - type: Transform - pos: 2.5,-39.5 - parent: 1668 - - uid: 6273 - components: - - type: Transform - pos: 2.5,-40.5 - parent: 1668 - - uid: 6274 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 1668 - - uid: 6292 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 1668 - - uid: 6293 - components: - - type: Transform - pos: -3.5,-45.5 - parent: 1668 - - uid: 6294 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 1668 - - uid: 6297 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 1668 - - uid: 6298 - components: - - type: Transform - pos: 2.5,-45.5 - parent: 1668 - - uid: 6299 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 1668 - - uid: 6361 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 1668 - - uid: 6362 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 1668 - - uid: 6363 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 1668 - - uid: 6364 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 1668 - - uid: 6365 - components: - - type: Transform - pos: -7.5,-43.5 - parent: 1668 - - uid: 6366 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 1668 - - uid: 6367 - components: - - type: Transform - pos: -7.5,-41.5 - parent: 1668 - - uid: 6368 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 1668 - - uid: 6369 - components: - - type: Transform - pos: -7.5,-39.5 - parent: 1668 - - uid: 6370 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 1668 - - uid: 6371 - components: - - type: Transform - pos: -7.5,-37.5 - parent: 1668 - - uid: 6372 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 1668 - - uid: 6373 - components: - - type: Transform - pos: -7.5,-35.5 - parent: 1668 - - uid: 6374 - components: - - type: Transform - pos: 6.5,-35.5 - parent: 1668 - - uid: 6375 - components: - - type: Transform - pos: 6.5,-36.5 - parent: 1668 - - uid: 6376 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 1668 - - uid: 6377 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 1668 - - uid: 6378 - components: - - type: Transform - pos: 6.5,-39.5 - parent: 1668 - - uid: 6379 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 1668 - - uid: 6380 - components: - - type: Transform - pos: 6.5,-41.5 - parent: 1668 - - uid: 6381 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 1668 - - uid: 6382 - components: - - type: Transform - pos: 6.5,-43.5 - parent: 1668 - - uid: 6383 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 1668 - - uid: 6384 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 1668 - - uid: 6385 - components: - - type: Transform - pos: 4.5,-44.5 - parent: 1668 - - uid: 6386 - components: - - type: Transform - pos: 3.5,-44.5 - parent: 1668 - - uid: 6387 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 1668 - - uid: 6388 - components: - - type: Transform - pos: 2.5,-41.5 - parent: 1668 - - uid: 6389 - components: - - type: Transform - pos: -3.5,-43.5 - parent: 1668 - - uid: 6390 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 1668 - - uid: 6534 - components: - - type: Transform - pos: 7.5,-35.5 - parent: 1668 - - uid: 6535 - components: - - type: Transform - pos: 8.5,-35.5 - parent: 1668 - - uid: 6536 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 1668 - - uid: 6537 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 1668 - - uid: 6538 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 1668 - - uid: 6539 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 1668 - - uid: 6540 - components: - - type: Transform - pos: 13.5,-35.5 - parent: 1668 - - uid: 6541 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 1668 - - uid: 6542 - components: - - type: Transform - pos: 15.5,-35.5 - parent: 1668 - - uid: 6543 - components: - - type: Transform - pos: 15.5,-34.5 - parent: 1668 - - uid: 6544 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 1668 - - uid: 6545 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 1668 - - uid: 6546 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 1668 - - uid: 6772 - components: - - type: Transform - pos: 27.5,-32.5 - parent: 1668 - - uid: 6778 - components: - - type: Transform - pos: 30.5,-32.5 - parent: 1668 - - uid: 6785 - components: - - type: Transform - pos: 29.5,-32.5 - parent: 1668 - - uid: 6788 - components: - - type: Transform - pos: 29.5,-27.5 - parent: 1668 - - uid: 6842 - components: - - type: Transform - pos: 34.5,-32.5 - parent: 1668 -- proto: WardrobeCargoFilled - entities: - - uid: 2208 - components: - - type: Transform - pos: -5.5,19.5 - parent: 1668 -- proto: WardrobePrisonFilled - entities: - - uid: 2765 - components: - - type: Transform - pos: 15.5,21.5 - parent: 1668 - - uid: 2773 - components: - - type: Transform - pos: 15.5,24.5 - parent: 1668 - - uid: 2871 - components: - - type: Transform - pos: 2.5,24.5 - parent: 1668 - - uid: 2872 - components: - - type: Transform - pos: 2.5,27.5 - parent: 1668 - - uid: 2873 - components: - - type: Transform - pos: 15.5,27.5 - parent: 1668 -- proto: WarpPoint - entities: - - uid: 6637 - components: - - type: Transform - pos: -0.5,3.5 - parent: 1668 - - type: WarpPoint - location: Centcomm -- proto: WaterCooler - entities: - - uid: 5318 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 1668 -- proto: WaterTankFull - entities: - - uid: 128 - components: - - type: Transform - pos: -27.5,2.5 - parent: 1668 - - uid: 2042 - components: - - type: Transform - pos: -1.5,18.5 - parent: 1668 -- proto: WeaponAdvancedLaser - entities: - - uid: 3130 - components: - - type: Transform - pos: 10.557603,32.615883 - parent: 1668 - - uid: 3131 - components: - - type: Transform - pos: 10.604478,32.490883 - parent: 1668 - - uid: 3132 - components: - - type: Transform - pos: 10.651353,32.365883 - parent: 1668 -- proto: WeaponCapacitorRecharger - entities: - - uid: 1446 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 1668 - - uid: 1447 - components: - - type: Transform - pos: 10.5,3.5 - parent: 1668 - - uid: 1449 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 1668 - - uid: 2471 - components: - - type: Transform - pos: 23.5,15.5 - parent: 1668 - - uid: 2747 - components: - - type: Transform - pos: 8.5,17.5 - parent: 1668 - - uid: 2824 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1668 - - uid: 3261 - components: - - type: Transform - pos: 8.5,23.5 - parent: 1668 - - uid: 3734 - components: - - type: Transform - pos: -26.5,9.5 - parent: 1668 - - uid: 3859 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 1668 - - uid: 4695 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 1668 -- proto: WeaponDisabler - entities: - - uid: 4697 - components: - - type: Transform - pos: 20.88646,-10.507892 - parent: 1668 -- proto: WeaponPistolN1984 - entities: - - uid: 3774 - components: - - type: Transform - pos: -12.4228115,-9.521386 - parent: 1668 - - uid: 3894 - components: - - type: Transform - pos: -12.346658,4.475792 - parent: 1668 -- proto: WeaponPulseCarbine - entities: - - uid: 2202 - components: - - type: Transform - pos: 6.5531197,32.415283 - parent: 1668 - - uid: 2203 - components: - - type: Transform - pos: 6.5062447,32.64966 - parent: 1668 - - uid: 3124 - components: - - type: Transform - pos: 12.544843,32.634033 - parent: 1668 - - uid: 3125 - components: - - type: Transform - pos: 12.669843,32.477783 - parent: 1668 -- proto: WeaponPulsePistol - entities: - - uid: 4389 - components: - - type: Transform - pos: 5.546056,32.663063 - parent: 1668 - - uid: 4390 - components: - - type: Transform - pos: 5.686681,32.522438 - parent: 1668 - - uid: 4721 - components: - - type: Transform - pos: 13.653802,32.491188 - parent: 1668 - - uid: 4722 - components: - - type: Transform - pos: 13.481927,32.663063 - parent: 1668 -- proto: WeaponRevolverMateba - entities: - - uid: 1436 - components: - - type: Transform - pos: 2.4898672,30.350563 - parent: 1668 - - uid: 1445 - components: - - type: Transform - pos: 2.6461172,30.288063 - parent: 1668 - - uid: 1456 - components: - - type: Transform - pos: 16.456459,30.319313 - parent: 1668 - - uid: 6611 - components: - - type: Transform - pos: 16.628334,30.272438 - parent: 1668 -- proto: WeaponSniperHristov - entities: - - uid: 3138 - components: - - type: Transform - pos: 8.479478,29.789814 - parent: 1668 -- proto: WeaponSubMachineGunAtreides - entities: - - uid: 6603 - components: - - type: Transform - pos: 8.51666,29.42835 - parent: 1668 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 3895 - components: - - type: Transform - pos: -13.438182,-3.4256558 - parent: 1668 -- proto: WeaponTaser - entities: - - uid: 79 - components: - - type: Transform - pos: 10.5444565,3.9803991 - parent: 1668 - - uid: 1459 - components: - - type: Transform - pos: -4.4574313,-9.606358 - parent: 1668 - - uid: 3727 - components: - - type: Transform - pos: -25.555511,12.593331 - parent: 1668 - - uid: 6780 - components: - - type: Transform - pos: 26.613934,-11.4401045 - parent: 1668 -- proto: WeaponXrayCannon - entities: - - uid: 3136 - components: - - type: Transform - pos: 8.510728,32.664814 - parent: 1668 - - uid: 3137 - components: - - type: Transform - pos: 8.526353,32.55544 - parent: 1668 -- proto: WelderExperimental - entities: - - uid: 3699 - components: - - type: Transform - pos: -16.435745,6.6259594 - parent: 1668 - - uid: 4394 - components: - - type: Transform - pos: 21.568373,-15.468605 - parent: 1668 -- proto: WelderIndustrial - entities: - - uid: 5374 - components: - - type: Transform - pos: 26.560297,-23.266705 - parent: 1668 -- proto: WelderIndustrialAdvanced - entities: - - uid: 2196 - components: - - type: Transform - pos: -1.3562617,24.407354 - parent: 1668 -- proto: WeldingFuelTankFull - entities: - - uid: 127 - components: - - type: Transform - pos: -26.5,6.5 - parent: 1668 - - uid: 2041 - components: - - type: Transform - pos: 0.5,18.5 - parent: 1668 -- proto: WeldingFuelTankHighCapacity - entities: - - uid: 6843 - components: - - type: Transform - pos: 26.5,-13.5 - parent: 1668 - - uid: 6844 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 1668 -- proto: WetFloorSign - entities: - - uid: 5883 - components: - - type: Transform - pos: -17.066446,-31.95819 - parent: 1668 -- proto: Windoor - entities: - - uid: 563 - components: - - type: Transform - pos: 12.5,2.5 - parent: 1668 - - uid: 564 - components: - - type: Transform - pos: 14.5,2.5 - parent: 1668 - - uid: 2409 - components: - - type: Transform - pos: 25.5,20.5 - parent: 1668 - - uid: 2410 - components: - - type: Transform - pos: 31.5,20.5 - parent: 1668 - - uid: 2710 - components: - - type: Transform - pos: 9.5,16.5 - parent: 1668 - - uid: 4255 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1586 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-16.5 + pos: 8.5,12.5 parent: 1668 - - uid: 6848 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1616 components: - type: Transform - pos: 3.5,-17.5 + pos: 12.5,13.5 parent: 1668 -- proto: WindoorBarLocked - entities: - - uid: 4410 + - uid: 1617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 + pos: 13.5,13.5 parent: 1668 -- proto: WindoorSecure - entities: - - uid: 2345 + - uid: 1618 components: - type: Transform - pos: 34.5,14.5 + pos: 14.5,13.5 parent: 1668 - - uid: 3760 + - uid: 1975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,11.5 + pos: 26.5,19.5 parent: 1668 - - uid: 3761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,9.5 - parent: 1668 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 2554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 1668 -- proto: WindoorSecureBrigLocked - entities: - - uid: 2425 - components: - - type: Transform - pos: 28.5,20.5 - parent: 1668 -- proto: WindoorSecureCargoLocked - entities: - - uid: 1621 + - uid: 2104 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,9.5 + pos: 8.5,8.5 parent: 1668 - - uid: 1622 + - uid: 3721 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,10.5 + pos: 8.5,7.5 parent: 1668 -- proto: WindoorSecureChemistryLocked +- proto: Window entities: - - uid: 5398 + - uid: 6151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 + pos: -23.5,-9.5 parent: 1668 - - uid: 5401 + - uid: 6155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1668 -- proto: WindoorSecureCommandLocked - entities: - - uid: 4230 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 1668 - - uid: 4231 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 1668 - - uid: 4232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1668 - - uid: 4233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 1668 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 4757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 1668 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 1198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1668 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 1668 - - uid: 561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 1668 - - uid: 562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 1668 - - uid: 790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1668 - - uid: 791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 + pos: -19.5,-9.5 parent: 1668 - proto: WindowReinforcedDirectional entities: @@ -41873,216 +58741,1099 @@ entities: - type: Transform pos: 27.5,6.5 parent: 1668 - - uid: 490 + - uid: 582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1668 + - uid: 583 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1668 + - uid: 584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1668 + - uid: 585 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-7.5 + pos: 11.5,3.5 parent: 1668 - - uid: 496 + - uid: 787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1668 + - uid: 832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 1668 + - uid: 833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-13.5 + parent: 1668 + - uid: 949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 1668 + - uid: 950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 1668 + - uid: 951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 1668 + - uid: 956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 1668 + - uid: 957 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1668 + - uid: 958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 1668 + - uid: 959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1668 + - uid: 960 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-7.5 + pos: 2.5,-20.5 parent: 1668 - - uid: 619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1668 - - uid: 626 + - uid: 961 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-7.5 + pos: 2.5,-20.5 parent: 1668 - - uid: 1086 + - uid: 962 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-9.5 + pos: 2.5,-14.5 parent: 1668 - - uid: 1087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 1668 - - uid: 1197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 1668 - - uid: 2395 - components: - - type: Transform - pos: 26.5,22.5 - parent: 1668 - - uid: 2396 - components: - - type: Transform - pos: 25.5,22.5 - parent: 1668 - - uid: 2397 - components: - - type: Transform - pos: 31.5,22.5 - parent: 1668 - - uid: 2398 - components: - - type: Transform - pos: 30.5,22.5 - parent: 1668 - - uid: 2399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,21.5 - parent: 1668 - - uid: 2400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,21.5 - parent: 1668 - - uid: 2401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,20.5 - parent: 1668 - - uid: 2402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,21.5 - parent: 1668 - - uid: 2403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,20.5 - parent: 1668 - - uid: 2404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 1668 - - uid: 2405 - components: - - type: Transform - pos: 27.5,20.5 - parent: 1668 - - uid: 2406 - components: - - type: Transform - pos: 29.5,20.5 - parent: 1668 - - uid: 2407 - components: - - type: Transform - pos: 30.5,20.5 - parent: 1668 - - uid: 2408 - components: - - type: Transform - pos: 26.5,20.5 - parent: 1668 - - uid: 2440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 1668 - - uid: 3757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,8.5 - parent: 1668 - - uid: 3758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,12.5 - parent: 1668 - - uid: 3759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,10.5 - parent: 1668 - - uid: 3892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 1668 - - uid: 3893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1668 - - uid: 4254 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 1668 - - uid: 4411 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 1668 - - uid: 5217 + - uid: 963 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-15.5 parent: 1668 - - uid: 5219 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 1668 - - uid: 5453 + - uid: 964 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-17.5 + pos: 2.5,-16.5 parent: 1668 - - uid: 5454 + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 1668 + - uid: 966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1668 + - uid: 967 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1668 + - uid: 1126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 1668 + - uid: 1127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 1668 + - uid: 1136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-12.5 + parent: 1668 + - uid: 1137 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 1668 + - uid: 1246 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1668 + - uid: 1247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-18.5 + parent: 1668 + - uid: 1730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 1668 + - uid: 1731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 1668 + - uid: 1848 + components: + - type: Transform + pos: 25.5,23.5 + parent: 1668 + - uid: 1849 + components: + - type: Transform + pos: 27.5,23.5 + parent: 1668 + - uid: 1850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,23.5 + parent: 1668 + - uid: 1851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,24.5 + parent: 1668 + - uid: 1852 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-16.5 + pos: 27.5,23.5 parent: 1668 - - uid: 5928 + - uid: 1853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,24.5 + parent: 1668 + - uid: 1854 + components: + - type: Transform + pos: 28.5,23.5 + parent: 1668 + - uid: 1855 + components: + - type: Transform + pos: 24.5,23.5 + parent: 1668 + - uid: 1856 + components: + - type: Transform + pos: 24.5,25.5 + parent: 1668 + - uid: 1857 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1668 + - uid: 1858 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1668 + - uid: 1859 + components: + - type: Transform + pos: 23.5,25.5 + parent: 1668 + - uid: 1860 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-31.5 + pos: 30.5,24.5 parent: 1668 - - uid: 5929 + - uid: 1861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,24.5 + parent: 1668 + - uid: 1911 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1668 + - uid: 1929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,23.5 + parent: 1668 + - uid: 1934 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1668 + - uid: 1935 + components: + - type: Transform + pos: 23.5,19.5 + parent: 1668 + - uid: 1936 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1668 + - uid: 1937 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1668 + - uid: 1938 + components: + - type: Transform + pos: 29.5,19.5 + parent: 1668 + - uid: 1939 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1668 + - uid: 1940 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1668 + - uid: 1941 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1668 + - uid: 1944 + components: + - type: Transform + pos: 21.5,19.5 + parent: 1668 + - uid: 1957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,22.5 + parent: 1668 + - uid: 1958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,21.5 + parent: 1668 + - uid: 1959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1668 + - uid: 2030 + components: + - type: Transform + pos: 27.5,25.5 + parent: 1668 + - uid: 2031 + components: + - type: Transform + pos: 25.5,25.5 + parent: 1668 + - uid: 2621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1668 + - uid: 2727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1668 + - uid: 2736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1668 + - uid: 2896 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-32.5 + pos: -17.5,9.5 parent: 1668 - - uid: 6787 + - uid: 2901 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-17.5 + pos: -17.5,11.5 + parent: 1668 + - uid: 2902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,13.5 + parent: 1668 + - uid: 3012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1668 + - uid: 3013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1668 + - uid: 3014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1668 + - uid: 3015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1668 + - uid: 3194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1668 + - uid: 3195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1668 + - uid: 3196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1668 + - uid: 3233 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1668 + - uid: 3235 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1668 + - uid: 3521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,21.5 + parent: 1668 + - uid: 3531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,21.5 + parent: 1668 + - uid: 3536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1668 + - uid: 3722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-31.5 + parent: 1668 + - uid: 4081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1668 + - uid: 4168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 1668 + - uid: 4169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 1668 + - uid: 4170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1668 + - uid: 4184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1668 + - uid: 4185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1668 + - uid: 4186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,9.5 + parent: 1668 + - uid: 4187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1668 + - uid: 4795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-38.5 + parent: 1668 + - uid: 4796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-38.5 + parent: 1668 + - uid: 5510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 1668 + - uid: 5511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 1668 + - uid: 5514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 1668 + - uid: 5517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 1668 + - uid: 5518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 1668 + - uid: 5522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 1668 + - uid: 5523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 1668 + - uid: 5525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 1668 + - uid: 5541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-20.5 + parent: 1668 + - uid: 5542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 1668 + - uid: 5544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 1668 + - uid: 5545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 1668 + - uid: 5547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 1668 + - uid: 5548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 1668 + - uid: 5551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 1668 + - uid: 5552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 1668 + - uid: 5553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 1668 + - uid: 5571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 1668 + - uid: 5572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 1668 + - uid: 5573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 1668 + - uid: 5604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 1668 + - uid: 5605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 1668 + - uid: 5606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 1668 + - uid: 5658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 1668 + - uid: 5659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 1668 + - uid: 5660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 1668 + - uid: 5661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 1668 + - uid: 5662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 1668 + - uid: 5663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1668 + - uid: 5664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 1668 + - uid: 5665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 1668 + - uid: 5862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 1668 + - uid: 5863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 1668 + - uid: 5864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 1668 + - uid: 5865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 1668 + - uid: 5866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 1668 + - uid: 5867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 1668 + - uid: 5868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-20.5 + parent: 1668 + - uid: 5869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 1668 + - uid: 5870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 1668 + - uid: 5871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 1668 + - uid: 5872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 1668 + - uid: 5873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 1668 + - uid: 5874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 1668 + - uid: 5881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 1668 + - uid: 5888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-31.5 + parent: 1668 + - uid: 5889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 1668 + - uid: 5890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 1668 + - uid: 5891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 1668 + - uid: 5892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 1668 + - uid: 6001 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1668 + - uid: 6003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 1668 + - uid: 6004 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1668 + - uid: 6005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,4.5 + parent: 1668 + - uid: 7392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 1668 + - uid: 7393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 1668 + - uid: 7394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 1668 + - uid: 7395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 1668 + - uid: 7396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 1668 + - uid: 7397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 1668 + - uid: 7398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-22.5 + parent: 1668 + - uid: 7399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 1668 + - uid: 7400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 1668 + - uid: 7401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-32.5 + parent: 1668 + - uid: 7402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-31.5 + parent: 1668 + - uid: 7403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-30.5 + parent: 1668 + - uid: 7404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-32.5 + parent: 1668 + - uid: 7405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-31.5 + parent: 1668 + - uid: 7406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-30.5 + parent: 1668 + - uid: 7407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-32.5 + parent: 1668 + - uid: 7408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 1668 + - uid: 7409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-30.5 + parent: 1668 + - uid: 7410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-30.5 + parent: 1668 + - uid: 7411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 1668 + - uid: 7412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-32.5 + parent: 1668 + - uid: 7413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-32.5 + parent: 1668 + - uid: 7414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-31.5 + parent: 1668 + - uid: 7415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-30.5 + parent: 1668 + - uid: 7416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-32.5 + parent: 1668 + - uid: 7417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-31.5 + parent: 1668 + - uid: 7418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-30.5 + parent: 1668 + - uid: 7419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-22.5 + parent: 1668 + - uid: 7420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 1668 + - uid: 7421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 1668 + - uid: 7422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 1668 + - uid: 7423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 1668 + - uid: 7424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 1668 + - uid: 7425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 1668 + - uid: 7426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 1668 + - uid: 7427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 1668 + - uid: 9188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-10.5 + parent: 1668 + - uid: 9190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 1668 + - uid: 9194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-10.5 + parent: 1668 + - uid: 9204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 1668 +- proto: Wirecutter + entities: + - uid: 3176 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1668 +- proto: WoodDoor + entities: + - uid: 6181 + components: + - type: Transform + pos: -21.5,-9.5 parent: 1668 - proto: Wrench entities: - - uid: 6720 + - uid: 793 components: - type: Transform - pos: 9.506623,-4.4162817 + pos: 19.579744,-8.396848 + parent: 1668 + - uid: 3174 + components: + - type: Transform + pos: -7.5,7.5 parent: 1668 ... From ee534f1a3b439fd6e024375171976ef322cc7ca6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 17 Feb 2025 08:52:54 +0000 Subject: [PATCH 029/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 840024caa0..bb7ecbb233 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: BackeTako - changes: - - message: Reinforced walls sprite see throu top - type: Fix - id: 7467 - time: '2024-10-01T21:44:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32578 - author: Zylo changes: - message: Seismic charges being uncraftable @@ -3899,3 +3892,10 @@ id: 7966 time: '2025-02-17T06:16:55.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35232 +- author: Emisse + changes: + - message: Centcomm has been rebuilt from the ground up. + type: Tweak + id: 7967 + time: '2025-02-17T08:51:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35240 From 183438c1820295efa56a74e944c5ae40166a6ce2 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Mon, 17 Feb 2025 03:09:39 -0700 Subject: [PATCH 030/155] centcomm fix (#35244) --- Resources/Maps/centcomm.yml | 175 ++++++++++++++++++++++++++++++++++++ 1 file changed, 175 insertions(+) diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index e0199552d7..b8fd186570 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -16282,6 +16282,181 @@ entities: - type: Transform pos: -12.5,5.5 parent: 1668 + - uid: 9343 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 1668 + - uid: 9344 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 1668 + - uid: 9345 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 1668 + - uid: 9346 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 1668 + - uid: 9347 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 1668 + - uid: 9348 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 1668 + - uid: 9349 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 1668 + - uid: 9350 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1668 + - uid: 9351 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 1668 + - uid: 9352 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 1668 + - uid: 9353 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1668 + - uid: 9354 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 1668 + - uid: 9355 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 1668 + - uid: 9356 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1668 + - uid: 9357 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 1668 + - uid: 9358 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1668 + - uid: 9359 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1668 + - uid: 9360 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1668 + - uid: 9361 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 1668 + - uid: 9362 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 1668 + - uid: 9363 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 1668 + - uid: 9364 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 1668 + - uid: 9365 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1668 + - uid: 9366 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1668 + - uid: 9367 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 1668 + - uid: 9368 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1668 + - uid: 9369 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 1668 + - uid: 9370 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 1668 + - uid: 9371 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 1668 + - uid: 9372 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 1668 + - uid: 9373 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 1668 + - uid: 9374 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 1668 + - uid: 9375 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1668 + - uid: 9376 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1668 + - uid: 9377 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1668 - proto: CableHVStack entities: - uid: 6780 From c1b3577e6cf1d0138ed0ac707881291a0af0a08a Mon Sep 17 00:00:00 2001 From: ScarKy0 Date: Mon, 17 Feb 2025 13:23:57 +0100 Subject: [PATCH 031/155] init --- .../Entities/Mobs/Player/admin_ghost.yml | 5 ++- .../Devices/Circuitboards/computer.yml | 11 ++++++ .../Machines/Computers/computers.yml | 32 ++++++++++++++++++ .../Objects/Misc/module.rsi/cpu_centcomm.png | Bin 0 -> 7015 bytes .../Objects/Misc/module.rsi/meta.json | 3 ++ 5 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Misc/module.rsi/cpu_centcomm.png diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 0a40e64fd7..d4531dd15d 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -66,7 +66,10 @@ - type: SolarControlConsole # look ma i AM the computer! - type: CommunicationsConsole title: comms-console-announcement-title-centcom - color: "#228b22" + color: "#488c40" + delay: 10 + initialDelay: 0 + global: true - type: RadarConsole followEntity: true - type: CargoOrderConsole diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index be4a105429..fe061e72d6 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -298,6 +298,17 @@ - type: ComputerBoard prototype: WizardComputerComms +- type: entity + parent: [ BaseComputerCircuitboard, BaseCentcommContraband ] + id: CentcommCommsComputerCircuitboard + name: central command communications computer board + description: A computer printed circuit board for a central command communications console. + components: + - type: Sprite + state: cpu_centcomm + - type: ComputerBoard + prototype: CentcommComputerComms + - type: entity parent: BaseComputerCircuitboard id: RadarConsoleCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index ac7877b6c8..60398c7d15 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -748,6 +748,38 @@ energy: 1.6 color: "#F317F3" +- type: entity + parent: ComputerComms + id: CentcommComputerComms + name: central command communications computer + description: A computer used to make world wide announcements via keyboard. The superior cousin of the regular communications computer. + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: comm_logs + - map: ["computerLayerKeys"] + state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: AccessReader + access: [[ "CentralCommand" ]] + - type: CommunicationsConsole + title: comms-console-announcement-title-centcom + color: "#488c40" + canShuttle: false + global: true + - type: Computer + board: CentcommCommsComputerCircuitboard + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#00FF00" + - type: entity parent: BaseComputerAiAccess id: ComputerSolarControl diff --git a/Resources/Textures/Objects/Misc/module.rsi/cpu_centcomm.png b/Resources/Textures/Objects/Misc/module.rsi/cpu_centcomm.png new file mode 100644 index 0000000000000000000000000000000000000000..f89a8839303f29e7a822263b13abe47613f2e2aa GIT binary patch literal 7015 zcmeHLc|4SB`yVOURZ6MUG+E1-#aL#T#MmYV*-nlD7)*w2X=)E$;lhu&81&5x2^oRG#E~J6JNWj10M6mE=?p&*&JX5*a4?8Lhrxnc zhmu_qy7gsEr-KjUqsk)Tad)2jvC#K27H?BbvH}I8{D>H*`}U6NWg^3z$o{5?uNBWL zKS!q?vC2|;b_%uSOy26%ay{3KhT6X*)qUA>`=k5|qw9hT>la)=Ft1mhm>P))ed{6L zPI*P{pg2~4Bu#%NQ65e8JT`swpdpa<=wnL$7Wpd9^vev1R%TO@Z^M}CNWhhkwF%s5 ze0lB%|2B^sn>$Y4CSamhgk3K?uxePwbW(n0Td>d6IsV8aUQfEsFA)aa-r?6eh8~2O z_l$N|22V>IPkuWVyK;S6ipP-ci_r0ruPOCPD=XdbvCkf??>J(3Zlaqu*%qpBW$ap^ zug0s!sa2!&2f##f9GnBLukwyyhz}6MHD5kX&W}zuS-b$XOtoBEqgq;D zrMdO!_J|2Fi7{WC6kNGCe=7<7tCLCd%ecG+2U1PRhy=4-%cK)j8y9X}DrG9woU$p^ zsl?~0vlrQHo0jY0%_YUFcbl%w?LAxa#MO=3P+b$#5F=YST2Hmz88X~zb)iD0PrLD0 z{DIgmb0y|}MKuEE;}aKp8gqP6lC$gO4~sB|+=uk4-xRpAYRz73iJwIPYOm zTbZdKYu~ipBOl{9%9Lbt5&IPn?&~&omk|+Hk}fLvd^}3K54wtFnJg$@F6tdZl3w`u zgK=pDFeZ9cuI%dZuL`VA8N7G>7y0}6y~As|Z*+ZvPhN6)_wh^zmDmnJMtR@5 zEjHDM>^C`@#6<_@#=B7Ww?9-pqL~tUo`|SgxN&vkJ;I^BoIv$kd8IMu-32wP5A9CS zvEQqCG`?VA4)}?WFKr4TUEHSFyl%jH^Qe=bbaqQd2h;7@uABnL0?)4V*HR0O!_wXi z3o54vNq;iIfiBkG%J+=Xt8@>+UV zNp$TXxxexCK%;8iop_dYZGIWBH>T*G&hEYv7|>CAGAkRLLWE(1Z=5jQ-CMUmuQbWx z!D4F?8L6x-D-;ijK0=q>Cp8vfnk!4Zed9N~jN-e5^a4{IL+s~HdHQbZ0g_iX3xE)`>T@V5L>nrWB5xh z-+3_jg}YzoH0O7^%B^36TBOJH4Syx3Tx)@~R}{8_B33(sd&@MD>-WMQE@d0tF6_|s z(0CbAd&UFXTNmaLl=pPou9KWz+5FZ?1Dt!(8X2p{%3J!X*Q#Atl?ZGvYwmv&=N3T8 z^AFb|?aHrxy;}cKQDFRrZ7UunRLBkl{`x+ut9t;jc;a$~Nhirpag;s07LD=Xr_neW zmta@^&Dt_6qfp$lK~y@b3^OF=*ByR)tL8d&H*u`g-aY&UDw_E+fS&VBMU@!OtgNR} znf{+mnJ){|59aTCEP^NSyyc{5ooWZep5d_Gf?9|*sW%Zl#+WVm(*@FZHYd3><@oy?>ajy#T1sa;eB6i zvQdY9Y!NBHZNk^eYMEJ2s_ue9->B^8=_yNS)4Vfv6$$Z?QIxQx#GK3G77@pPXX#>B zuDO(h+f=OR)spr4DcRzyjZ|r4q`~!$wG>r?pWMozqO67{*IG4EP5n^~*>(@9g{p>U z4(+QL;*MqN47=3g5|0>2KHF2XK~hgN>i$*?P4U(VRq@_mqu^?HGaH>t00Xh@-Ydra z{h~V~b8`Co-bC65?8qW6I}vg8Gd*$=-DMFG^}=?D)Vy+|cwW)wMqcO5B8~0_M~sKd z2lGgGv`AL6xAlXd7Wt{7@l+~q|FWyeBB@k2k&9exZxf@m@=XLdR${cS+~T6Sq4@|v zRez;1sit^%K*gp_`Npu?>8756YZDLeh)C8ZtN~?{rJr=U>Kj-;^grs86NC9ApK*(( zymCOKPE|JDmsYc&&a3LtT7i1q{@%LGeP^H5&uPCqQTH$ zadB#U3U0L)|CXEbl_7FVFD}+ITJ5A;yUjMOQzQ2|PuokoQu~=ZZd%3^gRHL;vvl(B?w#w~&X@Yjs!u`QpoNHT}l(FN) z?JLeo+3hO}ZnTbAC{##u?`5^6-%GWRU0rP1>m(baX;ne%7JcGXvb8e3M&Mr`cKE2r zdGoL5z7QLxpPIgtRPgw164mDaYIC|+i!KZ%63rly?8qe2p9cr%xNs^go@jYz>)I+0 zhmx!n+YJut)ADT;OwHEj9yYsZ*D6^^NOqstfMZzNyRTjJENbuiBTkD~dhb+nUu67F z^zKfMJwJZg^l!^u?*?(&;{;>t1aD!P&R%C*bY=5XL1pT8OybU^q8FCbA7G7Slf3fQ z*&=f~@i&G$U%lBG?H!yk$s19}CyH!|4?5Am-|V`LVFjcA)Yu`?IdzS@ukTXDb{_j2 z|K{>T_9-b@DMM{qP9pE_2Cqx?x4BY9S((dhmmXN*l)Y!etIM~8j}*C{y;w~gm)eVG z;;RBu?;He{`YXdt%onXuzhx5b9J5@W+!`11`M}zUD0l2t-JAC@aac#o*!5F#;R4@Y zHMRB}&*eT5mxkh&!Y@iaDJcCC=GQhVe{)*eok5AXDps>6VHb0E=f=~5HDzV2-5=I* zu8K-;=}*{zPsqqS_DJ-t_Xx$s^QA(cYe1;);Hwc4ONU>q^lskTfOb7Ss1qj;lz#g3 zHpM)`NNJ3_Z`oOEBN$BX6azZQ?Vwl_sBESdKx2D>T0u+>bkKvr42^;~0M!@d!@WRn z28)PzTV9EPGiXG_FFF)7g+l^;7?vSi&>_Ueks9Jl#nTW*TO^rXPz( z2qGe8cnQ#NVK)i^pMmgwiHIE(J2;8W1>ra?oE92s7Q_g|BDP4v4Y@Qr!QRw-jsj{C z5k7oAhk!x}1OhFAwicV~jl$sZcoZ6o!eWsS0?7+z@qr*Di?>loG0R~J@~B(}htFWM z;6hHoiygoxA`s9xe2yF%rJ4mnopTO^?HPI=pN1ks4IDHd2!O(((fUX<7Kz29=G#M~ z6v{Vi7H>{PNKaG{z(HZO&?qMJ2MZqGEbzO(zqH^vLg#6eJ;-ARaH*hKAjslxobQz5 z7r>kEGk^yQyJq6{qtQ`NP&1zA+gOk(cHeA-GI}$ZoEZxtdOngy{f6TNaQ$X5G%5=8 z1DQ}DJct?d1D?;Ie_x;<<|7>Ww?H6w-}rw(|EbqZEHkl^26W zV+(lSha4G9(18yKWy9!cV{Cjg}z zg9&(pC=SbeWva09t3LxMtQFu0EH48b9I%KA+ zJOQVTm|bnSAxgNz{yAGi;T}Yx5a#P)DBPn6WMLvY1aLTh43PVyPJiaj|AL!mKbNEb z$$UO+)|$lT1VdHq!?zW%{?`3p0B0Gj8B~zPWB*;~^C7dc%)1dmG0*lvH#q2iiTZZK zoXZknA^jI$bJ_P_^Z-%+bn=h%{VCT^x&Dy?{|NjuyMD^`j}-Vv;Gfy`|0b8@_eXA! z1)ci@&;#{@p+`@khjB44D+^PYB}@;d8D*#^0`*96EM0gon3TNmBLYi3wF>H7%qLUK z7WXe$DkZ=9{L~W?^pDG4vZ=A-jyprgF;;i%mfVXtQJu+WE%v`uCdTON_1xKhZB%sO z?@@`eRSjgqK~mM3dO5f(K^(Dsu~JS><8r?GwdMN|eDzF8#epTu9yedldumq0zWQ7H z^YYN?S443M35oHyHRJf4=iN)T+IPW{Q#;R@mA$gAy*L>D?23(PaZ35=(4CD==k?cJ zO61b*;h|{@PCtA5@#2{5O=spEK~eUo70g*K!Dg5Cn5rXu)4=fXrJjjxc8yMi>zA(| zn^0&A56;RdSl)A14W;V1RewQIf~VaCa*wr=T*lWHdUkt$$9$5oxE{kz7H zvOB_qaTijw>Fk>ZQN^b+9SnG1gDe0I^mFlO8EHw3vI=V_ax$7~GwgITZ7h3f(1nIl z7uC>=4>3mW24;vludj;z&biq>@+S|9g*p1M06p0MPEFnWU*qA%9}7QO>nbZNciX;`sCH?(irTz2 R0$L#$+04fDyoqPjzW|jWAIJaz literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Misc/module.rsi/meta.json b/Resources/Textures/Objects/Misc/module.rsi/meta.json index b6f6c6d819..fed9220aae 100644 --- a/Resources/Textures/Objects/Misc/module.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/module.rsi/meta.json @@ -139,6 +139,9 @@ { "name": "cpu_wizard" }, + { + "name": "cpu_centcomm" + }, { "name": "cpuboard" }, From d71b469922c1678aab1de6462970e1599cb082a5 Mon Sep 17 00:00:00 2001 From: ScarKy0 Date: Mon, 17 Feb 2025 13:46:50 +0100 Subject: [PATCH 032/155] slightly lighter --- Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml | 2 +- .../Entities/Structures/Machines/Computers/computers.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index d4531dd15d..65a16ad34f 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -66,7 +66,7 @@ - type: SolarControlConsole # look ma i AM the computer! - type: CommunicationsConsole title: comms-console-announcement-title-centcom - color: "#488c40" + color: "#55ad4b" delay: 10 initialDelay: 0 global: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 60398c7d15..ee6e9b2b2c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -770,7 +770,7 @@ access: [[ "CentralCommand" ]] - type: CommunicationsConsole title: comms-console-announcement-title-centcom - color: "#488c40" + color: "#55ad4b" canShuttle: false global: true - type: Computer From 5ffe14e2ab7a93be1c0a9b5ec93b1fc26101dd00 Mon Sep 17 00:00:00 2001 From: ScarKy0 Date: Mon, 17 Feb 2025 13:52:26 +0100 Subject: [PATCH 033/155] i cant decide --- Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml | 2 +- .../Entities/Structures/Machines/Computers/computers.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 65a16ad34f..7a29d45747 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -66,7 +66,7 @@ - type: SolarControlConsole # look ma i AM the computer! - type: CommunicationsConsole title: comms-console-announcement-title-centcom - color: "#55ad4b" + color: "#4bad40" delay: 10 initialDelay: 0 global: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index ee6e9b2b2c..10c52600c8 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -770,7 +770,7 @@ access: [[ "CentralCommand" ]] - type: CommunicationsConsole title: comms-console-announcement-title-centcom - color: "#55ad4b" + color: "#4bad40" canShuttle: false global: true - type: Computer From 2069f14e057a36dd23ac0c533bb316f33e464589 Mon Sep 17 00:00:00 2001 From: Sparlight Date: Mon, 17 Feb 2025 05:56:47 -0700 Subject: [PATCH 034/155] Re-implement world gen (space debris) across all servers (#34795) * Re-implement world gen (space debris) across all servers * Move server-specific worldgen config change to base config --------- Co-authored-by: Simon <63975668+Simyon264@users.noreply.github.com> --- Resources/ConfigPresets/WizardsDen/leviathan.toml | 1 + Resources/ConfigPresets/WizardsDen/lizard.toml | 3 ++- Resources/ConfigPresets/WizardsDen/salamander.toml | 3 ++- Resources/ConfigPresets/WizardsDen/vulture.toml | 4 ++-- Resources/ConfigPresets/WizardsDen/wizardsDen.toml | 3 +++ 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Resources/ConfigPresets/WizardsDen/leviathan.toml b/Resources/ConfigPresets/WizardsDen/leviathan.toml index a1a0e5b704..e09ad092b0 100644 --- a/Resources/ConfigPresets/WizardsDen/leviathan.toml +++ b/Resources/ConfigPresets/WizardsDen/leviathan.toml @@ -7,3 +7,4 @@ hostname = "[EN] Wizard's Den Leviathan [US East 1]" [hub] tags = "lang:en,region:am_n_e,rp:low" + diff --git a/Resources/ConfigPresets/WizardsDen/lizard.toml b/Resources/ConfigPresets/WizardsDen/lizard.toml index 72688efbf9..cc849e435d 100644 --- a/Resources/ConfigPresets/WizardsDen/lizard.toml +++ b/Resources/ConfigPresets/WizardsDen/lizard.toml @@ -1,4 +1,4 @@ -# Configuration preset used on Wizard's Den Lizard +# Configuration preset used on Wizard's Den Lizard # Nothing specific yet @@ -11,3 +11,4 @@ panic_bunker.custom_reason = "" [hub] tags = "lang:en,region:am_n_w,rp:low" + diff --git a/Resources/ConfigPresets/WizardsDen/salamander.toml b/Resources/ConfigPresets/WizardsDen/salamander.toml index bb3810b56c..35326dc0cd 100644 --- a/Resources/ConfigPresets/WizardsDen/salamander.toml +++ b/Resources/ConfigPresets/WizardsDen/salamander.toml @@ -1,4 +1,4 @@ -# Configuration preset used on Wizard's Den Salamander +# Configuration preset used on Wizard's Den Salamander [game] desc = "Official English Space Station 14 servers. Medium roleplay ruleset. you must be whitelisted by playing on other Wizard's Den servers if there are more than 15 online players." @@ -26,3 +26,4 @@ flavor_text = true [hub] tags = "lang:en,region:am_n_w,rp:med" + diff --git a/Resources/ConfigPresets/WizardsDen/vulture.toml b/Resources/ConfigPresets/WizardsDen/vulture.toml index 304920410f..ab1d8459f3 100644 --- a/Resources/ConfigPresets/WizardsDen/vulture.toml +++ b/Resources/ConfigPresets/WizardsDen/vulture.toml @@ -1,4 +1,4 @@ -# Configuration preset used on Wizard's Den Leviathan +# Configuration preset used on Wizard's Den Leviathan [game] hostname = "[EN][Testing] Wizard's Den Vulture [US East 2]" @@ -12,4 +12,4 @@ tags = "lang:en,region:am_n_e,rp:low" lobby_name = "[EN][Testing] Wizard's Den Vulture [US East 2]" [chat] -motd = "\n########################################################\n\n[font size=17]This is a test server. You can play with the newest changes to the game, but these [color=red]changes may not be final or stable[/color], and may be reverted. Please report bugs via our GitHub, forum, or community Discord.[/font]\n\n########################################################\n" +motd = "\n########################################################\n\n[font size=17]This is a test server. You can play with the newest changes to the game, but these [color=red]changes may not be final or stable[/color], and may be reverted. Please report bugs via our GitHub, forum, or community Discord.[/font]\n\n########################################################\n" \ No newline at end of file diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 8925d52859..fc470d9514 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -48,6 +48,9 @@ allow_multi_server_play = false [atmos] max_explosion_range = 5 +[worldgen] +enabled = true + [status] privacy_policy_link = "https://spacestation14.com/about/privacy/#game-server-privacy-policy" privacy_policy_identifier = "wizden" From 88a98dfee2bb53a9a11a7469f2ec3570501ac1b6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 17 Feb 2025 12:57:55 +0000 Subject: [PATCH 035/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bb7ecbb233..b081c2499f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Zylo - changes: - - message: Seismic charges being uncraftable - type: Fix - id: 7468 - time: '2024-10-02T02:56:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32459 - author: slarticodefast changes: - message: Fixed the chameleon settings menu not showing up for the voice mask. @@ -3899,3 +3892,10 @@ id: 7967 time: '2025-02-17T08:51:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35240 +- author: Sparlight + changes: + - message: Space debris has returned to Wizden servers. + type: Add + id: 7968 + time: '2025-02-17T12:56:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34795 From fc673967ee873186626a1a270453e8914ccacf5c Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Mon, 17 Feb 2025 06:50:27 -0700 Subject: [PATCH 036/155] Centcomm 3: Beyond Thunderdome Update (#35251) * centcomm update * eef freef --- Resources/Maps/centcomm.yml | 2167 ++++++++++++++++++++++++++--------- 1 file changed, 1631 insertions(+), 536 deletions(-) diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index b8fd186570..a1441f0c0d 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -48,11 +48,11 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: eQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACWQAAAAACWQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAHQAAAAACWQAAAAADWQAAAAACCwAAAAAACwAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADNgAAAAAANgAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAABdgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAHQAAAAADdgAAAAABPgAAAAAAPgAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADdgAAAAAAPgAAAAAAPgAAAAAA + tiles: eQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACWQAAAAACWQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAHQAAAAACWQAAAAADWQAAAAACCwAAAAAACwAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADNgAAAAAANgAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAABdgAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAHQAAAAADdgAAAAABPgAAAAAAPgAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADdgAAAAAAPgAAAAAAPgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: WQAAAAAAHQAAAAADAQAAAAAAHQAAAAACAgAAAAAAAgAAAAAAHQAAAAABHQAAAAABAgAAAAAAAgAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAADHQAAAAADAQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADAgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAbAAAAAADbAAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAADbAAAAAACWQAAAAAAHQAAAAADbAAAAAADbAAAAAAAWQAAAAABWQAAAAABWQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACWQAAAAACHQAAAAABbAAAAAADbAAAAAADWQAAAAADWQAAAAACWQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACWQAAAAAAHQAAAAABbAAAAAAAbAAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAACPgAAAAAAdgAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABPgAAAAAAdgAAAAACHQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADHQAAAAACHQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACPgAAAAAAdgAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAD + tiles: WQAAAAAAHQAAAAADAQAAAAAAHQAAAAACAgAAAAAAAgAAAAAAHQAAAAABHQAAAAABAgAAAAAAAgAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAADHQAAAAADAQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADAgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAbAAAAAADbAAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAADbAAAAAACWQAAAAAAHQAAAAADbAAAAAADbAAAAAAAWQAAAAABWQAAAAABWQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACWQAAAAACHQAAAAABbAAAAAADbAAAAAADWQAAAAADWQAAAAACWQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACWQAAAAAAHQAAAAABbAAAAAAAbAAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAdgAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABPgAAAAAAdgAAAAACHQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADHQAAAAACHQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACPgAAAAAAdgAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAD version: 6 -1,0: ind: -1,0 @@ -92,7 +92,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAABCAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAABCAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 @@ -140,19 +140,19 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: HQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABWQAAAAADHQAAAAACHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAANgAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAANgAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADDgAAAAADHQAAAAADdgAAAAADdgAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACHQAAAAACdgAAAAADdgAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABdgAAAAACdgAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAD + tiles: HQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABWQAAAAADHQAAAAACHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAANgAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAAANgAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADDgAAAAADHQAAAAADdgAAAAADdgAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACHQAAAAACdgAAAAADdgAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABdgAAAAACdgAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAD version: 6 -1,-3: ind: -1,-3 - tiles: HQAAAAADWQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABNgAAAAAANgAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACNgAAAAAANgAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADDAAAAAABDAAAAAABHQAAAAACDgAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABDAAAAAADDAAAAAABHQAAAAADDgAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACDgAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACDAAAAAABDAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADDAAAAAABDAAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAB + tiles: HQAAAAADWQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABNgAAAAAANgAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACNgAAAAAANgAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADDAAAAAABDAAAAAABHQAAAAACDgAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABDAAAAAADDAAAAAABHQAAAAADDgAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACDgAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACDAAAAAABDAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADDAAAAAABDAAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAABbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAHQAAAAADHQAAAAACEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAHQAAAAABHQAAAAAD + tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAABbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAACwAAAAAACwAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAHQAAAAADHQAAAAACEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAACwAAAAAACwAAAAAAeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAHQAAAAABHQAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAACbAAAAAADWQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAACbAAAAAACWQAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAACbAAAAAADWQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAACbAAAAAACWQAAAAAD version: 6 1,-3: ind: 1,-3 @@ -230,6 +230,8 @@ entities: 2769: -30,-28 2770: -34,-28 2771: -38,-28 + 2936: -16,-43 + 2939: 14,-43 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -245,6 +247,8 @@ entities: 2772: -38,-26 2773: -34,-26 2774: -30,-26 + 2937: -16,-40 + 2938: 14,-40 - node: color: '#FFFFFFFF' id: Bot @@ -289,7 +293,6 @@ entities: 1155: 3,28 1164: 1,26 1165: 2,26 - 1351: -6,12 1401: 3,21 1402: 4,21 1408: 7,19 @@ -340,6 +343,8 @@ entities: 2855: -29,1 2892: -30,-5 2923: -32,1 + 2925: -29,-3 + 2926: -26,-3 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -377,6 +382,16 @@ entities: 1448: -16,24 1449: -16,25 2840: -6,-11 + - node: + color: '#FFFFFFFF' + id: BrickLineOverlayN + decals: + 2958: -27.001663,-17.373186 + - node: + color: '#FFFFFFFF' + id: BrickLineOverlayW + decals: + 2957: -26.62042,-16.998186 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -486,6 +501,9 @@ entities: 1892: 3,-49 1893: 4,-49 2682: -44,-10 + 2927: 0,-2 + 2928: -2,-2 + 2931: -1,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -723,6 +741,11 @@ entities: id: BrickTileWhiteInnerNe decals: 1266: -9,12 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 2976: -21,-18 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw @@ -740,6 +763,11 @@ entities: decals: 863: 15,11 866: 13,11 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 2975: -20,-18 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe @@ -756,6 +784,11 @@ entities: decals: 1260: -17,21 1275: -9,18 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 2974: -21,-17 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw @@ -777,6 +810,11 @@ entities: decals: 1239: -8,9 1253: -10,21 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 2973: -20,-17 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -921,6 +959,13 @@ entities: 2652: -37,-5 2670: -36,-5 2687: -44,-6 + - node: + color: '#3E8FFFB1' + id: BrickTileWhiteLineN + decals: + 2945: -26,-17 + 2946: -26,-18 + 2947: -27,-18 - node: color: '#43990941' id: BrickTileWhiteLineN @@ -1053,6 +1098,12 @@ entities: 775: 6,-9 776: 7,-9 777: 8,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 2967: -24,-17 + 2968: -23,-17 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -1167,6 +1218,12 @@ entities: 2279: 9,-49 2280: 10,-49 2281: 8,-49 + - node: + color: '#439909FF' + id: BrickTileWhiteLineS + decals: + 2971: -23,-18 + 2972: -24,-18 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -1234,6 +1291,15 @@ entities: 785: 7,-13 786: 6,-13 787: 5,-13 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 2948: -26,-17 + 2949: -26,-18 + 2950: -27,-18 + 2969: -24,-18 + 2970: -23,-18 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1885,23 +1951,11 @@ entities: 1707: -12,-45 1708: -11,-45 1709: -10,-45 - 1710: -15,-44 - 1711: -15,-43 - 1712: -15,-42 - 1713: -15,-41 - 1714: -15,-40 - 1715: -15,-39 1716: 8,-45 1717: 9,-45 1718: 10,-45 1719: 11,-45 1720: 12,-45 - 1721: 13,-44 - 1722: 13,-43 - 1723: 13,-42 - 1724: 13,-41 - 1725: 13,-40 - 1726: 13,-39 1727: 7,-44 1728: 7,-43 1729: 7,-42 @@ -1974,6 +2028,10 @@ entities: 2893: -35,-9 2894: -35,-8 2895: -35,-7 + 2932: 14,-39 + 2933: 14,-44 + 2934: -16,-44 + 2935: -16,-39 - node: color: '#52B4E996' id: DeliveryGreyscale @@ -2143,6 +2201,11 @@ entities: 39: 25,0 2813: -16,-7 2814: -15,-7 + - node: + color: '#3E8FFFB1' + id: FullTileOverlayGreyscale + decals: + 2956: -27,-17 - node: color: '#52B4E973' id: FullTileOverlayGreyscale @@ -2525,6 +2588,13 @@ entities: 1218: -7,9 1219: -7,11 1220: -7,10 + - node: + color: '#3E8FFFB1' + id: HalfTileOverlayGreyscale180 + decals: + 2940: -26,-17 + 2942: -26,-18 + 2943: -27,-18 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -2689,6 +2759,11 @@ entities: decals: 1789: -8,-42 1790: -8,-41 + - node: + color: '#FFFFFFFF' + id: MiniTileInnerOverlaySE + decals: + 2959: -27.375637,-16.637075 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -3339,12 +3414,6 @@ entities: 1795: 10,-46 1796: 11,-46 1797: 12,-46 - 1798: 14,-44 - 1799: 14,-43 - 1800: 14,-42 - 1801: 14,-41 - 1802: 14,-40 - 1803: 14,-39 - node: color: '#DE3A3A96' id: WarnBoxGreyscale @@ -3354,12 +3423,6 @@ entities: 1693: -12,-46 1694: -11,-46 1695: -10,-46 - 1696: -16,-44 - 1697: -16,-43 - 1698: -16,-42 - 1699: -16,-41 - 1700: -16,-40 - 1701: -16,-39 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE @@ -3526,6 +3589,7 @@ entities: 1348: -12,22 2671: -41,-5 2672: -39,-5 + 2924: -6,12 - node: color: '#52B4E996' id: WarnLineGreyscaleS @@ -3689,7 +3753,6 @@ entities: 274: -4,-2 275: -4,-1 287: 0,-3 - 288: 0,-2 925: 22,20 926: 22,21 955: 25,11 @@ -3710,6 +3773,7 @@ entities: 2458: -20,7 2707: -48,4 2708: -48,5 + 2929: 0,-2 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -3790,7 +3854,6 @@ entities: 279: 2,-2 280: 2,-1 292: -2,-3 - 293: -2,-2 703: 21,-23 704: 21,-22 705: 21,-21 @@ -3804,6 +3867,7 @@ entities: 1942: 8,-33 2709: -52,4 2710: -52,5 + 2930: -2,-2 - node: color: '#FFFFFFFF' id: b @@ -5546,6 +5610,13 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-48.5 parent: 1668 +- proto: AlwaysPoweredLightSodium + entities: + - uid: 4660 + components: + - type: Transform + pos: 19.5,33.5 + parent: 1668 - proto: AmmoniaCanister entities: - uid: 4116 @@ -5560,6 +5631,20 @@ entities: - type: Transform pos: 15.5,20.5 parent: 1668 +- proto: AnomalyLocatorWide + entities: + - uid: 9396 + components: + - type: Transform + pos: -22.533813,-17.224167 + parent: 1668 +- proto: AnomalyScanner + entities: + - uid: 9394 + components: + - type: Transform + pos: -22.492147,-17.432499 + parent: 1668 - proto: APCBasic entities: - uid: 2865 @@ -6398,6 +6483,24 @@ entities: parent: 1668 - proto: BenchBlueComfy entities: + - uid: 1033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-2.5 + parent: 1668 + - uid: 4228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-2.5 + parent: 1668 + - uid: 4267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 1668 - uid: 4325 components: - type: Transform @@ -6410,6 +6513,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,9.5 parent: 1668 + - uid: 4645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-2.5 + parent: 1668 - uid: 9089 components: - type: Transform @@ -6514,36 +6623,6 @@ entities: - type: Transform pos: -13.5,-44.5 parent: 1668 - - uid: 4731 - components: - - type: Transform - pos: -14.5,-43.5 - parent: 1668 - - uid: 4732 - components: - - type: Transform - pos: -14.5,-42.5 - parent: 1668 - - uid: 4733 - components: - - type: Transform - pos: -14.5,-41.5 - parent: 1668 - - uid: 4734 - components: - - type: Transform - pos: -14.5,-40.5 - parent: 1668 - - uid: 4735 - components: - - type: Transform - pos: -14.5,-39.5 - parent: 1668 - - uid: 4736 - components: - - type: Transform - pos: -14.5,-38.5 - parent: 1668 - uid: 4737 components: - type: Transform @@ -6599,36 +6678,6 @@ entities: - type: Transform pos: 12.5,-44.5 parent: 1668 - - uid: 4748 - components: - - type: Transform - pos: 13.5,-43.5 - parent: 1668 - - uid: 4749 - components: - - type: Transform - pos: 13.5,-42.5 - parent: 1668 - - uid: 4750 - components: - - type: Transform - pos: 13.5,-41.5 - parent: 1668 - - uid: 4751 - components: - - type: Transform - pos: 13.5,-40.5 - parent: 1668 - - uid: 4752 - components: - - type: Transform - pos: 13.5,-39.5 - parent: 1668 - - uid: 4753 - components: - - type: Transform - pos: 13.5,-38.5 - parent: 1668 - uid: 4754 components: - type: Transform @@ -6674,6 +6723,46 @@ entities: - type: Transform pos: -34.5,-6.5 parent: 1668 + - uid: 9380 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 1668 + - uid: 9381 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 1668 + - uid: 9382 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 1668 + - uid: 9383 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 1668 + - uid: 9384 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 1668 + - uid: 9385 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 1668 + - uid: 9386 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 1668 + - uid: 9387 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 1668 - proto: BlastDoorOpen entities: - uid: 3 @@ -7109,6 +7198,28 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-32.5 parent: 1668 +- proto: BorgCharger + entities: + - uid: 4067 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1668 + - uid: 4087 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1668 + - uid: 4659 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 1668 + - uid: 4661 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1668 - proto: BoxDarts entities: - uid: 9173 @@ -7254,10 +7365,10 @@ entities: parent: 1668 - proto: BoxingBell entities: - - uid: 4722 + - uid: 9474 components: - type: Transform - pos: 0.5,-46.5 + pos: -0.5,-45.5 parent: 1668 - proto: BoxLethalshot entities: @@ -21159,6 +21270,11 @@ entities: parent: 1668 - proto: ClosetEmergencyFilledRandom entities: + - uid: 1381 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1668 - uid: 7345 components: - type: Transform @@ -21193,6 +21309,11 @@ entities: parent: 1668 - proto: ClosetFireFilled entities: + - uid: 4266 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 1668 - uid: 7347 components: - type: Transform @@ -21599,6 +21720,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingHeadHatCentcomcap + entities: + - uid: 9398 + components: + - type: Transform + pos: -26.008297,-17.419487 + parent: 1668 - proto: ClothingHeadHatPartyBlue entities: - uid: 6076 @@ -21615,36 +21743,6 @@ entities: parent: 1668 - proto: ClothingHeadHelmetThunderdome entities: - - uid: 4662 - components: - - type: Transform - pos: 14.5,-38.5 - parent: 1668 - - uid: 4663 - components: - - type: Transform - pos: 14.5,-39.5 - parent: 1668 - - uid: 4664 - components: - - type: Transform - pos: 14.5,-40.5 - parent: 1668 - - uid: 4665 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 1668 - - uid: 4666 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 1668 - - uid: 4667 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 1668 - uid: 4668 components: - type: Transform @@ -21695,36 +21793,6 @@ entities: - type: Transform pos: -13.5,-45.5 parent: 1668 - - uid: 4678 - components: - - type: Transform - pos: -15.5,-43.5 - parent: 1668 - - uid: 4679 - components: - - type: Transform - pos: -15.5,-42.5 - parent: 1668 - - uid: 4680 - components: - - type: Transform - pos: -15.5,-40.5 - parent: 1668 - - uid: 4681 - components: - - type: Transform - pos: -15.5,-39.5 - parent: 1668 - - uid: 4682 - components: - - type: Transform - pos: -15.5,-38.5 - parent: 1668 - - uid: 4683 - components: - - type: Transform - pos: -15.5,-41.5 - parent: 1668 - proto: ClothingHeadsetAltCentCom entities: - uid: 504 @@ -21982,36 +22050,6 @@ entities: - type: Transform pos: -13.5,-45.5 parent: 1668 - - uid: 4645 - components: - - type: Transform - pos: -15.5,-43.5 - parent: 1668 - - uid: 4646 - components: - - type: Transform - pos: -15.5,-42.5 - parent: 1668 - - uid: 4647 - components: - - type: Transform - pos: -15.5,-41.5 - parent: 1668 - - uid: 4648 - components: - - type: Transform - pos: -15.5,-40.5 - parent: 1668 - - uid: 4649 - components: - - type: Transform - pos: -15.5,-39.5 - parent: 1668 - - uid: 4650 - components: - - type: Transform - pos: -15.5,-38.5 - parent: 1668 - uid: 4651 components: - type: Transform @@ -22037,36 +22075,6 @@ entities: - type: Transform pos: 12.5,-45.5 parent: 1668 - - uid: 4656 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 1668 - - uid: 4657 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 1668 - - uid: 4658 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 1668 - - uid: 4659 - components: - - type: Transform - pos: 14.5,-40.5 - parent: 1668 - - uid: 4660 - components: - - type: Transform - pos: 14.5,-39.5 - parent: 1668 - - uid: 4661 - components: - - type: Transform - pos: 14.5,-38.5 - parent: 1668 - proto: ClothingOuterHardsuitDeathsquad entities: - uid: 2472 @@ -23031,26 +23039,6 @@ entities: parent: 1668 - proto: CurtainsBlack entities: - - uid: 8764 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 1668 - - uid: 8765 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 1668 - - uid: 8766 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 1668 - - uid: 8767 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 1668 - uid: 8768 components: - type: Transform @@ -23238,6 +23226,18 @@ entities: - type: Transform pos: -12.5,5.5 parent: 1668 +- proto: DefaultStationBeacon + entities: + - uid: 4656 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1668 + - uid: 9452 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 1668 - proto: DefibrillatorCabinetFilled entities: - uid: 511 @@ -23461,12 +23461,35 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-0.5 parent: 1668 + - uid: 8767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-41.5 + parent: 1668 - uid: 9164 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-29.5 parent: 1668 + - uid: 9207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-40.5 + parent: 1668 + - uid: 9378 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 1668 + - uid: 9379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 1668 - proto: DisposalJunction entities: - uid: 6298 @@ -23554,6 +23577,33 @@ entities: parent: 1668 - proto: DisposalPipe entities: + - uid: 6101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-41.5 + parent: 1668 + - uid: 6102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-40.5 + parent: 1668 + - uid: 6103 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 1668 + - uid: 6214 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 1668 + - uid: 6215 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 1668 - uid: 6226 components: - type: Transform @@ -24916,6 +24966,24 @@ entities: - type: Transform pos: -51.5,-1.5 parent: 1668 + - uid: 8764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-41.5 + parent: 1668 + - uid: 8765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-40.5 + parent: 1668 + - uid: 8766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-39.5 + parent: 1668 - uid: 9101 components: - type: Transform @@ -24939,6 +25007,52 @@ entities: parent: 1668 - proto: DisposalTrunk entities: + - uid: 4750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 1668 + - uid: 4751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-40.5 + parent: 1668 + - uid: 4752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-43.5 + parent: 1668 + - uid: 4753 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 1668 + - uid: 4797 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 1668 + - uid: 4803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-43.5 + parent: 1668 + - uid: 4810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-41.5 + parent: 1668 + - uid: 6100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-40.5 + parent: 1668 - uid: 6219 components: - type: Transform @@ -25097,6 +25211,26 @@ entities: - type: Transform pos: -2.5,7.5 parent: 1668 + - uid: 4735 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 1668 + - uid: 4736 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 1668 + - uid: 4748 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 1668 + - uid: 4749 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 1668 - uid: 6224 components: - type: Transform @@ -25313,6 +25447,13 @@ entities: - type: Transform pos: 10.514935,-35.88811 parent: 1668 +- proto: DrinkJar + entities: + - uid: 4400 + components: + - type: Transform + pos: -23.003485,-17.130417 + parent: 1668 - proto: DrinkJigger entities: - uid: 6204 @@ -25772,6 +25913,13 @@ entities: - type: Transform pos: -51.5,-4.5 parent: 1668 +- proto: FireAxeCabinetFilled + entities: + - uid: 4265 + components: + - type: Transform + pos: -17.5,28.5 + parent: 1668 - proto: FirelockGlass entities: - uid: 2725 @@ -25993,6 +26141,16 @@ entities: - type: Transform pos: -27.01272,3.9405928 parent: 1668 +- proto: FoodBakedCookie + entities: + - uid: 4386 + components: + - type: MetaData + desc: BISCUIT!!! + name: biscuit + - type: Transform + pos: -23.50047,-17.460098 + parent: 1668 - proto: FoodBoxDonut entities: - uid: 2678 @@ -39953,6 +40111,66 @@ entities: - type: Transform pos: -19.5,-35.5 parent: 1668 + - uid: 4679 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 1668 + - uid: 4681 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 1668 + - uid: 4704 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 1668 + - uid: 4705 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 1668 + - uid: 4718 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 1668 + - uid: 4719 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 1668 + - uid: 4720 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 1668 + - uid: 4722 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 1668 + - uid: 4731 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 1668 + - uid: 4732 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 1668 + - uid: 4733 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 1668 + - uid: 4734 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 1668 - uid: 5079 components: - type: Transform @@ -40613,6 +40831,8 @@ entities: - type: Transform pos: 13.5,29.5 parent: 1668 + - type: Godmode + oldDamage: {} - uid: 5998 components: - type: Transform @@ -40984,6 +41204,13 @@ entities: - type: Transform pos: -50.48601,-6.06394 parent: 1668 +- proto: LauncherSyringe + entities: + - uid: 4649 + components: + - type: Transform + pos: 23.50474,-12.504835 + parent: 1668 - proto: LemoonSeeds entities: - uid: 1023 @@ -42148,6 +42375,13 @@ entities: - type: Transform pos: 3.5,26.5 parent: 1668 +- proto: OrganHumanBrain + entities: + - uid: 4385 + components: + - type: Transform + pos: -22.989595,-17.137362 + parent: 1668 - proto: OxygenCanister entities: - uid: 792 @@ -42590,6 +42824,20 @@ entities: - type: Transform pos: -15.5,-2.5 parent: 1668 +- proto: PlushieSharkGrey + entities: + - uid: 4236 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 1668 +- proto: PlushieSharkPink + entities: + - uid: 2281 + components: + - type: Transform + pos: -46.5,1.5 + parent: 1668 - proto: PortableGeneratorJrPacman entities: - uid: 4092 @@ -43449,12 +43697,7 @@ entities: - uid: 1380 components: - type: Transform - pos: 6.5,-6.5 - parent: 1668 - - uid: 1381 - components: - - type: Transform - pos: 6.5,5.5 + pos: -30.5,-2.5 parent: 1668 - uid: 1755 components: @@ -43471,6 +43714,16 @@ entities: - type: Transform pos: -6.5,-6.5 parent: 1668 + - uid: 4065 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1668 + - uid: 4235 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 1668 - uid: 4322 components: - type: Transform @@ -43481,6 +43734,16 @@ entities: - type: Transform pos: -2.5,12.5 parent: 1668 + - uid: 4657 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1668 + - uid: 4658 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1668 - uid: 6167 components: - type: Transform @@ -44143,12 +44406,6 @@ entities: - type: Transform pos: 10.5,-47.5 parent: 1668 - - uid: 4803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-40.5 - parent: 1668 - uid: 4804 components: - type: Transform @@ -44185,12 +44442,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-46.5 parent: 1668 - - uid: 4810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-40.5 - parent: 1668 - uid: 4811 components: - type: Transform @@ -44316,18 +44567,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-23.5 parent: 1668 - - uid: 6214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-17.5 - parent: 1668 - - uid: 6215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-17.5 - parent: 1668 - uid: 6677 components: - type: Transform @@ -44538,6 +44777,14 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-11.5 parent: 1668 +- proto: PoweredlightOrange + entities: + - uid: 4663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-17.5 + parent: 1668 - proto: PoweredlightRed entities: - uid: 2445 @@ -44703,6 +44950,12 @@ entities: - type: Transform pos: -16.5,27.5 parent: 1668 + - uid: 4664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-17.5 + parent: 1668 - uid: 4785 components: - type: Transform @@ -44721,11 +44974,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-45.5 parent: 1668 - - uid: 4797 - components: - - type: Transform - pos: 14.5,-38.5 - parent: 1668 - uid: 4798 components: - type: Transform @@ -44852,12 +45100,6 @@ entities: - type: Transform pos: 14.5,20.5 parent: 1668 - - uid: 2281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-38.5 - parent: 1668 - uid: 2294 components: - type: Transform @@ -44914,18 +45156,6 @@ entities: - type: Transform pos: 6.5,22.5 parent: 1668 - - uid: 4065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-40.5 - parent: 1668 - - uid: 4067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-42.5 - parent: 1668 - uid: 4089 components: - type: Transform @@ -44947,42 +45177,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-45.5 parent: 1668 - - uid: 4228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-40.5 - parent: 1668 - - uid: 4231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 - parent: 1668 - - uid: 4232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-38.5 - parent: 1668 - - uid: 4338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-39.5 - parent: 1668 - - uid: 4339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-41.5 - parent: 1668 - - uid: 4340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-43.5 - parent: 1668 - uid: 4343 components: - type: Transform @@ -45025,29 +45219,16 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-45.5 parent: 1668 - - uid: 4385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-41.5 - parent: 1668 - - uid: 4386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 - parent: 1668 - uid: 4389 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-45.5 parent: 1668 - - uid: 4400 + - uid: 4650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-39.5 + pos: 23.5,-12.5 parent: 1668 - proto: RadioImplanterCentcomm entities: @@ -46663,6 +46844,66 @@ entities: - type: Transform pos: -20.5,-37.5 parent: 1668 + - uid: 4680 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 1668 + - uid: 4682 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 1668 + - uid: 4689 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 1668 + - uid: 4690 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 1668 + - uid: 4691 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 1668 + - uid: 4692 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 1668 + - uid: 4693 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 1668 + - uid: 4694 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 1668 + - uid: 4700 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 1668 + - uid: 4701 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 1668 + - uid: 4702 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 1668 + - uid: 4703 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 1668 - uid: 5321 components: - type: Transform @@ -47516,11 +47757,6 @@ entities: - type: Transform pos: 32.5,-18.5 parent: 1668 - - uid: 4087 - components: - - type: Transform - pos: -17.5,28.5 - parent: 1668 - proto: ShelfChemistryChemistrySecure entities: - uid: 4293 @@ -47626,6 +47862,50 @@ entities: 541: - On: Open - Off: Close + - uid: 9388 + components: + - type: MetaData + name: Green Team Entrance + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-49.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 9380: + - On: Open + - Off: Close + 9381: + - On: Open + - Off: Close + 9382: + - On: Open + - Off: Close + 9383: + - On: Open + - Off: Close + - uid: 9389 + components: + - type: MetaData + name: Red Team Entrance + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-49.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 9387: + - On: Open + - Off: Close + 9386: + - On: Open + - Off: Close + 9385: + - On: Open + - Off: Close + 9384: + - On: Open + - Off: Close - proto: SignalSwitchDirectional entities: - uid: 336 @@ -47988,24 +48268,6 @@ entities: 4730: - On: Open - Off: Close - 4731: - - On: Open - - Off: Close - 4732: - - On: Open - - Off: Close - 4733: - - On: Open - - Off: Close - 4734: - - On: Open - - Off: Close - 4735: - - On: Open - - Off: Close - 4736: - - On: Open - - Off: Close - uid: 4716 components: - type: MetaData @@ -48077,24 +48339,6 @@ entities: 4747: - On: Open - Off: Close - 4748: - - On: Open - - Off: Close - 4749: - - On: Open - - Off: Close - 4750: - - On: Open - - Off: Close - 4751: - - On: Open - - Off: Close - 4752: - - On: Open - - Off: Close - 4753: - - On: Open - - Off: Close - uid: 9217 components: - type: MetaData @@ -48310,6 +48554,14 @@ entities: - type: Transform pos: -3.5,-32.5 parent: 1668 + - uid: 4662 + components: + - type: MetaData + desc: Current Headmin. + name: nikthechampiongr + - type: Transform + pos: -24.5,-15.5 + parent: 1668 - uid: 6119 components: - type: MetaData @@ -48358,6 +48610,14 @@ entities: - type: Transform pos: -22.5,-9.5 parent: 1668 + - uid: 9395 + components: + - type: MetaData + desc: Current Headmin. + name: Crazybrain + - type: Transform + pos: -21.5,-15.5 + parent: 1668 - proto: SignPrison entities: - uid: 1631 @@ -48547,6 +48807,23 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-16.5 parent: 1668 + - uid: 4232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 1668 + - uid: 4333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 1668 + - uid: 4648 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1668 - proto: Sledgehammer entities: - uid: 3253 @@ -49094,36 +49371,6 @@ entities: - type: Transform pos: -13.5,-45.5 parent: 1668 - - uid: 4689 - components: - - type: Transform - pos: -15.5,-43.5 - parent: 1668 - - uid: 4690 - components: - - type: Transform - pos: -15.5,-42.5 - parent: 1668 - - uid: 4691 - components: - - type: Transform - pos: -15.5,-41.5 - parent: 1668 - - uid: 4692 - components: - - type: Transform - pos: -15.5,-40.5 - parent: 1668 - - uid: 4693 - components: - - type: Transform - pos: -15.5,-39.5 - parent: 1668 - - uid: 4694 - components: - - type: Transform - pos: -15.5,-38.5 - parent: 1668 - uid: 4695 components: - type: Transform @@ -49149,36 +49396,6 @@ entities: - type: Transform pos: 12.5,-45.5 parent: 1668 - - uid: 4700 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 1668 - - uid: 4701 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 1668 - - uid: 4702 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 1668 - - uid: 4703 - components: - - type: Transform - pos: 14.5,-40.5 - parent: 1668 - - uid: 4704 - components: - - type: Transform - pos: 14.5,-39.5 - parent: 1668 - - uid: 4705 - components: - - type: Transform - pos: 14.5,-38.5 - parent: 1668 - proto: SubstationBasic entities: - uid: 1312 @@ -49234,6 +49451,683 @@ entities: - type: Transform pos: -15.5,24.5 parent: 1668 +- proto: SurveillanceCameraCommand + entities: + - uid: 9397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Core + - uid: 9400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,13.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Admiralty Lounge + - uid: 9401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,7.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Admiralty Office + - uid: 9402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,10.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Admiralty Bedroom + - uid: 9430 + components: + - type: Transform + pos: -48.5,3.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Office 1 + - uid: 9431 + components: + - type: Transform + pos: -42.5,3.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Office 2 + - uid: 9432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-4.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Office 3 + - uid: 9433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-4.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT Ready Room + - uid: 9434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT Armory + - uid: 9471 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Thunderdome Command + - uid: 9477 + components: + - type: Transform + pos: -34.5,3.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Head Administration + - uid: 9478 + components: + - type: Transform + pos: -34.5,9.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Head Administration Office +- proto: SurveillanceCameraEngineering + entities: + - uid: 9403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,24.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos + - uid: 9404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,23.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Bar + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,22.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Desk + - uid: 9406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Lobby + - uid: 9407 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Station Anchor + - uid: 9408 + components: + - type: Transform + pos: -4.5,24.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Grav Gen + - uid: 9435 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms +- proto: SurveillanceCameraGeneral + entities: + - uid: 9390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome Viewer Door + - uid: 9391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-32.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome Bar + - uid: 9392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-25.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Afterhours Southwest Entrance + - uid: 9393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-32.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome Entrance + - uid: 9416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Throngler Cam + - uid: 9417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Court + - uid: 9418 + components: + - type: Transform + pos: 28.5,10.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Law Office + - uid: 9422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,16.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall Security + - uid: 9423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall North + - uid: 9424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall East + - uid: 9425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall West + - uid: 9426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall South + - uid: 9427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall South South + - uid: 9428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,1.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall West West + - uid: 9429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,1.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall West West West + - uid: 9437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-12.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Administration Hall + - uid: 9438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-10.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Retirement Home Front Porch + - uid: 9439 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Retirement Home Interior + - uid: 9440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-12.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Administration Hall West + - uid: 9448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-15.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Afterhours Lounge North + - uid: 9449 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Afterhours Lounge South + - uid: 9454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking Bay East + - uid: 9455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking Bay Docks + - uid: 9456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking Bay West + - uid: 9458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome North East + - uid: 9459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-25.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome North West + - uid: 9460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-25.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Pod Dock Hall + - uid: 9461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-38.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Red Team Ready Room + - uid: 9462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-38.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Green Team Ready Room + - uid: 9463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-39.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Green Team Hall + - uid: 9464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-39.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Read Team Hall + - uid: 9465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-29.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Red Team Lockerroom + - uid: 9466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-29.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Green Team Lockerroom + - uid: 9467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Green Team Cooridor + - uid: 9468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Red Team Cooridor + - uid: 9469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-47.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome Command West + - uid: 9470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-47.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome Command East + - uid: 9472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-37.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome + - uid: 9475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Afterhours Stage + - uid: 9476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: CentComm Waiting Area +- proto: SurveillanceCameraMedical + entities: + - uid: 9441 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 9442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Front + - uid: 9443 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cloning - proto: SurveillanceCameraRouterCommand entities: - uid: 8789 @@ -49290,6 +50184,219 @@ entities: - type: Transform pos: -11.5,-6.5 parent: 1668 +- proto: SurveillanceCameraScience + entities: + - uid: 9457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-30.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Afterhours Science Lounge +- proto: SurveillanceCameraSecurity + entities: + - uid: 9413 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Armory + - uid: 9414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lethal Armory + - uid: 9415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,31.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: DS Armory + - uid: 9419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 1 + - uid: 9420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 2 + - uid: 9421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security + - uid: 9453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-10.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Afterhours North Entrance +- proto: SurveillanceCameraService + entities: + - uid: 9436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Jani Office + - uid: 9444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Hydroponics North + - uid: 9445 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Hydroponics South + - uid: 9446 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 9447 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 9450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-21.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Afterhours Lounge Backroom + - uid: 9451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Afterhours Lounge Bar +- proto: SurveillanceCameraSupply + entities: + - uid: 9409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Supply Room + - uid: 9410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,21.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Supply Lobby + - uid: 9411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,28.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Supply Drive-Thru + - uid: 9412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,34.5 + parent: 1668 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Supply Dock - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - uid: 4639 @@ -49332,6 +50439,18 @@ entities: - type: Transform pos: 11.61474,-11.158057 parent: 1668 +- proto: SyringeCryostasis + entities: + - uid: 4430 + components: + - type: Transform + pos: 3.69003,-10.48921 + parent: 1668 + - uid: 4646 + components: + - type: Transform + pos: 3.47128,-10.45796 + parent: 1668 - proto: Table entities: - uid: 800 @@ -49453,6 +50572,12 @@ entities: - type: Transform pos: -18.5,18.5 parent: 1668 + - uid: 4231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-2.5 + parent: 1668 - uid: 4261 components: - type: Transform @@ -49473,12 +50598,23 @@ entities: - type: Transform pos: -4.5,-33.5 parent: 1668 + - uid: 4268 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 1668 - uid: 4327 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,10.5 parent: 1668 + - uid: 4647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-2.5 + parent: 1668 - uid: 4835 components: - type: Transform @@ -49651,6 +50787,16 @@ entities: - type: Transform pos: -23.5,10.5 parent: 1668 + - uid: 4665 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 1668 + - uid: 4666 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 1668 - uid: 6182 components: - type: Transform @@ -49678,26 +50824,6 @@ entities: - type: Transform pos: -11.5,-17.5 parent: 1668 - - uid: 6100 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 1668 - - uid: 6101 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 1668 - - uid: 6102 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 1668 - - uid: 6103 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 1668 - uid: 6124 components: - type: Transform @@ -49837,6 +50963,18 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-17.5 parent: 1668 +- proto: TableGlass + entities: + - uid: 4667 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 1668 + - uid: 4678 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 1668 - proto: TablePlasmaGlass entities: - uid: 7318 @@ -50812,16 +51950,16 @@ entities: - type: Transform pos: -18.5,26.5 parent: 1668 + - uid: 4225 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 1668 - uid: 4429 components: - type: Transform pos: 3.5,-46.5 parent: 1668 - - uid: 4430 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 1668 - uid: 4431 components: - type: Transform @@ -51579,6 +52717,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: TreasureDatadiskEncrypted + entities: + - uid: 9399 + components: + - type: Transform + pos: -23.480354,-17.162823 + parent: 1668 - proto: TritiumCanister entities: - uid: 4123 @@ -52055,41 +53200,46 @@ entities: - type: Transform pos: -15.5,8.5 parent: 1668 - - uid: 4265 - components: - - type: Transform - pos: 3.5,-35.5 - parent: 1668 - - uid: 4266 + - uid: 4233 components: - type: Transform pos: 3.5,-33.5 parent: 1668 - - uid: 4267 + - uid: 4332 components: - type: Transform - pos: -4.5,-33.5 + pos: 3.5,-35.5 parent: 1668 - - uid: 4268 + - uid: 4335 components: - type: Transform pos: -4.5,-35.5 parent: 1668 - - uid: 4718 + - uid: 4336 components: - type: Transform - pos: -4.5,-46.5 + pos: -4.5,-33.5 parent: 1668 - - uid: 4719 + - uid: 4338 components: - type: Transform pos: -1.5,-46.5 parent: 1668 - - uid: 4720 + - uid: 4339 components: - type: Transform pos: 3.5,-46.5 parent: 1668 + - uid: 4340 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 1668 + - uid: 9473 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 1668 - proto: WallPlastitaniumDiagonalIndestructible entities: - uid: 375 @@ -55204,12 +56354,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-37.5 parent: 1668 - - uid: 4225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-42.5 - parent: 1668 - uid: 4226 components: - type: Transform @@ -55234,30 +56378,12 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-37.5 parent: 1668 - - uid: 4233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-39.5 - parent: 1668 - uid: 4234 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-38.5 parent: 1668 - - uid: 4235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-40.5 - parent: 1668 - - uid: 4236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 1668 - uid: 4237 components: - type: Transform @@ -55335,36 +56461,12 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-44.5 parent: 1668 - - uid: 4332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 - parent: 1668 - - uid: 4333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-41.5 - parent: 1668 - uid: 4334 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-37.5 parent: 1668 - - uid: 4335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-40.5 - parent: 1668 - - uid: 4336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-42.5 - parent: 1668 - uid: 4337 components: - type: Transform @@ -57781,13 +58883,6 @@ entities: - type: Transform pos: -24.5,1.5 parent: 1668 -- proto: WaterTankFull - entities: - - uid: 1033 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 1668 - proto: WaterTankHighCapacity entities: - uid: 1031 @@ -58048,10 +59143,10 @@ entities: parent: 1668 - proto: WeaponParticleDecelerator entities: - - uid: 9207 + - uid: 4683 components: - type: Transform - pos: -31.094982,-6.204217 + pos: -30.623615,-7.8922486 parent: 1668 - proto: WeaponPistolN1984 entities: From eb930f5b7aaa1590687da04ed2a4238abf076763 Mon Sep 17 00:00:00 2001 From: ScarKy0 Date: Mon, 17 Feb 2025 20:13:29 +0100 Subject: [PATCH 037/155] blue --- Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml | 2 +- .../Entities/Structures/Machines/Computers/computers.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 7a29d45747..3eabbd8700 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -66,7 +66,7 @@ - type: SolarControlConsole # look ma i AM the computer! - type: CommunicationsConsole title: comms-console-announcement-title-centcom - color: "#4bad40" + color: "#1d8bad" delay: 10 initialDelay: 0 global: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 10c52600c8..3a1684bbc7 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -770,7 +770,7 @@ access: [[ "CentralCommand" ]] - type: CommunicationsConsole title: comms-console-announcement-title-centcom - color: "#4bad40" + color: "#1d8bad" canShuttle: false global: true - type: Computer From 03c56efa00de8c56e1d02a8a9d103bca9ed0026c Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Mon, 17 Feb 2025 23:39:12 +0300 Subject: [PATCH 038/155] New Feature: Votekick bans distinguish themselves as votekicks (#35258) * Feature * Localization --- Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs | 2 +- Resources/Locale/en-US/discord/vote-notifications.ftl | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs index 89f4acdef1..468bfdc0f8 100644 --- a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs +++ b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs @@ -544,7 +544,7 @@ namespace Content.Server.Voting.Managers uint minutes = (uint)_cfg.GetCVar(CCVars.VotekickBanDuration); - _bans.CreateServerBan(targetUid, target, null, targetIP, targetHWid, minutes, severity, reason); + _bans.CreateServerBan(targetUid, target, null, targetIP, targetHWid, minutes, severity, Loc.GetString("votekick-ban-reason", ("reason", reason))); } } else diff --git a/Resources/Locale/en-US/discord/vote-notifications.ftl b/Resources/Locale/en-US/discord/vote-notifications.ftl index f6779cac83..771d04aa8a 100644 --- a/Resources/Locale/en-US/discord/vote-notifications.ftl +++ b/Resources/Locale/en-US/discord/vote-notifications.ftl @@ -9,3 +9,5 @@ votekick-webhook-description = Initiator: { $initiator }; Target: { $target } votekick-webhook-cancelled-admin-online = **Vote cancelled due to admins online** votekick-webhook-cancelled-admin-target = **Vote cancelled due to target being admin** votekick-webhook-cancelled-antag-target = **Vote cancelled due to target being antag** + +votekick-ban-reason = "Votekick: {$reason}" From a9b487e6289f2a42184b4e1fdd4a7b5e2f892ef3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 17 Feb 2025 20:40:19 +0000 Subject: [PATCH 039/155] Automatic changelog update --- Resources/Changelog/Admin.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index fca63ed1a3..541f8b1b4a 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -766,5 +766,12 @@ Entries: id: 95 time: '2025-02-16T21:51:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35229 +- author: Winkarst-cpu + changes: + - message: Votekick bans now distinguish themselves as votekicks in the "ban reason". + type: Tweak + id: 96 + time: '2025-02-17T20:39:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35258 Name: Admin Order: 1 From 241d0e12e27f086e6ccab8a1f6f5a614e0c2676a Mon Sep 17 00:00:00 2001 From: Zachary Higgs Date: Mon, 17 Feb 2025 16:53:23 -0400 Subject: [PATCH 040/155] Fix SuperSlippery And StepTriggers persisting when UpdateSlip is called (#34525) * Fix superSlippery and stepTrigger values persist - made values in SpillTileReaction's public so we can query the prototype - made the default values for slippery component and StepTriggerComponent based on default constants for easier resetting - added a calculation and check in UpdateSlips to check if a super slip is present as well as Update relevant steptrigger and slip values based on the contents of the solution * The worlds biggest change --------- Co-authored-by: Myra --- .../TileReactions/SpillTileReaction.cs | 16 ++++---- .../Fluids/EntitySystems/PuddleSystem.cs | 39 +++++++++++++++---- Content.Shared/Slippery/SlipperyComponent.cs | 6 ++- .../Components/StepTriggerComponent.cs | 3 +- 4 files changed, 45 insertions(+), 19 deletions(-) diff --git a/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs b/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs index f9fb2b90d0..68c1966de8 100644 --- a/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs +++ b/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs @@ -17,14 +17,14 @@ namespace Content.Server.Chemistry.TileReactions [DataDefinition] public sealed partial class SpillTileReaction : ITileReaction { - [DataField("launchForwardsMultiplier")] private float _launchForwardsMultiplier = 1; - [DataField("requiredSlipSpeed")] private float _requiredSlipSpeed = 6; - [DataField("paralyzeTime")] private float _paralyzeTime = 1; + [DataField("launchForwardsMultiplier")] public float LaunchForwardsMultiplier = 1; + [DataField("requiredSlipSpeed")] public float RequiredSlipSpeed = 6; + [DataField("paralyzeTime")] public float ParalyzeTime = 1; /// /// /// - [DataField("superSlippery")] private bool _superSlippery; + [DataField("superSlippery")] public bool SuperSlippery; public FixedPoint2 TileReact(TileRef tile, ReagentPrototype reagent, @@ -39,13 +39,13 @@ namespace Content.Server.Chemistry.TileReactions .TrySpillAt(tile, new Solution(reagent.ID, reactVolume, data), out var puddleUid, false, false)) { var slippery = entityManager.EnsureComponent(puddleUid); - slippery.LaunchForwardsMultiplier = _launchForwardsMultiplier; - slippery.ParalyzeTime = _paralyzeTime; - slippery.SuperSlippery = _superSlippery; + slippery.LaunchForwardsMultiplier = LaunchForwardsMultiplier; + slippery.ParalyzeTime = ParalyzeTime; + slippery.SuperSlippery = SuperSlippery; entityManager.Dirty(puddleUid, slippery); var step = entityManager.EnsureComponent(puddleUid); - entityManager.EntitySysManager.GetEntitySystem().SetRequiredTriggerSpeed(puddleUid, _requiredSlipSpeed, step); + entityManager.EntitySysManager.GetEntitySystem().SetRequiredTriggerSpeed(puddleUid, RequiredSlipSpeed, step); var slow = entityManager.EnsureComponent(puddleUid); var speedModifier = 1 - reagent.Viscosity; diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs index 3889be1174..8267b8e971 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs @@ -1,4 +1,6 @@ +using System.Linq; using Content.Server.Administration.Logs; +using Content.Server.Chemistry.TileReactions; using Content.Server.DoAfter; using Content.Server.Fluids.Components; using Content.Server.Spreader; @@ -387,23 +389,36 @@ public sealed partial class PuddleSystem : SharedPuddleSystem private void UpdateSlip(EntityUid entityUid, PuddleComponent component, Solution solution) { var isSlippery = false; + var isSuperSlippery = false; // The base sprite is currently at 0.3 so we require at least 2nd tier to be slippery or else it's too hard to see. var amountRequired = FixedPoint2.New(component.OverflowVolume.Float() * LowThreshold); var slipperyAmount = FixedPoint2.Zero; + // Utilize the defaults from their relevant systems... this sucks, and is a bandaid + var launchForwardsMultiplier = SlipperyComponent.DefaultLaunchForwardsMultiplier; + var paralyzeTime = SlipperyComponent.DefaultParalyzeTime; + var requiredSlipSpeed = StepTriggerComponent.DefaultRequiredTriggeredSpeed; + foreach (var (reagent, quantity) in solution.Contents) { var reagentProto = _prototypeManager.Index(reagent.Prototype); - if (reagentProto.Slippery) - { - slipperyAmount += quantity; + if (!reagentProto.Slippery) + continue; + slipperyAmount += quantity; - if (slipperyAmount > amountRequired) - { - isSlippery = true; - break; - } + if (slipperyAmount <= amountRequired) + continue; + isSlippery = true; + + foreach (var tileReaction in reagentProto.TileReactions) + { + if (tileReaction is not SpillTileReaction spillTileReaction) + continue; + isSuperSlippery = spillTileReaction.SuperSlippery; + launchForwardsMultiplier = launchForwardsMultiplier < spillTileReaction.LaunchForwardsMultiplier ? spillTileReaction.LaunchForwardsMultiplier : launchForwardsMultiplier; + requiredSlipSpeed = requiredSlipSpeed > spillTileReaction.RequiredSlipSpeed ? spillTileReaction.RequiredSlipSpeed : requiredSlipSpeed; + paralyzeTime = paralyzeTime < spillTileReaction.ParalyzeTime ? spillTileReaction.ParalyzeTime : paralyzeTime; } } @@ -413,6 +428,14 @@ public sealed partial class PuddleSystem : SharedPuddleSystem _stepTrigger.SetActive(entityUid, true, comp); var friction = EnsureComp(entityUid); _tile.SetModifier(entityUid, TileFrictionController.DefaultFriction * 0.5f, friction); + + if (!TryComp(entityUid, out var slipperyComponent)) + return; + slipperyComponent.SuperSlippery = isSuperSlippery; + _stepTrigger.SetRequiredTriggerSpeed(entityUid, requiredSlipSpeed); + slipperyComponent.LaunchForwardsMultiplier = launchForwardsMultiplier; + slipperyComponent.ParalyzeTime = paralyzeTime; + } else if (TryComp(entityUid, out var comp)) { diff --git a/Content.Shared/Slippery/SlipperyComponent.cs b/Content.Shared/Slippery/SlipperyComponent.cs index 154ca6c51a..a6bf0fce91 100644 --- a/Content.Shared/Slippery/SlipperyComponent.cs +++ b/Content.Shared/Slippery/SlipperyComponent.cs @@ -13,6 +13,8 @@ namespace Content.Shared.Slippery [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class SlipperyComponent : Component { + public const float DefaultParalyzeTime = 1.5f; + public const float DefaultLaunchForwardsMultiplier = 1.5f; /// /// Path to the sound to be played when a mob slips. /// @@ -25,14 +27,14 @@ namespace Content.Shared.Slippery /// [DataField, AutoNetworkedField] [Access(Other = AccessPermissions.ReadWrite)] - public float ParalyzeTime = 1.5f; + public float ParalyzeTime = DefaultParalyzeTime; /// /// The entity's speed will be multiplied by this to slip it forwards. /// [DataField, AutoNetworkedField] [Access(Other = AccessPermissions.ReadWrite)] - public float LaunchForwardsMultiplier = 1.5f; + public float LaunchForwardsMultiplier = DefaultLaunchForwardsMultiplier; /// /// If this is true, any slipping entity loses its friction until diff --git a/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs b/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs index b8483d021a..87d6d37a7f 100644 --- a/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs +++ b/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs @@ -8,6 +8,7 @@ namespace Content.Shared.StepTrigger.Components; [Access(typeof(StepTriggerSystem))] public sealed partial class StepTriggerComponent : Component { + public const float DefaultRequiredTriggeredSpeed = 3.5f; /// /// List of entities that are currently colliding with the entity. /// @@ -37,7 +38,7 @@ public sealed partial class StepTriggerComponent : Component /// Entities will only be triggered if their speed exceeds this limit. /// [DataField, AutoNetworkedField] - public float RequiredTriggeredSpeed = 3.5f; + public float RequiredTriggeredSpeed = DefaultRequiredTriggeredSpeed; /// /// If any entities occupy the blacklist on the same tile then steptrigger won't work. From 5ccea54299cfa89d5513c1860c346a6cc5bfc852 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 17 Feb 2025 20:54:29 +0000 Subject: [PATCH 041/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b081c2499f..164a898761 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: slarticodefast - changes: - - message: Fixed the chameleon settings menu not showing up for the voice mask. - type: Fix - id: 7469 - time: '2024-10-02T03:22:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32546 - author: metalgearsloth changes: - message: Fix physics sensors (e.g. proximity triggers) being able to block doors. @@ -3899,3 +3892,10 @@ id: 7968 time: '2025-02-17T12:56:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34795 +- author: Kickguy223 + changes: + - message: Cleaning up a puddle properly changes its slippery properties. + type: Fix + id: 7969 + time: '2025-02-17T20:53:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34525 From 3d7e7e8320f25996f8f0bfc81e949a934b4aa989 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 17 Feb 2025 22:59:33 +0100 Subject: [PATCH 042/155] Make AllowedEmotes bypass whitelists and fix syndiborg ability to laugh (#31510) --- .../Chat/Systems/ChatSystem.Emote.cs | 23 +++++++++++++++---- .../Mobs/Cyborgs/base_borg_chassis.yml | 2 ++ 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/Content.Server/Chat/Systems/ChatSystem.Emote.cs b/Content.Server/Chat/Systems/ChatSystem.Emote.cs index fddf453ff0..707a0e0dc5 100644 --- a/Content.Server/Chat/Systems/ChatSystem.Emote.cs +++ b/Content.Server/Chat/Systems/ChatSystem.Emote.cs @@ -196,17 +196,30 @@ public partial class ChatSystem /// private bool AllowedToUseEmote(EntityUid source, EmotePrototype emote) { - if ((_whitelistSystem.IsWhitelistFail(emote.Whitelist, source) || _whitelistSystem.IsBlacklistPass(emote.Blacklist, source))) - return false; + // If emote is in AllowedEmotes, it will bypass whitelist and blacklist + if (TryComp(source, out var speech) && + speech.AllowedEmotes.Contains(emote.ID)) + { + return true; + } - if (!emote.Available && - TryComp(source, out var speech) && - !speech.AllowedEmotes.Contains(emote.ID)) + // Check the whitelist and blacklist + if (_whitelistSystem.IsWhitelistFail(emote.Whitelist, source) || + _whitelistSystem.IsBlacklistPass(emote.Blacklist, source)) + { return false; + } + + // Check if the emote is available for all + if (!emote.Available) + { + return false; + } return true; } + private void InvokeEmoteEvent(EntityUid uid, EmotePrototype proto) { var ev = new EmoteEvent(proto); diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index fdc6574c94..85ef048096 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -324,6 +324,8 @@ - type: MovementAlwaysTouching - type: Speech speechSounds: SyndieBorg + allowedEmotes: + - Laugh - type: Vocal sounds: Unsexed: UnisexSiliconSyndicate From 6b8ac708d67d7f85704f01a686704e2e6d7f0c2c Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 17 Feb 2025 22:00:40 +0000 Subject: [PATCH 043/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 164a898761..f01a89c25d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix physics sensors (e.g. proximity triggers) being able to block doors. - type: Fix - id: 7470 - time: '2024-10-02T05:00:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32591 - author: Plykiya changes: - message: You can now quick-swap uneven stacks of items into your inventory without @@ -3899,3 +3892,10 @@ id: 7969 time: '2025-02-17T20:53:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34525 +- author: lzk228 + changes: + - message: Syndicate cyborgs can laugh again. + type: Fix + id: 7970 + time: '2025-02-17T21:59:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31510 From 918767bcc514135e748f7858bcaf246e36035dce Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Tue, 18 Feb 2025 01:21:49 +0100 Subject: [PATCH 044/155] Magical contraband type (#35254) * init * really ponderous --- .../Locale/en-US/contraband/contraband-severity.ftl | 1 + Resources/Prototypes/Entities/Clothing/Belt/belts.yml | 2 +- Resources/Prototypes/Entities/Clothing/Head/hats.yml | 2 +- .../Entities/Clothing/OuterClothing/hardsuits.yml | 2 +- .../Entities/Clothing/OuterClothing/misc.yml | 2 +- Resources/Prototypes/Entities/Objects/Fun/toys.yml | 2 +- Resources/Prototypes/Entities/Objects/Magic/books.yml | 4 ++-- .../Entities/Objects/Weapons/Guns/Basic/base_staff.yml | 2 +- .../Entities/Objects/Weapons/Guns/Basic/base_wand.yml | 2 +- .../Prototypes/Entities/Objects/base_contraband.yml | 10 +++++++++- Resources/Prototypes/Magic/staves.yml | 2 +- Resources/Prototypes/contraband_severities.yml | 5 +++++ 12 files changed, 25 insertions(+), 11 deletions(-) diff --git a/Resources/Locale/en-US/contraband/contraband-severity.ftl b/Resources/Locale/en-US/contraband/contraband-severity.ftl index d79ecfa4b2..10baf2cb25 100644 --- a/Resources/Locale/en-US/contraband/contraband-severity.ftl +++ b/Resources/Locale/en-US/contraband/contraband-severity.ftl @@ -4,6 +4,7 @@ contraband-examine-text-Restricted-department = [color=yellow]This item is restr contraband-examine-text-Major = [color=red]This item is considered major contraband.[/color] contraband-examine-text-GrandTheft = [color=red]This item is a highly valuable target for Syndicate agents![/color] contraband-examine-text-Syndicate = [color=crimson]This item is highly illegal Syndicate contraband![/color] +contraband-examine-text-Magical = [color=#b337b3]This item is highly illegal Magical contraband![/color] contraband-examine-text-avoid-carrying-around = [color=red][italic]You probably want to avoid visibly carrying this around without a good reason.[/italic][/color] contraband-examine-text-in-the-clear = [color=green][italic]You should be in the clear to visibly carry this around.[/italic][/color] diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index 19ff2f278f..a70fe17ed6 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -700,7 +700,7 @@ sprite: Clothing/Belt/suspenders_black.rsi - type: entity - parent: ClothingBeltStorageBase + parent: [ ClothingBeltStorageBase, BaseMagicalContraband ] id: ClothingBeltWand name: wand belt description: A belt designed to hold various rods of power. A veritable fanny pack of exotic magic. diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 6c0d405b4d..1e818226d5 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -580,7 +580,7 @@ - type: entity abstract: true - parent: ClothingHeadBase + parent: [ ClothingHeadBase, BaseMagicalContraband ] id: ClothingHeadHatWizardBase components: - type: WizardClothes diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 4745bc8dbd..08ac6f32c0 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -677,7 +677,7 @@ #Wizard Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: [ ClothingOuterHardsuitBase, BaseMagicalContraband ] id: ClothingOuterHardsuitWizard name: wizard hardsuit description: A bizarre gem-encrusted suit that radiates magical energies. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml index c8c83f9db8..4112853021 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml @@ -168,7 +168,7 @@ - type: entity abstract: true - parent: ClothingOuterBase + parent: [ ClothingOuterBase, BaseMagicalContraband ] id: ClothingOuterWizardBase components: - type: WizardClothes diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index d7cde640a4..eeb0fa6bff 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -1345,7 +1345,7 @@ volume: -10 - type: entity - parent: BaseItem + parent: [ BaseItem, BaseMagicalContraband ] id: PonderingOrb name: pondering orb description: Ponderous, man... Really ponderous. diff --git a/Resources/Prototypes/Entities/Objects/Magic/books.yml b/Resources/Prototypes/Entities/Objects/Magic/books.yml index d000f78429..db604f92d3 100644 --- a/Resources/Prototypes/Entities/Objects/Magic/books.yml +++ b/Resources/Prototypes/Entities/Objects/Magic/books.yml @@ -1,7 +1,7 @@ - type: entity id: BaseSpellbook name: spellbook - parent: BaseItem + parent: [ BaseItem, BaseMagicalContraband ] abstract: true components: - type: Sprite @@ -25,7 +25,7 @@ id: WizardsGrimoire name: wizards grimoire suffix: Wizard - parent: [ BaseItem, StorePresetSpellbook ] + parent: [ BaseItem, StorePresetSpellbook, BaseMagicalContraband ] components: - type: Sprite sprite: Objects/Misc/books.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml index 9cab4cac25..0ce441d291 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml @@ -1,7 +1,7 @@ - type: entity id: WeaponStaffBase abstract: true - parent: BaseItem + parent: [ BaseItem, BaseMagicalContraband ] components: - type: Sprite sprite: Objects/Weapons/Guns/Basic/staves.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml index c4a937ee2c..555a760c90 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml @@ -1,7 +1,7 @@ - type: entity id: WeaponWandBase abstract: true - parent: BaseItem + parent: [ BaseItem, BaseMagicalContraband ] components: - type: Sprite sprite: Objects/Weapons/Guns/Basic/wands.rsi diff --git a/Resources/Prototypes/Entities/Objects/base_contraband.yml b/Resources/Prototypes/Entities/Objects/base_contraband.yml index 7217808807..032218f8c0 100644 --- a/Resources/Prototypes/Entities/Objects/base_contraband.yml +++ b/Resources/Prototypes/Entities/Objects/base_contraband.yml @@ -1,4 +1,12 @@ -# non-stealth syndicate stuff +# any type of magical items used by wizards and similiar +- type: entity + id: BaseMagicalContraband + abstract: true + components: + - type: Contraband + severity: Magical + +# non-stealth syndicate stuff - type: entity id: BaseSyndicateContraband abstract: true diff --git a/Resources/Prototypes/Magic/staves.yml b/Resources/Prototypes/Magic/staves.yml index ea42c47d18..0582899495 100644 --- a/Resources/Prototypes/Magic/staves.yml +++ b/Resources/Prototypes/Magic/staves.yml @@ -34,7 +34,7 @@ - type: entity id: AnimationStaff - parent: BaseItem + parent: [ BaseItem, BaseMagicalContraband ] name: staff of animation description: Brings inanimate objects to life! components: diff --git a/Resources/Prototypes/contraband_severities.yml b/Resources/Prototypes/contraband_severities.yml index c103af5e0a..38349d9497 100644 --- a/Resources/Prototypes/contraband_severities.yml +++ b/Resources/Prototypes/contraband_severities.yml @@ -25,3 +25,8 @@ - type: contrabandSeverity id: Syndicate examineText: contraband-examine-text-Syndicate + +# This is magical contraband and not permitted to be used IC. +- type: contrabandSeverity + id: Magical + examineText: contraband-examine-text-Magical From 276463876355907a1363317d1423aa6fe100c524 Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Mon, 17 Feb 2025 23:26:02 -0600 Subject: [PATCH 045/155] Minor station AI code cleanup (#34476) --- Content.Server/Holopad/HolopadSystem.cs | 56 +++++++++---------- .../Silicons/StationAi/StationAiSystem.cs | 6 +- .../StationAi/SharedStationAiSystem.Held.cs | 22 +++----- .../StationAi/SharedStationAiSystem.cs | 39 ++----------- 4 files changed, 45 insertions(+), 78 deletions(-) diff --git a/Content.Server/Holopad/HolopadSystem.cs b/Content.Server/Holopad/HolopadSystem.cs index 3e99137a2d..51cb3876fe 100644 --- a/Content.Server/Holopad/HolopadSystem.cs +++ b/Content.Server/Holopad/HolopadSystem.cs @@ -115,13 +115,13 @@ public sealed class HolopadSystem : SharedHolopadSystem if (source != null) { // Close any AI request windows - if (_stationAiSystem.TryGetStationAiCore(args.Actor, out var stationAiCore) && stationAiCore != null) + if (_stationAiSystem.TryGetCore(args.Actor, out var stationAiCore)) _userInterfaceSystem.CloseUi(receiver.Owner, HolopadUiKey.AiRequestWindow, args.Actor); // Try to warn the AI if the source of the call is out of its range if (TryComp(stationAiCore, out var stationAiTelephone) && TryComp(source, out var sourceTelephone) && - !_telephoneSystem.IsSourceInRangeOfReceiver((stationAiCore.Value.Owner, stationAiTelephone), (source.Value.Owner, sourceTelephone))) + !_telephoneSystem.IsSourceInRangeOfReceiver((stationAiCore.Owner, stationAiTelephone), (source.Value.Owner, sourceTelephone))) { _popupSystem.PopupEntity(Loc.GetString("holopad-ai-is-unable-to-reach-holopad"), receiver, args.Actor); return; @@ -150,11 +150,11 @@ public sealed class HolopadSystem : SharedHolopadSystem // If the user is an AI, end all calls originating from its // associated core to ensure that any broadcasts will end if (!TryComp(args.Actor, out var stationAiHeld) || - !_stationAiSystem.TryGetStationAiCore((args.Actor, stationAiHeld), out var stationAiCore)) + !_stationAiSystem.TryGetCore(args.Actor, out var stationAiCore)) return; if (TryComp(stationAiCore, out var telephone)) - _telephoneSystem.EndTelephoneCalls((stationAiCore.Value, telephone)); + _telephoneSystem.EndTelephoneCalls((stationAiCore, telephone)); } private void OnHolopadActivateProjector(Entity entity, ref HolopadActivateProjectorMessage args) @@ -176,17 +176,17 @@ public sealed class HolopadSystem : SharedHolopadSystem // Link the AI to the holopad they are broadcasting from LinkHolopadToUser(source, args.Actor); - if (!_stationAiSystem.TryGetStationAiCore((args.Actor, stationAiHeld), out var stationAiCore) || - stationAiCore.Value.Comp.RemoteEntity == null || + if (!_stationAiSystem.TryGetCore(args.Actor, out var stationAiCore) || + stationAiCore.Comp?.RemoteEntity == null || !TryComp(stationAiCore, out var stationAiCoreHolopad)) return; // Execute the broadcast, but have it originate from the AI core - ExecuteBroadcast((stationAiCore.Value, stationAiCoreHolopad), args.Actor); + ExecuteBroadcast((stationAiCore, stationAiCoreHolopad), args.Actor); // Switch the AI's perspective from free roaming to the target holopad - _xformSystem.SetCoordinates(stationAiCore.Value.Comp.RemoteEntity.Value, Transform(source).Coordinates); - _stationAiSystem.SwitchRemoteEntityMode(stationAiCore.Value, false); + _xformSystem.SetCoordinates(stationAiCore.Comp.RemoteEntity.Value, Transform(source).Coordinates); + _stationAiSystem.SwitchRemoteEntityMode(stationAiCore, false); return; } @@ -220,10 +220,10 @@ public sealed class HolopadSystem : SharedHolopadSystem reachableAiCores.Add((receiverUid, receiverTelephone)); - if (!_stationAiSystem.TryGetInsertedAI((receiver, receiverStationAiCore), out var insertedAi)) + if (!_stationAiSystem.TryGetHeld((receiver, receiverStationAiCore), out var insertedAi)) continue; - if (_userInterfaceSystem.TryOpenUi(receiverUid, HolopadUiKey.AiRequestWindow, insertedAi.Value.Owner)) + if (_userInterfaceSystem.TryOpenUi(receiverUid, HolopadUiKey.AiRequestWindow, insertedAi)) LinkHolopadToUser(entity, args.Actor); } @@ -274,8 +274,8 @@ public sealed class HolopadSystem : SharedHolopadSystem return; // Auto-close the AI request window - if (_stationAiSystem.TryGetInsertedAI((entity, stationAiCore), out var insertedAi)) - _userInterfaceSystem.CloseUi(entity.Owner, HolopadUiKey.AiRequestWindow, insertedAi.Value.Owner); + if (_stationAiSystem.TryGetHeld((entity, stationAiCore), out var insertedAi)) + _userInterfaceSystem.CloseUi(entity.Owner, HolopadUiKey.AiRequestWindow, insertedAi); } private void OnTelephoneMessageSent(Entity holopad, ref TelephoneMessageSentEvent args) @@ -381,13 +381,13 @@ public sealed class HolopadSystem : SharedHolopadSystem if (!TryComp(entity, out var entityStationAiHeld)) return; - if (!_stationAiSystem.TryGetStationAiCore((entity, entityStationAiHeld), out var stationAiCore)) + if (!_stationAiSystem.TryGetCore(entity, out var stationAiCore)) return; if (!TryComp(stationAiCore, out var stationAiCoreTelephone)) return; - _telephoneSystem.EndTelephoneCalls((stationAiCore.Value, stationAiCoreTelephone)); + _telephoneSystem.EndTelephoneCalls((stationAiCore, stationAiCoreTelephone)); } private void AddToggleProjectorVerb(Entity entity, ref GetVerbsEvent args) @@ -407,8 +407,8 @@ public sealed class HolopadSystem : SharedHolopadSystem if (!TryComp(user, out var userAiHeld)) return; - if (!_stationAiSystem.TryGetStationAiCore((user, userAiHeld), out var stationAiCore) || - stationAiCore.Value.Comp.RemoteEntity == null) + if (!_stationAiSystem.TryGetCore(user, out var stationAiCore) || + stationAiCore.Comp?.RemoteEntity == null) return; AlternativeVerb verb = new() @@ -595,17 +595,17 @@ public sealed class HolopadSystem : SharedHolopadSystem { // Check if the associated holopad user is an AI if (TryComp(entity.Comp.User, out var stationAiHeld) && - _stationAiSystem.TryGetStationAiCore((entity.Comp.User.Value, stationAiHeld), out var stationAiCore)) + _stationAiSystem.TryGetCore(entity.Comp.User.Value, out var stationAiCore)) { // Return the AI eye to free roaming - _stationAiSystem.SwitchRemoteEntityMode(stationAiCore.Value, true); + _stationAiSystem.SwitchRemoteEntityMode(stationAiCore, true); // If the AI core is still broadcasting, end its calls - if (entity.Owner != stationAiCore.Value.Owner && + if (entity.Owner != stationAiCore.Owner && TryComp(stationAiCore, out var stationAiCoreTelephone) && - _telephoneSystem.IsTelephoneEngaged((stationAiCore.Value.Owner, stationAiCoreTelephone))) + _telephoneSystem.IsTelephoneEngaged((stationAiCore.Owner, stationAiCoreTelephone))) { - _telephoneSystem.EndTelephoneCalls((stationAiCore.Value.Owner, stationAiCoreTelephone)); + _telephoneSystem.EndTelephoneCalls((stationAiCore.Owner, stationAiCoreTelephone)); } } @@ -625,8 +625,8 @@ public sealed class HolopadSystem : SharedHolopadSystem if (!TryComp(user, out var userAiHeld)) return; - if (!_stationAiSystem.TryGetStationAiCore((user, userAiHeld), out var stationAiCore) || - stationAiCore.Value.Comp.RemoteEntity == null) + if (!_stationAiSystem.TryGetCore(user, out var stationAiCore) || + stationAiCore.Comp?.RemoteEntity == null) return; if (!TryComp(stationAiCore, out var stationAiTelephone)) @@ -635,7 +635,7 @@ public sealed class HolopadSystem : SharedHolopadSystem if (!TryComp(stationAiCore, out var stationAiHolopad)) return; - var source = new Entity(stationAiCore.Value, stationAiTelephone); + var source = new Entity(stationAiCore, stationAiTelephone); // Check if the AI is unable to activate the projector (unlikely this will ever pass; its just a safeguard) if (!_telephoneSystem.IsSourceInRangeOfReceiver(source, receiver)) @@ -658,11 +658,11 @@ public sealed class HolopadSystem : SharedHolopadSystem if (!_telephoneSystem.IsSourceConnectedToReceiver(source, receiver)) return; - LinkHolopadToUser((stationAiCore.Value, stationAiHolopad), user); + LinkHolopadToUser((stationAiCore, stationAiHolopad), user); // Switch the AI's perspective from free roaming to the target holopad - _xformSystem.SetCoordinates(stationAiCore.Value.Comp.RemoteEntity.Value, Transform(entity).Coordinates); - _stationAiSystem.SwitchRemoteEntityMode(stationAiCore.Value, false); + _xformSystem.SetCoordinates(stationAiCore.Comp.RemoteEntity.Value, Transform(entity).Coordinates); + _stationAiSystem.SwitchRemoteEntityMode(stationAiCore, false); // Open the holopad UI if it hasn't been opened yet if (TryComp(entity, out var entityUserInterfaceComponent)) diff --git a/Content.Server/Silicons/StationAi/StationAiSystem.cs b/Content.Server/Silicons/StationAi/StationAiSystem.cs index 054712059e..baec24bf73 100644 --- a/Content.Server/Silicons/StationAi/StationAiSystem.cs +++ b/Content.Server/Silicons/StationAi/StationAiSystem.cs @@ -40,12 +40,12 @@ public sealed class StationAiSystem : SharedStationAiSystem var query = EntityManager.EntityQueryEnumerator(); while (query.MoveNext(out var ent, out var entStationAiCore, out var entXform)) { - var stationAiCore = new Entity(ent, entStationAiCore); + var stationAiCore = new Entity(ent, entStationAiCore); - if (!TryGetInsertedAI(stationAiCore, out var insertedAi) || !TryComp(insertedAi, out ActorComponent? actor)) + if (!TryGetHeld(stationAiCore, out var insertedAi) || !TryComp(insertedAi, out ActorComponent? actor)) continue; - if (stationAiCore.Comp.RemoteEntity == null || stationAiCore.Comp.Remote) + if (stationAiCore.Comp?.RemoteEntity == null || stationAiCore.Comp.Remote) continue; var xform = Transform(stationAiCore.Comp.RemoteEntity.Value); diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs index c9279b0215..8acfb56376 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs @@ -56,7 +56,7 @@ public abstract partial class SharedStationAiSystem /// /// Tries to get the entity held in the AI core using StationAiCore. /// - private bool TryGetHeld(Entity entity, out EntityUid held) + public bool TryGetHeld(Entity entity, out EntityUid held) { held = EntityUid.Invalid; @@ -74,23 +74,19 @@ public abstract partial class SharedStationAiSystem /// /// Tries to get the entity held in the AI using StationAiHolder. /// - private bool TryGetHeldFromHolder(Entity entity, out EntityUid held) + public bool TryGetHeld(Entity entity, out EntityUid held) { - held = EntityUid.Invalid; + TryComp(entity.Owner, out var stationAiCore); - if (!Resolve(entity.Owner, ref entity.Comp)) - return false; - - if (!_containers.TryGetContainer(entity.Owner, StationAiHolderComponent.Container, out var container) || - container.ContainedEntities.Count == 0) - return false; - - held = container.ContainedEntities[0]; - return true; + return TryGetHeld((entity.Owner, stationAiCore), out held); } - private bool TryGetCore(EntityUid ent, out Entity core) + public bool TryGetCore(EntityUid entity, out Entity core) { + var xform = Transform(entity); + var meta = MetaData(entity); + var ent = new Entity(entity, xform, meta); + if (!_containers.TryGetContainingContainer(ent, out var container) || container.ID != StationAiCoreComponent.Container || !TryComp(container.Owner, out StationAiCoreComponent? coreComp) || diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs index 4937e6e84c..4cf36f560e 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs @@ -20,7 +20,6 @@ using Content.Shared.Verbs; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; -using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; @@ -274,7 +273,7 @@ public abstract partial class SharedStationAiSystem : EntitySystem return; } - if (TryGetHeldFromHolder((args.Target.Value, targetHolder), out var held) && _timing.CurTime > intelliComp.NextWarningAllowed) + if (TryGetHeld((args.Target.Value, targetHolder), out var held) && _timing.CurTime > intelliComp.NextWarningAllowed) { intelliComp.NextWarningAllowed = _timing.CurTime + intelliComp.WarningDelay; AnnounceIntellicardUsage(held, intelliComp.WarningSound); @@ -349,11 +348,13 @@ public abstract partial class SharedStationAiSystem : EntitySystem AttachEye(ent); } - public void SwitchRemoteEntityMode(Entity ent, bool isRemote) + public void SwitchRemoteEntityMode(Entity entity, bool isRemote) { - if (isRemote == ent.Comp.Remote) + if (entity.Comp?.Remote == null || entity.Comp.Remote == isRemote) return; + var ent = new Entity(entity.Owner, entity.Comp); + ent.Comp.Remote = isRemote; EntityCoordinates? coords = ent.Comp.RemoteEntity != null ? Transform(ent.Comp.RemoteEntity.Value).Coordinates : null; @@ -530,36 +531,6 @@ public abstract partial class SharedStationAiSystem : EntitySystem return _blocker.CanComplexInteract(entity.Owner); } - - public bool TryGetStationAiCore(Entity ent, [NotNullWhen(true)] out Entity? parentEnt) - { - parentEnt = null; - var parent = Transform(ent).ParentUid; - - if (!parent.IsValid()) - return false; - - if (!TryComp(parent, out var stationAiCore)) - return false; - - parentEnt = new Entity(parent, stationAiCore); - - return true; - } - - public bool TryGetInsertedAI(Entity ent, [NotNullWhen(true)] out Entity? insertedAi) - { - insertedAi = null; - var insertedEnt = GetInsertedAI(ent); - - if (TryComp(insertedEnt, out var stationAiHeld)) - { - insertedAi = (insertedEnt.Value, stationAiHeld); - return true; - } - - return false; - } } public sealed partial class JumpToCoreEvent : InstantActionEvent From 3200ba88a5062ac000593c3d321e8c5383bbd41b Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Tue, 18 Feb 2025 08:28:42 +0100 Subject: [PATCH 046/155] Add ability for +VVEDIT users to scale damage/healing in the game (#35255) * Initial commit * Add universal modifier for all damage/heals, make guidebooks work. * help text --- .../EntitySystems/ChemistryGuideDataSystem.cs | 5 ++ .../EntitySystems/ChemistryGuideDataSystem.cs | 5 ++ .../Damage/Systems/DamageOtherOnHitSystem.cs | 4 +- .../EntityEffects/Effects/HealthChange.cs | 50 ++++++++++-- .../ExplosionSystem.Processing.cs | 2 +- Content.Server/Medical/HealingSystem.cs | 2 +- .../Projectiles/ProjectileSystem.cs | 2 +- .../Weapons/Melee/MeleeWeaponSystem.cs | 2 +- .../Ranged/Systems/GunSystem.Battery.cs | 7 +- .../Ranged/Systems/GunSystem.Cartridges.cs | 4 +- .../Weapons/Ranged/Systems/GunSystem.cs | 2 +- Content.Shared/CCVar/CCVars.Playtest.cs | 80 +++++++++++++++++++ .../SharedChemistryGuideDataSystem.cs | 3 + .../Damage/Systems/DamageableSystem.cs | 79 ++++++++++++++++++ .../Weapons/Melee/SharedMeleeWeaponSystem.cs | 4 +- Resources/Locale/en-US/cvar/cvar-help.ftl | 21 +++++ 16 files changed, 253 insertions(+), 19 deletions(-) create mode 100644 Content.Shared/CCVar/CCVars.Playtest.cs diff --git a/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs b/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs index 7c7d824ee9..4c3a583b2a 100644 --- a/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs +++ b/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs @@ -141,6 +141,11 @@ public sealed class ChemistryGuideDataSystem : SharedChemistryGuideDataSystem { return _reagentSources.GetValueOrDefault(id) ?? new List(); } + + // Is handled on server and updated on client via ReagentGuideRegistryChangedEvent + public override void ReloadAllReagentPrototypes() + { + } } /// diff --git a/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs index e2cd72030d..e72fd34cd8 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs @@ -64,4 +64,9 @@ public sealed class ChemistryGuideDataSystem : SharedChemistryGuideDataSystem var ev = new ReagentGuideRegistryChangedEvent(changeset); RaiseNetworkEvent(ev); } + + public override void ReloadAllReagentPrototypes() + { + InitializeServerRegistry(); + } } diff --git a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs index 50c69f3829..b1f5365b01 100644 --- a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs +++ b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs @@ -37,7 +37,7 @@ namespace Content.Server.Damage.Systems if (TerminatingOrDeleted(args.Target)) return; - var dmg = _damageable.TryChangeDamage(args.Target, component.Damage, component.IgnoreResistances, origin: args.Component.Thrower); + var dmg = _damageable.TryChangeDamage(args.Target, component.Damage * _damageable.UniversalThrownDamageModifier, component.IgnoreResistances, origin: args.Component.Thrower); // Log damage only for mobs. Useful for when people throw spears at each other, but also avoids log-spam when explosions send glass shards flying. if (dmg != null && HasComp(args.Target)) @@ -58,7 +58,7 @@ namespace Content.Server.Damage.Systems private void OnDamageExamine(EntityUid uid, DamageOtherOnHitComponent component, ref DamageExamineEvent args) { - _damageExamine.AddDamageExamine(args.Message, component.Damage, Loc.GetString("damage-throw")); + _damageExamine.AddDamageExamine(args.Message, _damageable.ApplyUniversalAllModifiers(component.Damage * _damageable.UniversalThrownDamageModifier), Loc.GetString("damage-throw")); } /// diff --git a/Content.Server/EntityEffects/Effects/HealthChange.cs b/Content.Server/EntityEffects/Effects/HealthChange.cs index fd2a658745..71021ce4ac 100644 --- a/Content.Server/EntityEffects/Effects/HealthChange.cs +++ b/Content.Server/EntityEffects/Effects/HealthChange.cs @@ -44,6 +44,26 @@ namespace Content.Server.EntityEffects.Effects var damageSpec = new DamageSpecifier(Damage); + var universalReagentDamageModifier = entSys.GetEntitySystem().UniversalReagentDamageModifier; + var universalReagentHealModifier = entSys.GetEntitySystem().UniversalReagentHealModifier; + + if (universalReagentDamageModifier != 1 || universalReagentHealModifier != 1) + { + foreach (var (type, val) in damageSpec.DamageDict) + { + if (val < 0f) + { + damageSpec.DamageDict[type] = val * universalReagentHealModifier; + } + if (val > 0f) + { + damageSpec.DamageDict[type] = val * universalReagentDamageModifier; + } + } + } + + damageSpec = entSys.GetEntitySystem().ApplyUniversalAllModifiers(damageSpec); + foreach (var group in prototype.EnumeratePrototypes()) { if (!damageSpec.TryGetDamageInGroup(group, out var amount)) @@ -114,17 +134,37 @@ namespace Content.Server.EntityEffects.Effects public override void Effect(EntityEffectBaseArgs args) { var scale = FixedPoint2.New(1); + var damageSpec = new DamageSpecifier(Damage); if (args is EntityEffectReagentArgs reagentArgs) { scale = ScaleByQuantity ? reagentArgs.Quantity * reagentArgs.Scale : reagentArgs.Scale; } - args.EntityManager.System().TryChangeDamage( - args.TargetEntity, - Damage * scale, - IgnoreResistances, - interruptsDoAfters: false); + var universalReagentDamageModifier = args.EntityManager.System().UniversalReagentDamageModifier; + var universalReagentHealModifier = args.EntityManager.System().UniversalReagentHealModifier; + + if (universalReagentDamageModifier != 1 || universalReagentHealModifier != 1) + { + foreach (var (type, val) in damageSpec.DamageDict) + { + if (val < 0f) + { + damageSpec.DamageDict[type] = val * universalReagentHealModifier; + } + if (val > 0f) + { + damageSpec.DamageDict[type] = val * universalReagentDamageModifier; + } + } + } + + args.EntityManager.System() + .TryChangeDamage( + args.TargetEntity, + damageSpec * scale, + IgnoreResistances, + interruptsDoAfters: false); } } } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 90b777178d..8ea2d5dfd9 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -464,7 +464,7 @@ public sealed partial class ExplosionSystem } // TODO EXPLOSIONS turn explosions into entities, and pass the the entity in as the damage origin. - _damageableSystem.TryChangeDamage(entity, damage, ignoreResistances: true); + _damageableSystem.TryChangeDamage(entity, damage * _damageableSystem.UniversalExplosionDamageModifier, ignoreResistances: true); } } diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs index 6c1a7f2c85..b3318b8c2a 100644 --- a/Content.Server/Medical/HealingSystem.cs +++ b/Content.Server/Medical/HealingSystem.cs @@ -83,7 +83,7 @@ public sealed class HealingSystem : EntitySystem if (healing.ModifyBloodLevel != 0) _bloodstreamSystem.TryModifyBloodLevel(entity.Owner, healing.ModifyBloodLevel); - var healed = _damageable.TryChangeDamage(entity.Owner, healing.Damage, true, origin: args.Args.User); + var healed = _damageable.TryChangeDamage(entity.Owner, healing.Damage * _damageable.UniversalTopicalsHealModifier, true, origin: args.Args.User); if (healed == null && healing.BloodlossModifier != 0) return; diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs index 57601c3e9f..f1df25d58c 100644 --- a/Content.Server/Projectiles/ProjectileSystem.cs +++ b/Content.Server/Projectiles/ProjectileSystem.cs @@ -44,7 +44,7 @@ public sealed class ProjectileSystem : SharedProjectileSystem return; } - var ev = new ProjectileHitEvent(component.Damage, target, component.Shooter); + var ev = new ProjectileHitEvent(component.Damage * _damageableSystem.UniversalProjectileDamageModifier, target, component.Shooter); RaiseLocalEvent(uid, ref ev); var otherName = ToPrettyString(target); diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs index 3c8314041f..ff975c4714 100644 --- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs @@ -53,7 +53,7 @@ public sealed class MeleeWeaponSystem : SharedMeleeWeaponSystem if (damageSpec.Empty) return; - _damageExamine.AddDamageExamine(args.Message, damageSpec, Loc.GetString("damage-melee")); + _damageExamine.AddDamageExamine(args.Message, Damageable.ApplyUniversalAllModifiers(damageSpec), Loc.GetString("damage-melee")); } protected override bool ArcRaySuccessful(EntityUid targetUid, diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs index 0dcd92f941..ad4bb714d9 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs @@ -73,7 +73,7 @@ public sealed partial class GunSystem _ => throw new ArgumentOutOfRangeException(), }; - _damageExamine.AddDamageExamine(args.Message, damageSpec, damageType); + _damageExamine.AddDamageExamine(args.Message, Damageable.ApplyUniversalAllModifiers(damageSpec), damageType); } private DamageSpecifier? GetDamage(BatteryAmmoProviderComponent component) @@ -87,7 +87,7 @@ public sealed partial class GunSystem if (!p.Damage.Empty) { - return p.Damage; + return p.Damage * Damageable.UniversalProjectileDamageModifier; } } @@ -96,7 +96,8 @@ public sealed partial class GunSystem if (component is HitscanBatteryAmmoProviderComponent hitscan) { - return ProtoManager.Index(hitscan.Prototype).Damage; + var dmg = ProtoManager.Index(hitscan.Prototype).Damage; + return dmg == null ? dmg : dmg * Damageable.UniversalHitscanDamageModifier; } return null; diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs index e7bd3683d3..c1df560cb7 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs @@ -24,7 +24,7 @@ public sealed partial class GunSystem if (damageSpec == null) return; - _damageExamine.AddDamageExamine(args.Message, damageSpec, Loc.GetString("damage-projectile")); + _damageExamine.AddDamageExamine(args.Message, Damageable.ApplyUniversalAllModifiers(damageSpec), Loc.GetString("damage-projectile")); } private DamageSpecifier? GetProjectileDamage(string proto) @@ -39,7 +39,7 @@ public sealed partial class GunSystem if (!p.Damage.Empty) { - return p.Damage; + return p.Damage * Damageable.UniversalProjectileDamageModifier; } } diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index fe0447c4c7..86be82d1c3 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -212,7 +212,7 @@ public sealed partial class GunSystem : SharedGunSystem var hitName = ToPrettyString(hitEntity); if (dmg != null) - dmg = Damageable.TryChangeDamage(hitEntity, dmg, origin: user); + dmg = Damageable.TryChangeDamage(hitEntity, dmg * Damageable.UniversalHitscanDamageModifier, origin: user); // check null again, as TryChangeDamage returns modified damage values if (dmg != null) diff --git a/Content.Shared/CCVar/CCVars.Playtest.cs b/Content.Shared/CCVar/CCVars.Playtest.cs new file mode 100644 index 0000000000..5b5bea7d94 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Playtest.cs @@ -0,0 +1,80 @@ +using Content.Shared.Administration; +using Content.Shared.CCVar.CVarAccess; +using Content.Shared.Roles; +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Scales all damage dealt in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestAllDamageModifier = + CVarDef.Create("playtest.all_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales all healing done in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestAllHealModifier = + CVarDef.Create("playtest.all_heal_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the damage dealt by all melee attacks in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestMeleeDamageModifier = + CVarDef.Create("playtest.melee_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the damage dealt by all projectiles in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestProjectileDamageModifier = + CVarDef.Create("playtest.projectile_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the damage dealt by all hitscan attacks in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestHitscanDamageModifier = + CVarDef.Create("playtest.hitscan_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the damage dealt by all thrown weapons in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestThrownDamageModifier = + CVarDef.Create("playtest.thrown_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the healing given by all topicals in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestTopicalsHealModifier = + CVarDef.Create("playtest.topicals_heal_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the damage dealt by all reagents in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestReagentDamageModifier = + CVarDef.Create("playtest.reagent_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the healing given by all reagents in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestReagentHealModifier = + CVarDef.Create("playtest.reagent_heal_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the explosion damage dealt in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestExplosionDamageModifier = + CVarDef.Create("playtest.explosion_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + +} diff --git a/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs b/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs index 391134bcf0..7d36641ccf 100644 --- a/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs +++ b/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs @@ -14,6 +14,9 @@ public abstract class SharedChemistryGuideDataSystem : EntitySystem protected readonly Dictionary Registry = new(); public IReadOnlyDictionary ReagentGuideRegistry => Registry; + + // Only ran on the server + public abstract void ReloadAllReagentPrototypes(); } [Serializable, NetSerializable] diff --git a/Content.Shared/Damage/Systems/DamageableSystem.cs b/Content.Shared/Damage/Systems/DamageableSystem.cs index 814609444a..d5938db9af 100644 --- a/Content.Shared/Damage/Systems/DamageableSystem.cs +++ b/Content.Shared/Damage/Systems/DamageableSystem.cs @@ -1,4 +1,6 @@ using System.Linq; +using Content.Shared.CCVar; +using Content.Shared.Chemistry; using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; using Content.Shared.Inventory; @@ -7,6 +9,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Radiation.Events; using Content.Shared.Rejuvenate; +using Robust.Shared.Configuration; using Robust.Shared.GameStates; using Robust.Shared.Network; using Robust.Shared.Prototypes; @@ -20,11 +23,24 @@ namespace Content.Shared.Damage [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; + [Dependency] private readonly IConfigurationManager _config = default!; + [Dependency] private readonly SharedChemistryGuideDataSystem _chemistryGuideData = default!; private EntityQuery _appearanceQuery; private EntityQuery _damageableQuery; private EntityQuery _mindContainerQuery; + public float UniversalAllDamageModifier { get; private set; } = 1f; + public float UniversalAllHealModifier { get; private set; } = 1f; + public float UniversalMeleeDamageModifier { get; private set; } = 1f; + public float UniversalProjectileDamageModifier { get; private set; } = 1f; + public float UniversalHitscanDamageModifier { get; private set; } = 1f; + public float UniversalReagentDamageModifier { get; private set; } = 1f; + public float UniversalReagentHealModifier { get; private set; } = 1f; + public float UniversalExplosionDamageModifier { get; private set; } = 1f; + public float UniversalThrownDamageModifier { get; private set; } = 1f; + public float UniversalTopicalsHealModifier { get; private set; } = 1f; + public override void Initialize() { SubscribeLocalEvent(DamageableInit); @@ -36,6 +52,36 @@ namespace Content.Shared.Damage _appearanceQuery = GetEntityQuery(); _damageableQuery = GetEntityQuery(); _mindContainerQuery = GetEntityQuery(); + + // Damage modifier CVars are updated and stored here to be queried in other systems. + // Note that certain modifiers requires reloading the guidebook. + Subs.CVar(_config, CCVars.PlaytestAllDamageModifier, value => + { + UniversalAllDamageModifier = value; + _chemistryGuideData.ReloadAllReagentPrototypes(); + }, true); + Subs.CVar(_config, CCVars.PlaytestAllHealModifier, value => + { + UniversalAllHealModifier = value; + _chemistryGuideData.ReloadAllReagentPrototypes(); + }, true); + Subs.CVar(_config, CCVars.PlaytestProjectileDamageModifier, value => UniversalProjectileDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestMeleeDamageModifier, value => UniversalMeleeDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestProjectileDamageModifier, value => UniversalProjectileDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestHitscanDamageModifier, value => UniversalHitscanDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestReagentDamageModifier, value => + { + UniversalReagentDamageModifier = value; + _chemistryGuideData.ReloadAllReagentPrototypes(); + }, true); + Subs.CVar(_config, CCVars.PlaytestReagentHealModifier, value => + { + UniversalReagentHealModifier = value; + _chemistryGuideData.ReloadAllReagentPrototypes(); + }, true); + Subs.CVar(_config, CCVars.PlaytestExplosionDamageModifier, value => UniversalExplosionDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestThrownDamageModifier, value => UniversalThrownDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestTopicalsHealModifier, value => UniversalTopicalsHealModifier = value, true); } /// @@ -164,6 +210,8 @@ namespace Content.Shared.Damage } } + damage = ApplyUniversalAllModifiers(damage); + // TODO DAMAGE PERFORMANCE // Consider using a local private field instead of creating a new dictionary here. // Would need to check that nothing ever tries to cache the delta. @@ -191,6 +239,37 @@ namespace Content.Shared.Damage return delta; } + /// + /// Applies the two univeral "All" modifiers, if set. + /// Individual damage source modifiers are set in their respective code. + /// + /// The damage to be changed. + public DamageSpecifier ApplyUniversalAllModifiers(DamageSpecifier damage) + { + // Checks for changes first since they're unlikely in normal play. + if (UniversalAllDamageModifier == 1f && UniversalAllHealModifier == 1f) + return damage; + + foreach (var (key, value) in damage.DamageDict) + { + if (value == 0) + continue; + + if (value > 0) + { + damage.DamageDict[key] *= UniversalAllDamageModifier; + continue; + } + + if (value < 0) + { + damage.DamageDict[key] *= UniversalAllHealModifier; + } + } + + return damage; + } + /// /// Sets all damage types supported by a to the specified value. /// diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 15b00e4610..43be9a5b14 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -216,7 +216,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem if (!Resolve(uid, ref component, false)) return new DamageSpecifier(); - var ev = new GetMeleeDamageEvent(uid, new(component.Damage), new(), user, component.ResistanceBypass); + var ev = new GetMeleeDamageEvent(uid, new(component.Damage * Damageable.UniversalMeleeDamageModifier), new(), user, component.ResistanceBypass); RaiseLocalEvent(uid, ref ev); return DamageSpecifier.ApplyModifierSets(ev.Damage, ev.Modifiers); @@ -249,7 +249,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem if (!Resolve(uid, ref component)) return false; - var ev = new GetMeleeDamageEvent(uid, new(component.Damage), new(), user, component.ResistanceBypass); + var ev = new GetMeleeDamageEvent(uid, new(component.Damage * Damageable.UniversalMeleeDamageModifier), new(), user, component.ResistanceBypass); RaiseLocalEvent(uid, ref ev); return ev.ResistanceBypass; diff --git a/Resources/Locale/en-US/cvar/cvar-help.ftl b/Resources/Locale/en-US/cvar/cvar-help.ftl index a0738fb5cb..39f7c7636b 100644 --- a/Resources/Locale/en-US/cvar/cvar-help.ftl +++ b/Resources/Locale/en-US/cvar/cvar-help.ftl @@ -1,2 +1,23 @@ changecvar-simple-debug_test_cvar = Does nothing. changecvar-full-debug_test_cvar = Just a simple testing cvar. Does nothing. + +changecvar-simple-playtest_all_damage_modifier = Multiplier for all damage dealt. +changecvar-full-playtest_all_damage_modifier = Multiplier for all damage dealt. +changecvar-simple-playtest_all_heal_modifier = Multiplier for all healing done. +changecvar-full-playtest_all_heal_modifier = Multiplier for all healing done. +changecvar-simple-playtest_melee_damage_modifier = Multiplier affecting melee weapon damage. +changecvar-full-playtest_melee_damage_modifier = Multiplier affecting all damage dealt by melee attacks. +changecvar-simple-playtest_projectile_damage_modifier = Multiplier affecting projectile damage. +changecvar-full-playtest_projectile_damage_modifier = Multiplier affecting all damage dealt by projectiles. +changecvar-simple-playtest_hitscan_damage_modifier = Multiplier affecting hitscan damage. +changecvar-full-playtest_hitscan_damage_modifier = Multiplier affecting all damage dealt by hitscan weapons. +changecvar-simple-playtest_thrown_damage_modifier = Multiplier affecting thrown weapon damage. +changecvar-full-playtest_thrown_damage_modifier = Multiplier affecting all damage dealt by thrown weapons. +changecvar-simple-playtest_topicals_heal_modifier = Multiplier affecting topical healing. +changecvar-full-playtest_topicals_heal_modifier = Multiplier affecting all healing done by topicals. +changecvar-simple-playtest_reagent_damage_modifier = Multiplier affecting reagent damage. +changecvar-full-playtest_reagent_damage_modifier = Multiplier affecting all damage dealt by reagents. +changecvar-simple-playtest_reagent_heal_modifier = Multiplier affecting reagent healing. +changecvar-full-playtest_reagent_heal_modifier = Multiplier affecting all healing done by reagents. +changecvar-simple-playtest_explosion_damage_modifier = Multiplier affecting explosion damage. +changecvar-full-playtest_explosion_damage_modifier = Multiplier affecting all damage dealt by explosives. From 66a1b80864dcb75577605a0434d5b4ce7ab1e93a Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 18 Feb 2025 07:29:49 +0000 Subject: [PATCH 047/155] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 541f8b1b4a..4ac99afbf6 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -773,5 +773,13 @@ Entries: id: 96 time: '2025-02-17T20:39:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35258 +- author: SlamBamActionman + changes: + - message: Users with +VVEDIT perms can now use `changecvar playtest.[modifier] + [float]` to modify damage/healing scaling live. + type: Add + id: 97 + time: '2025-02-18T07:28:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35255 Name: Admin Order: 1 From 0f4ab0e84e4e7542ca9f9ac4db97b8cde97e6096 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 18 Feb 2025 09:05:46 +0000 Subject: [PATCH 048/155] Automatic changelog update --- Resources/Changelog/Admin.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 4ac99afbf6..a198410066 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -781,5 +781,14 @@ Entries: id: 97 time: '2025-02-18T07:28:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35255 +- author: ScarKy0 + changes: + - message: Aghost's intrinsic comms console now uses a new color, announces globally + and has significantly lowered delays. Announce command and admin menu option + remain unchanged. + type: Tweak + id: 98 + time: '2025-02-18T09:04:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35248 Name: Admin Order: 1 From eff25810c5db125509bcde0bca2ed3eeaf42a280 Mon Sep 17 00:00:00 2001 From: Simon <63975668+Simyon264@users.noreply.github.com> Date: Tue, 18 Feb 2025 11:26:08 +0100 Subject: [PATCH 049/155] [ChangeCVarCommand] Mapping Command (#35239) [ChangeCVarCommand] MappingCommand --- Content.Server/Mapping/MappingCommand.cs | 4 ++-- Content.Shared/CCVar/CCVars.Events.cs | 5 ++++- Content.Shared/CCVar/CCVars.Shuttle.cs | 5 ++++- Resources/Locale/en-US/cvar/cvar-help.ftl | 6 ++++++ 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Content.Server/Mapping/MappingCommand.cs b/Content.Server/Mapping/MappingCommand.cs index b85b0953dd..85c561b9db 100644 --- a/Content.Server/Mapping/MappingCommand.cs +++ b/Content.Server/Mapping/MappingCommand.cs @@ -117,8 +117,8 @@ namespace Content.Server.Mapping } // don't interrupt mapping with events or auto-shuttle - shell.ExecuteCommand("sudo cvar events.enabled false"); - shell.ExecuteCommand("sudo cvar shuttle.auto_call_time 0"); + shell.ExecuteCommand("changecvar events.enabled false"); + shell.ExecuteCommand("changecvar shuttle.auto_call_time 0"); if (_cfg.GetCVar(CCVars.AutosaveEnabled)) shell.ExecuteCommand($"toggleautosave {mapId} {toLoad ?? "NEWMAP"}"); diff --git a/Content.Shared/CCVar/CCVars.Events.cs b/Content.Shared/CCVar/CCVars.Events.cs index 48797b8438..c1be29a023 100644 --- a/Content.Shared/CCVar/CCVars.Events.cs +++ b/Content.Shared/CCVar/CCVars.Events.cs @@ -1,4 +1,6 @@ -using Robust.Shared.Configuration; +using Content.Shared.Administration; +using Content.Shared.CCVar.CVarAccess; +using Robust.Shared.Configuration; namespace Content.Shared.CCVar; @@ -7,6 +9,7 @@ public sealed partial class CCVars /// /// Controls if the game should run station events /// + [CVarControl(AdminFlags.Server | AdminFlags.Mapping)] public static readonly CVarDef EventsEnabled = CVarDef.Create("events.enabled", true, CVar.ARCHIVE | CVar.SERVERONLY); } diff --git a/Content.Shared/CCVar/CCVars.Shuttle.cs b/Content.Shared/CCVar/CCVars.Shuttle.cs index caf7f81b0e..74d3bf8cfb 100644 --- a/Content.Shared/CCVar/CCVars.Shuttle.cs +++ b/Content.Shared/CCVar/CCVars.Shuttle.cs @@ -1,4 +1,6 @@ -using Robust.Shared.Configuration; +using Content.Shared.Administration; +using Content.Shared.CCVar.CVarAccess; +using Robust.Shared.Configuration; namespace Content.Shared.CCVar; @@ -170,6 +172,7 @@ public sealed partial class CCVars /// /// Time in minutes after round start to auto-call the shuttle. Set to zero to disable. /// + [CVarControl(AdminFlags.Server | AdminFlags.Mapping, min: 0, max: int.MaxValue)] public static readonly CVarDef EmergencyShuttleAutoCallTime = CVarDef.Create("shuttle.auto_call_time", 90, CVar.SERVERONLY); diff --git a/Resources/Locale/en-US/cvar/cvar-help.ftl b/Resources/Locale/en-US/cvar/cvar-help.ftl index 39f7c7636b..55b0cb6188 100644 --- a/Resources/Locale/en-US/cvar/cvar-help.ftl +++ b/Resources/Locale/en-US/cvar/cvar-help.ftl @@ -1,6 +1,12 @@ changecvar-simple-debug_test_cvar = Does nothing. changecvar-full-debug_test_cvar = Just a simple testing cvar. Does nothing. +changecvar-simple-events_enabled = Controls if the game should run station events. +changecvar-full-events_enabled = Controls if the game should run station events. + +changecvar-simple-shuttle_auto_call_time = Time after round start to auto-call the shuttle. +changecvar-full-shuttle_auto_call_time = Time in minutes after round start to auto-call the shuttle. Set to zero to disable. + changecvar-simple-playtest_all_damage_modifier = Multiplier for all damage dealt. changecvar-full-playtest_all_damage_modifier = Multiplier for all damage dealt. changecvar-simple-playtest_all_heal_modifier = Multiplier for all healing done. From deef592d9d86db39c0f60d7ad5cdbe36e2365bf3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 18 Feb 2025 10:27:16 +0000 Subject: [PATCH 050/155] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index a198410066..61e80c6f45 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -790,5 +790,13 @@ Entries: id: 98 time: '2025-02-18T09:04:37.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35248 +- author: Simyon + changes: + - message: Admins with the Server and Mapping AdminFlag can now change the CVars + "events.enabled" and "shuttle.auto_call_time" for parity in the "mapping" command. + type: Tweak + id: 99 + time: '2025-02-18T10:26:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35239 Name: Admin Order: 1 From 239634269c2c3b179e33ebf5f59ef0e8c389852e Mon Sep 17 00:00:00 2001 From: Killerqu00 <47712032+Killerqu00@users.noreply.github.com> Date: Tue, 18 Feb 2025 12:33:08 +0100 Subject: [PATCH 051/155] [Bugfix] ContrabandSystem checks jobs correctly (#35228) * make it work lol * index protos only once --- Content.Shared/Contraband/ContrabandSystem.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs index 7e5446da74..bfd7100289 100644 --- a/Content.Shared/Contraband/ContrabandSystem.cs +++ b/Content.Shared/Contraband/ContrabandSystem.cs @@ -56,7 +56,8 @@ public sealed class ContrabandSystem : EntitySystem // one, the actual informative 'this is restricted' // then, the 'you can/shouldn't carry this around' based on the ID the user is wearing var localizedDepartments = component.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString(_proto.Index(p).Name)))); - var localizedJobs = component.AllowedJobs.Select(p => Loc.GetString("contraband-job-plural", ("job", _proto.Index(p).LocalizedName))); + var jobs = component.AllowedJobs.Select(p => _proto.Index(p).LocalizedName).ToArray(); + var localizedJobs = jobs.Select(p => Loc.GetString("contraband-job-plural", ("job", p))); var severity = _proto.Index(component.Severity); String departmentExamineMessage; if (severity.ShowDepartmentsAndJobs) @@ -86,7 +87,7 @@ public sealed class ContrabandSystem : EntitySystem String carryingMessage; // either its fully restricted, you have no departments, or your departments dont intersect with the restricted departments if (departments.Intersect(component.AllowedDepartments).Any() - || localizedJobs.Contains(jobId)) + || jobs.Contains(jobId)) { carryingMessage = Loc.GetString("contraband-examine-text-in-the-clear"); } From 6bb19d8f1d85a0f5dd7a1dc0c399ae47f1ced88b Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 18 Feb 2025 11:34:15 +0000 Subject: [PATCH 052/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f01a89c25d..a6b1d2191a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can now quick-swap uneven stacks of items into your inventory without - it getting "stuck" in your hands. - type: Fix - id: 7471 - time: '2024-10-02T05:27:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32560 - author: BackeTako changes: - message: New hydroponics doors @@ -3899,3 +3891,10 @@ id: 7970 time: '2025-02-17T21:59:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31510 +- author: Killerqu00 + changes: + - message: Contraband examines now correctly tell you if you can possess the object. + type: Fix + id: 7971 + time: '2025-02-18T11:33:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35228 From e09ef5aa6feff8249e34424c44a999f862b42652 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Tue, 18 Feb 2025 23:25:14 +1100 Subject: [PATCH 053/155] Fix MappingCommand grid loading (#35233) --- Content.Server/Mapping/MappingCommand.cs | 70 ++++++++++++++++--- Content.Server/Mapping/MappingSystem.cs | 67 ++++++++++-------- .../Locale/en-US/mapping/mapping-command.ftl | 5 +- 3 files changed, 102 insertions(+), 40 deletions(-) diff --git a/Content.Server/Mapping/MappingCommand.cs b/Content.Server/Mapping/MappingCommand.cs index 85c561b9db..12a7af4484 100644 --- a/Content.Server/Mapping/MappingCommand.cs +++ b/Content.Server/Mapping/MappingCommand.cs @@ -9,6 +9,7 @@ using Robust.Shared.ContentPack; using Robust.Shared.EntitySerialization; using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Utility; namespace Content.Server.Mapping @@ -35,6 +36,8 @@ namespace Content.Server.Mapping var opts = CompletionHelper.UserFilePath(args[1], res.UserData) .Concat(CompletionHelper.ContentFilePath(args[1], res)); return CompletionResult.FromHintOptions(opts, Loc.GetString("cmd-hint-mapping-path")); + case 3: + return CompletionResult.FromHintOptions(["false", "true"], Loc.GetString("cmd-mapping-hint-grid")); } return CompletionResult.Empty; } @@ -47,7 +50,7 @@ namespace Content.Server.Mapping return; } - if (args.Length > 2) + if (args.Length > 3) { shell.WriteLine(Help); return; @@ -57,12 +60,20 @@ namespace Content.Server.Mapping shell.WriteLine(Loc.GetString("cmd-mapping-warning")); #endif + // For backwards compatibility, isGrid is optional and we allow mappers to try load grids without explicitly + // specifying that they are loading a grid. Currently content is not allowed to override a map's MapId, so + // without engine changes this needs to be done by brute force by just trying to load it as a map first. + // This can result in errors being logged if the file is actually a grid, but the command should still work. + // yipeeee + bool? isGrid = args.Length < 3 ? null : bool.Parse(args[2]); + MapId mapId; string? toLoad = null; var mapSys = _entities.System(); + Entity? grid = null; // Get the map ID to use - if (args.Length is 1 or 2) + if (args.Length > 0) { if (!int.TryParse(args[0], out var intMapId)) { @@ -79,7 +90,7 @@ namespace Content.Server.Mapping return; } - if (_map.MapExists(mapId)) + if (mapSys.MapExists(mapId)) { shell.WriteError(Loc.GetString("cmd-mapping-exists", ("mapId", mapId))); return; @@ -93,12 +104,43 @@ namespace Content.Server.Mapping else { var path = new ResPath(args[1]); + toLoad = path.FilenameWithoutExtension; var opts = new DeserializationOptions {StoreYamlUids = true}; - _entities.System().TryLoadMapWithId(mapId, path, out _, out _, opts); + var loader = _entities.System(); + + if (isGrid == true) + { + mapSys.CreateMap(mapId, runMapInit: false); + if (!loader.TryLoadGrid(mapId, path, out grid, opts)) + { + shell.WriteError(Loc.GetString("cmd-mapping-error")); + mapSys.DeleteMap(mapId); + return; + } + } + else if (!loader.TryLoadMapWithId(mapId, path, out _, out _, opts)) + { + if (isGrid == false) + { + shell.WriteError(Loc.GetString("cmd-mapping-error")); + return; + } + + // isGrid was not specified and loading it as a map failed, so we fall back to trying to load + // the file as a grid + shell.WriteLine(Loc.GetString("cmd-mapping-try-grid")); + mapSys.CreateMap(mapId, runMapInit: false); + if (!loader.TryLoadGrid(mapId, path, out grid, opts)) + { + shell.WriteError(Loc.GetString("cmd-mapping-error")); + mapSys.DeleteMap(mapId); + return; + } + } } // was the map actually created or did it fail somehow? - if (!_map.MapExists(mapId)) + if (!mapSys.MapExists(mapId)) { shell.WriteError(Loc.GetString("cmd-mapping-error")); return; @@ -120,16 +162,22 @@ namespace Content.Server.Mapping shell.ExecuteCommand("changecvar events.enabled false"); shell.ExecuteCommand("changecvar shuttle.auto_call_time 0"); - if (_cfg.GetCVar(CCVars.AutosaveEnabled)) - shell.ExecuteCommand($"toggleautosave {mapId} {toLoad ?? "NEWMAP"}"); + var auto = _entities.System(); + if (grid != null) + auto.ToggleAutosave(grid.Value.Owner, toLoad ?? "NEWGRID"); + else + auto.ToggleAutosave(mapId, toLoad ?? "NEWMAP"); + shell.ExecuteCommand($"tp 0 0 {mapId}"); shell.RemoteExecuteCommand("mappingclientsidesetup"); - _map.SetMapPaused(mapId, true); + DebugTools.Assert(mapSys.IsPaused(mapId)); - if (args.Length == 2) - shell.WriteLine(Loc.GetString("cmd-mapping-success-load",("mapId",mapId),("path", args[1]))); - else + if (args.Length != 2) shell.WriteLine(Loc.GetString("cmd-mapping-success", ("mapId", mapId))); + else if (grid == null) + shell.WriteLine(Loc.GetString("cmd-mapping-success-load", ("mapId", mapId), ("path", args[1]))); + else + shell.WriteLine(Loc.GetString("cmd-mapping-success-load-grid", ("mapId", mapId), ("path", args[1]))); } } } diff --git a/Content.Server/Mapping/MappingSystem.cs b/Content.Server/Mapping/MappingSystem.cs index 1ef6944924..b79387b3e5 100644 --- a/Content.Server/Mapping/MappingSystem.cs +++ b/Content.Server/Mapping/MappingSystem.cs @@ -2,12 +2,12 @@ using System.IO; using Content.Server.Administration; using Content.Shared.Administration; using Content.Shared.CCVar; -using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.ContentPack; using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -21,7 +21,7 @@ public sealed class MappingSystem : EntitySystem [Dependency] private readonly IConsoleHost _conHost = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly IResourceManager _resMan = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; @@ -30,7 +30,7 @@ public sealed class MappingSystem : EntitySystem /// map id -> next autosave timespan & original filename. /// /// - private Dictionary _currentlyAutosaving = new(); + private Dictionary _currentlyAutosaving = new(); private bool _autosaveEnabled; @@ -60,25 +60,29 @@ public sealed class MappingSystem : EntitySystem if (!_autosaveEnabled) return; - foreach (var (map, (time, name))in _currentlyAutosaving.ToArray()) + foreach (var (uid, (time, name))in _currentlyAutosaving) { if (_timing.RealTime <= time) continue; - if (!_mapManager.MapExists(map) || _mapManager.IsMapInitialized(map)) + if (LifeStage(uid) >= EntityLifeStage.MapInitialized) { - Log.Warning($"Can't autosave map {map}; it doesn't exist, or is initialized. Removing from autosave."); - _currentlyAutosaving.Remove(map); - return; + Log.Warning($"Can't autosave entity {uid}; it doesn't exist, or is initialized. Removing from autosave."); + _currentlyAutosaving.Remove(uid); + continue; } + _currentlyAutosaving[uid] = (CalculateNextTime(), name); var saveDir = Path.Combine(_cfg.GetCVar(CCVars.AutosaveDirectory), name); _resMan.UserData.CreateDir(new ResPath(saveDir).ToRootedPath()); - var path = Path.Combine(saveDir, $"{DateTime.Now.ToString("yyyy-M-dd_HH.mm.ss")}-AUTO.yml"); - _currentlyAutosaving[map] = (CalculateNextTime(), name); - Log.Info($"Autosaving map {name} ({map}) to {path}. Next save in {ReadableTimeLeft(map)} seconds."); - _loader.TrySaveMap(map, new ResPath(path)); + var path = new ResPath(Path.Combine(saveDir, $"{DateTime.Now:yyyy-M-dd_HH.mm.ss}-AUTO.yml")); + Log.Info($"Autosaving map {name} ({uid}) to {path}. Next save in {ReadableTimeLeft(uid)} seconds."); + + if (HasComp(uid)) + _loader.TrySaveMap(uid, path); + else + _loader.TrySaveGrid(uid, path); } } @@ -87,34 +91,41 @@ public sealed class MappingSystem : EntitySystem return _timing.RealTime + TimeSpan.FromSeconds(_cfg.GetCVar(CCVars.AutosaveInterval)); } - private double ReadableTimeLeft(MapId map) + private double ReadableTimeLeft(EntityUid uid) { - return Math.Round(_currentlyAutosaving[map].next.TotalSeconds - _timing.RealTime.TotalSeconds); + return Math.Round(_currentlyAutosaving[uid].next.TotalSeconds - _timing.RealTime.TotalSeconds); } #region Public API - public void ToggleAutosave(MapId map, string? path=null) + public void ToggleAutosave(MapId map, string? path = null) + { + if (_map.TryGetMap(map, out var uid)) + ToggleAutosave(uid.Value, path); + } + + public void ToggleAutosave(EntityUid uid, string? path=null) { if (!_autosaveEnabled) return; - if (path != null && _currentlyAutosaving.TryAdd(map, (CalculateNextTime(), Path.GetFileName(path)))) - { - if (!_mapManager.MapExists(map) || _mapManager.IsMapInitialized(map)) - { - Log.Warning("Tried to enable autosaving on non-existant or already initialized map!"); - _currentlyAutosaving.Remove(map); - return; - } + if (_currentlyAutosaving.Remove(uid) || path == null) + return; - Log.Info($"Started autosaving map {path} ({map}). Next save in {ReadableTimeLeft(map)} seconds."); - } - else + if (LifeStage(uid) >= EntityLifeStage.MapInitialized) { - _currentlyAutosaving.Remove(map); - Log.Info($"Stopped autosaving on map {map}"); + Log.Error("Tried to enable autosaving on a post map-init entity."); + return; } + + if (!HasComp(uid) && !HasComp(uid)) + { + Log.Error($"{ToPrettyString(uid)} is neither a grid or map"); + return; + } + + _currentlyAutosaving[uid] = (CalculateNextTime(), Path.GetFileName(path)); + Log.Info($"Started autosaving map {path} ({uid}). Next save in {ReadableTimeLeft(uid)} seconds."); } #endregion diff --git a/Resources/Locale/en-US/mapping/mapping-command.ftl b/Resources/Locale/en-US/mapping/mapping-command.ftl index e6d4f0e393..12ab144e25 100644 --- a/Resources/Locale/en-US/mapping/mapping-command.ftl +++ b/Resources/Locale/en-US/mapping/mapping-command.ftl @@ -1,8 +1,10 @@ cmd-mapping-desc = Create or load a map and teleports you to it. -cmd-mapping-help = Usage: mapping [MapID] [Path] +cmd-mapping-help = Usage: mapping [MapID] [Path] [Grid] cmd-mapping-server = Only players can use this command. cmd-mapping-error = An error occurred when creating the new map. +cmd-mapping-try-grid = Failed to load the file as a map. Attempting to load the file as a grid... cmd-mapping-success-load = Created uninitialized map from file {$path} with id {$mapId}. +cmd-mapping-success-load-grid = Loaded uninitialized grid from file {$path} onto a new map with id {$mapId}. cmd-mapping-success = Created uninitialized map with id {$mapId}. cmd-mapping-warning = WARNING: The server is using a debug build. You are risking losing your changes. @@ -14,5 +16,6 @@ cmd-mapping-failure-float = {$arg} is not a valid float. cmd-mapping-failure-bool = {$arg} is not a valid bool. cmd-mapping-nullspace = You cannot load into map 0. cmd-hint-mapping-id = [MapID] +cmd-mapping-hint-grid = [Grid] cmd-hint-mapping-path = [Path] cmd-mapping-exists = Map {$mapId} already exists. From d1710576807a594530526ed5283f44275da695a8 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Tue, 18 Feb 2025 13:27:30 +0100 Subject: [PATCH 054/155] UseInHandEvent cleanup (#35231) --- .../Atmos/EntitySystems/GasAnalyzerSystem.cs | 7 +++---- .../Holiday/Christmas/RandomGiftSystem.cs | 11 +++++++--- Content.Server/Mousetrap/MousetrapSystem.cs | 5 +++++ Content.Server/PAI/PAISystem.cs | 2 ++ .../EntitySystems/SpawnItemsOnUseSystem.cs | 20 +++++++++---------- .../EntitySystems/SpawnTableOnUseSystem.cs | 13 ++++++++---- .../Teleportation/HandTeleporterSystem.cs | 5 +++++ .../Systems/SharedGunSystem.Magazine.cs | 2 ++ Content.Shared/Whistle/WhistleSystem.cs | 5 ++--- 9 files changed, 45 insertions(+), 25 deletions(-) diff --git a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs index 81f0b96d02..cc541e35e9 100644 --- a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs @@ -76,14 +76,13 @@ public sealed class GasAnalyzerSystem : EntitySystem /// private void OnUseInHand(Entity entity, ref UseInHandEvent args) { + // Not checking for Handled because ActivatableUISystem already marks it as such. + if (!entity.Comp.Enabled) - { ActivateAnalyzer(entity, args.User); - } else - { DisableAnalyzer(entity, args.User); - } + args.Handled = true; } diff --git a/Content.Server/Holiday/Christmas/RandomGiftSystem.cs b/Content.Server/Holiday/Christmas/RandomGiftSystem.cs index 0816c2c36c..559dc9856e 100644 --- a/Content.Server/Holiday/Christmas/RandomGiftSystem.cs +++ b/Content.Server/Holiday/Christmas/RandomGiftSystem.cs @@ -6,7 +6,6 @@ using Content.Shared.Interaction.Events; using Content.Shared.Item; using Content.Shared.Whitelist; using Robust.Server.Audio; -using Robust.Server.GameObjects; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Prototypes; @@ -26,6 +25,7 @@ public sealed class RandomGiftSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; private readonly List _possibleGiftsSafe = new(); private readonly List _possibleGiftsUnsafe = new(); @@ -63,11 +63,16 @@ public sealed class RandomGiftSystem : EntitySystem if (component.Wrapper is not null) Spawn(component.Wrapper, coords); - args.Handled = true; _audio.PlayPvs(component.Sound, args.User); - Del(uid); + + // Don't delete the entity in the event bus, so we queue it for deletion. + // We need the free hand for the new item, so we send it to nullspace. + _transform.DetachEntity(uid, Transform(uid)); + QueueDel(uid); + _hands.PickupOrDrop(args.User, handsEnt); + args.Handled = true; } private void OnGiftMapInit(EntityUid uid, RandomGiftComponent component, MapInitEvent args) diff --git a/Content.Server/Mousetrap/MousetrapSystem.cs b/Content.Server/Mousetrap/MousetrapSystem.cs index e3aaab364d..3afe858ce0 100644 --- a/Content.Server/Mousetrap/MousetrapSystem.cs +++ b/Content.Server/Mousetrap/MousetrapSystem.cs @@ -27,6 +27,9 @@ public sealed class MousetrapSystem : EntitySystem private void OnUseInHand(EntityUid uid, MousetrapComponent component, UseInHandEvent args) { + if (args.Handled) + return; + component.IsActive = !component.IsActive; _popupSystem.PopupEntity(component.IsActive ? Loc.GetString("mousetrap-on-activate") @@ -35,6 +38,8 @@ public sealed class MousetrapSystem : EntitySystem args.User); UpdateVisuals(uid); + + args.Handled = true; } private void OnStepTriggerAttempt(EntityUid uid, MousetrapComponent component, ref StepTriggerAttemptEvent args) diff --git a/Content.Server/PAI/PAISystem.cs b/Content.Server/PAI/PAISystem.cs index 0cdb0bc29a..b0f4f2476d 100644 --- a/Content.Server/PAI/PAISystem.cs +++ b/Content.Server/PAI/PAISystem.cs @@ -37,6 +37,8 @@ public sealed class PAISystem : SharedPAISystem private void OnUseInHand(EntityUid uid, PAIComponent component, UseInHandEvent args) { + // Not checking for Handled because ToggleableGhostRoleSystem already marks it as such. + if (!TryComp(uid, out var mind) || !mind.HasMind) component.LastUser = args.User; } diff --git a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs index 4c533ede3a..1fd617c539 100644 --- a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs +++ b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs @@ -4,10 +4,8 @@ using Content.Server.Storage.Components; using Content.Shared.Database; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction.Events; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; -using Robust.Shared.Player; using Robust.Shared.Random; using static Content.Shared.Storage.EntitySpawnCollection; @@ -20,6 +18,7 @@ namespace Content.Server.Storage.EntitySystems [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly PricingSystem _pricing = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { @@ -80,26 +79,25 @@ namespace Content.Server.Storage.EntitySystems _adminLogger.Add(LogType.EntitySpawn, LogImpact.Low, $"{ToPrettyString(args.User)} used {ToPrettyString(uid)} which spawned {ToPrettyString(entityToPlaceInHands.Value)}"); } + // The entity is often deleted, so play the sound at its position rather than parenting if (component.Sound != null) - { - // The entity is often deleted, so play the sound at its position rather than parenting - var coordinates = Transform(uid).Coordinates; - _audio.PlayPvs(component.Sound, coordinates); - } + _audio.PlayPvs(component.Sound, coords); component.Uses--; // Delete entity only if component was successfully used if (component.Uses <= 0) { - args.Handled = true; - EntityManager.DeleteEntity(uid); + // Don't delete the entity in the event bus, so we queue it for deletion. + // We need the free hand for the new item, so we send it to nullspace. + _transform.DetachEntity(uid, Transform(uid)); + QueueDel(uid); } if (entityToPlaceInHands != null) - { _hands.PickupOrDrop(args.User, entityToPlaceInHands.Value); - } + + args.Handled = true; } } } diff --git a/Content.Server/Storage/EntitySystems/SpawnTableOnUseSystem.cs b/Content.Server/Storage/EntitySystems/SpawnTableOnUseSystem.cs index 96556ed7b2..1f96b39a4e 100644 --- a/Content.Server/Storage/EntitySystems/SpawnTableOnUseSystem.cs +++ b/Content.Server/Storage/EntitySystems/SpawnTableOnUseSystem.cs @@ -12,6 +12,7 @@ public sealed class SpawnTableOnUseSystem : EntitySystem [Dependency] private readonly EntityTableSystem _entityTable = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { @@ -25,17 +26,21 @@ public sealed class SpawnTableOnUseSystem : EntitySystem if (args.Handled) return; - args.Handled = true; - var coords = Transform(ent).Coordinates; var spawns = _entityTable.GetSpawns(ent.Comp.Table); + + // Don't delete the entity in the event bus, so we queue it for deletion. + // We need the free hand for the new item, so we send it to nullspace. + _transform.DetachEntity(ent, Transform(ent)); + QueueDel(ent); + foreach (var id in spawns) { var spawned = Spawn(id, coords); _adminLogger.Add(LogType.EntitySpawn, LogImpact.Low, $"{ToPrettyString(args.User):user} used {ToPrettyString(ent):spawner} which spawned {ToPrettyString(spawned)}"); - _hands.TryPickupAnyHand(args.User, spawned); + _hands.PickupOrDrop(args.User, spawned); } - Del(ent); + args.Handled = true; } } diff --git a/Content.Server/Teleportation/HandTeleporterSystem.cs b/Content.Server/Teleportation/HandTeleporterSystem.cs index 1cd2e1d8c2..78e881d76a 100644 --- a/Content.Server/Teleportation/HandTeleporterSystem.cs +++ b/Content.Server/Teleportation/HandTeleporterSystem.cs @@ -41,6 +41,9 @@ public sealed class HandTeleporterSystem : EntitySystem private void OnUseInHand(EntityUid uid, HandTeleporterComponent component, UseInHandEvent args) { + if (args.Handled) + return; + if (Deleted(component.FirstPortal)) component.FirstPortal = null; @@ -67,6 +70,8 @@ public sealed class HandTeleporterSystem : EntitySystem _doafter.TryStartDoAfter(doafterArgs); } + + args.Handled = true; } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs index 61a4820e5b..2876851d2d 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs @@ -38,6 +38,8 @@ public abstract partial class SharedGunSystem private void OnMagazineUse(EntityUid uid, MagazineAmmoProviderComponent component, UseInHandEvent args) { + // not checking for args.Handled or marking as such because we only relay the event to the magazine entity + var magEnt = GetMagazineEntity(uid); if (magEnt == null) diff --git a/Content.Shared/Whistle/WhistleSystem.cs b/Content.Shared/Whistle/WhistleSystem.cs index 9db7ffa0bf..bbedffd8ec 100644 --- a/Content.Shared/Whistle/WhistleSystem.cs +++ b/Content.Shared/Whistle/WhistleSystem.cs @@ -27,11 +27,10 @@ public sealed class WhistleSystem : EntitySystem public void OnUseInHand(EntityUid uid, WhistleComponent component, UseInHandEvent args) { - if (!_timing.IsFirstTimePredicted) + if (args.Handled || !_timing.IsFirstTimePredicted) return; - TryMakeLoudWhistle(uid, args.User, component); - args.Handled = true; + args.Handled = TryMakeLoudWhistle(uid, args.User, component); } public bool TryMakeLoudWhistle(EntityUid uid, EntityUid owner, WhistleComponent? component = null) From 834e11a48271e33d09209d020eade64d255c6a59 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Tue, 18 Feb 2025 13:28:54 +0100 Subject: [PATCH 055/155] fix observer ghost spawn error (#35253) --- Content.Server/GameTicking/GameTicker.Spawning.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index ed1246f789..a103a19733 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -359,6 +359,7 @@ namespace Content.Server.GameTicking if (DummyTicker) return; + var makeObserver = false; Entity? mind = player.GetMind(); if (mind == null) { @@ -366,10 +367,13 @@ namespace Content.Server.GameTicking var (mindId, mindComp) = _mind.CreateMind(player.UserId, name); mind = (mindId, mindComp); _mind.SetUserId(mind.Value, player.UserId); - _roles.MindAddRole(mind.Value, "MindRoleObserver"); + makeObserver = true; } var ghost = _ghost.SpawnGhost(mind.Value); + if (makeObserver) + _roles.MindAddRole(mind.Value, "MindRoleObserver"); + _adminLogger.Add(LogType.LateJoin, LogImpact.Low, $"{player.Name} late joined the round as an Observer with {ToPrettyString(ghost):entity}."); From 6d1cdd86397c6daae09899d070dc674d77ecb8d7 Mon Sep 17 00:00:00 2001 From: "Ignaz \"Ian\" Kraft" Date: Tue, 18 Feb 2025 13:32:54 +0100 Subject: [PATCH 056/155] Added a test for the MagazineVisualsComponent and fixed found issues (#34491) --- .../Tests/MagazineVisualsSpriteTest.cs | 70 +++++++++++++++++++ .../Ammunition/Magazines/caseless_rifle.yml | 4 ++ .../Guns/Ammunition/Magazines/light_rifle.yml | 4 +- .../Guns/Ammunition/Magazines/magnum.yml | 4 ++ .../Guns/Ammunition/Magazines/pistol.yml | 8 ++- .../Guns/Ammunition/Magazines/rifle.yml | 2 + .../Guns/Ammunition/SpeedLoaders/magnum.yml | 5 ++ .../Weapons/Guns/Battery/battery_guns.yml | 46 +++++++++--- .../Objects/Weapons/Guns/HMGs/hmgs.yml | 6 -- .../Weapons/Guns/Launchers/launchers.yml | 2 +- 10 files changed, 132 insertions(+), 19 deletions(-) create mode 100644 Content.IntegrationTests/Tests/MagazineVisualsSpriteTest.cs diff --git a/Content.IntegrationTests/Tests/MagazineVisualsSpriteTest.cs b/Content.IntegrationTests/Tests/MagazineVisualsSpriteTest.cs new file mode 100644 index 0000000000..f0f3b72d8d --- /dev/null +++ b/Content.IntegrationTests/Tests/MagazineVisualsSpriteTest.cs @@ -0,0 +1,70 @@ +using System.Collections.Generic; +using Content.Client.Weapons.Ranged.Components; +using Content.Shared.Prototypes; +using Robust.Client.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests; + +/// +/// Tests all entity prototypes with the MagazineVisualsComponent. +/// +[TestFixture] +public sealed class MagazineVisualsSpriteTest +{ + [Test] + public async Task MagazineVisualsSpritesExist() + { + await using var pair = await PoolManager.GetServerClient(); + var client = pair.Client; + var protoMan = client.ResolveDependency(); + var componentFactory = client.ResolveDependency(); + + await client.WaitAssertion(() => + { + foreach (var proto in protoMan.EnumeratePrototypes()) + { + if (proto.Abstract || pair.IsTestPrototype(proto)) + continue; + + if (!proto.TryGetComponent(out var visuals, componentFactory)) + continue; + + Assert.That(proto.TryGetComponent(out var sprite, componentFactory), + @$"{proto.ID} has MagazineVisualsComponent but no SpriteComponent."); + Assert.That(proto.HasComponent(componentFactory), + @$"{proto.ID} has MagazineVisualsComponent but no AppearanceComponent."); + + var toTest = new List<(int, string)>(); + if (sprite.LayerMapTryGet(GunVisualLayers.Mag, out var magLayerId)) + toTest.Add((magLayerId, "")); + if (sprite.LayerMapTryGet(GunVisualLayers.MagUnshaded, out var magUnshadedLayerId)) + toTest.Add((magUnshadedLayerId, "-unshaded")); + + Assert.That(toTest, Is.Not.Empty, + @$"{proto.ID} has MagazineVisualsComponent but no Mag or MagUnshaded layer map."); + + var start = visuals.ZeroVisible ? 0 : 1; + foreach (var (id, midfix) in toTest) + { + Assert.That(sprite.TryGetLayer(id, out var layer)); + var rsi = layer.ActualRsi; + for (var i = start; i < visuals.MagSteps; i++) + { + var state = $"{visuals.MagState}{midfix}-{i}"; + Assert.That(rsi.TryGetState(state, out _), + @$"{proto.ID} has MagazineVisualsComponent with MagSteps = {visuals.MagSteps}, but {rsi.Path} doesn't have state {state}!"); + } + + // MagSteps includes the 0th step, so sometimes people are off by one. + var extraState = $"{visuals.MagState}{midfix}-{visuals.MagSteps}"; + Assert.That(rsi.TryGetState(extraState, out _), Is.False, + @$"{proto.ID} has MagazineVisualsComponent with MagSteps = {visuals.MagSteps}, but more states exist!"); + } + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml index 5aa1f285c8..b12deec582 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml @@ -91,6 +91,10 @@ capacity: 99 - type: Sprite sprite: Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/10x24.rsi + - type: MagazineVisuals + magState: mag + steps: 8 + zeroVisible: false - type: entity id: MagazinePistolCaselessRifle diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml index 5784564378..c2bf5efeff 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml @@ -80,6 +80,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] - type: entity id: MagazineLightRiflePractice @@ -146,6 +148,6 @@ sprite: Objects/Weapons/Guns/Ammunition/Magazine/LightRifle/pk_box.rsi - type: MagazineVisuals magState: mag - steps: 7 + steps: 8 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml index b7378b9991..653ac8c068 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml @@ -59,6 +59,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] - type: entity id: MagazineMagnum @@ -129,6 +131,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] - type: entity id: MagazineMagnumSubMachineGun diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml index b554a15a98..680ec5d795 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml @@ -27,7 +27,7 @@ map: ["enum.GunVisualLayers.Mag"] - type: MagazineVisuals magState: mag - steps: 5 + steps: 6 zeroVisible: false - type: Appearance @@ -162,6 +162,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] - type: entity @@ -212,6 +214,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] - type: entity id: MagazinePistolHighCapacity @@ -273,6 +277,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] - type: entity id: MagazinePistolSubMachineGunPractice diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml index c882a3b2f1..8e15cb18ba 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml @@ -59,6 +59,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] - type: entity id: MagazineRifleIncendiary diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml index ae6bf0cebf..fd02fdf21b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml @@ -51,6 +51,11 @@ layers: - state: base map: [ "enum.GunVisualLayers.Base" ] + # TODO: This is actually a issue with all the speed loaders: + # You can mix different ammo types, but it will always + # use the one it was printed for. + - state: base-6 + map: [ "enum.GunVisualLayers.Mag" ] - type: entity id: SpeedLoaderMagnumIncendiary 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 c51aef5fe8..6426e59bd5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -23,11 +23,6 @@ - type: Battery maxCharge: 1000 startingCharge: 1000 - - type: MagazineVisuals - magState: mag - steps: 5 - zeroVisible: false - - type: Appearance - type: StaticPrice price: 500 @@ -160,6 +155,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/makeshift.rsi - type: HitscanBatteryAmmoProvider @@ -212,6 +212,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/laser_gun.rsi - type: Gun @@ -250,6 +255,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/pulse_pistol.rsi - type: Gun @@ -279,6 +289,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/pulse_carbine.rsi - type: Gun @@ -310,6 +325,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/pulse_rifle.rsi - type: Gun @@ -337,6 +357,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/laser_cannon.rsi - type: Gun @@ -507,6 +532,7 @@ magState: mag steps: 5 zeroVisible: true + - type: Appearance - type: StaticPrice price: 260 @@ -711,11 +737,6 @@ - type: BatterySelfRecharger autoRecharge: true autoRechargeRate: 40 - - type: MagazineVisuals - magState: mag - steps: 5 - zeroVisible: true - - type: Appearance - type: StaticPrice price: 750 @@ -733,6 +754,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/energy_shotgun.rsi - type: Gun diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml index ebcba7d5e4..e1de308b12 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml @@ -31,7 +31,6 @@ sprite: Objects/Weapons/Guns/HMGs/minigun.rsi layers: - state: icon - map: ["enum.GunVisualLayers.Base"] - type: Item sprite: Objects/Weapons/Guns/HMGs/minigun.rsi - type: Gun @@ -41,11 +40,6 @@ - type: BallisticAmmoProvider proto: CartridgeMinigun capacity: 1000 - - type: MagazineVisuals - magState: mag - steps: 4 - zeroVisible: true - - type: Appearance - type: ContainerContainer containers: ballistic-ammo: !type:Container diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index 4c48ec1f20..64f1fdac29 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -117,7 +117,7 @@ path: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg - type: MagazineVisuals magState: mag - steps: 1 + steps: 2 zeroVisible: true - type: Appearance From 556c36fd265d67630ea2c4e8cf17edb1bf70bcef Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 18 Feb 2025 12:34:01 +0000 Subject: [PATCH 057/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a6b1d2191a..cd549dfa72 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: BackeTako - changes: - - message: New hydroponics doors - type: Add - id: 7472 - time: '2024-10-02T05:33:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32575 - author: BackeTako changes: - message: Red circuit tile @@ -3898,3 +3891,10 @@ id: 7971 time: '2025-02-18T11:33:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35228 +- author: Ian321 + changes: + - message: Magazines that started out empty now visually fill. + type: Fix + id: 7972 + time: '2025-02-18T12:32:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34491 From aca846c6add9db7b8d495f2d0547758cd0d0c55a Mon Sep 17 00:00:00 2001 From: Kyle Tyo <36606155+VerinSenpai@users.noreply.github.com> Date: Tue, 18 Feb 2025 07:34:15 -0500 Subject: [PATCH 058/155] Fix build ghosts not being placeable on a new round. (#35097) --- .../Construction/ConstructionGhostComponent.cs | 1 + Content.Client/Construction/ConstructionSystem.cs | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Content.Client/Construction/ConstructionGhostComponent.cs b/Content.Client/Construction/ConstructionGhostComponent.cs index 8f4fe3867e..45d1d618fc 100644 --- a/Content.Client/Construction/ConstructionGhostComponent.cs +++ b/Content.Client/Construction/ConstructionGhostComponent.cs @@ -7,6 +7,7 @@ namespace Content.Client.Construction [RegisterComponent] public sealed partial class ConstructionGhostComponent : Component { + public int GhostId { get; set; } [ViewVariables] public ConstructionPrototype? Prototype { get; set; } } } diff --git a/Content.Client/Construction/ConstructionSystem.cs b/Content.Client/Construction/ConstructionSystem.cs index f909b23423..17d6b05388 100644 --- a/Content.Client/Construction/ConstructionSystem.cs +++ b/Content.Client/Construction/ConstructionSystem.cs @@ -55,6 +55,12 @@ namespace Content.Client.Construction .Register(); SubscribeLocalEvent(HandleConstructionGhostExamined); + SubscribeLocalEvent(HandleGhostComponentShutdown); + } + + private void HandleGhostComponentShutdown(EntityUid uid, ConstructionGhostComponent component, ComponentShutdown args) + { + ClearGhost(component.GhostId); } private void OnConstructionGuideReceived(ResponseConstructionGuide ev) @@ -205,8 +211,9 @@ namespace Content.Client.Construction ghost = EntityManager.SpawnEntity("constructionghost", loc); var comp = EntityManager.GetComponent(ghost.Value); comp.Prototype = prototype; + comp.GhostId = ghost.GetHashCode(); EntityManager.GetComponent(ghost.Value).LocalRotation = dir.ToAngle(); - _ghosts.Add(ghost.GetHashCode(), ghost.Value); + _ghosts.Add(comp.GhostId, ghost.Value); var sprite = EntityManager.GetComponent(ghost.Value); sprite.Color = new Color(48, 255, 48, 128); From f39587c3901c1c7c1ce7e98928827dff9a17f2f7 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Tue, 18 Feb 2025 13:36:49 +0100 Subject: [PATCH 059/155] Small loadout window improvement (#35171) Co-authored-by: Tayrtahn Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> --- Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml | 2 +- Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs | 4 ++++ Resources/Locale/en-US/preferences/loadouts.ftl | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml b/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml index e4e44f75a9..1302ea9cc1 100644 --- a/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml +++ b/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml @@ -6,7 +6,7 @@ MinSize="800 128"> - public abstract void PopupCoordinates(string? message, EntityCoordinates coordinates, ICommonSession recipient, PopupType type = PopupType.Small); + /// + /// Variant of for use with prediction. The local client will + /// the popup to the recipient, and the server will show it to every other player in PVS range. If recipient is null, the local + // client will do nothing and the server will show the message to every player in PVS range. + /// + public abstract void PopupPredictedCoordinates(string? message, EntityCoordinates coordinates, EntityUid? recipient, PopupType type = PopupType.Small); + /// /// Shows a popup above an entity for every player in pvs range. /// diff --git a/Resources/Locale/en-US/item-recall/item-recall.ftl b/Resources/Locale/en-US/item-recall/item-recall.ftl index 680c7b7b3f..2240442902 100644 --- a/Resources/Locale/en-US/item-recall/item-recall.ftl +++ b/Resources/Locale/en-US/item-recall/item-recall.ftl @@ -4,6 +4,8 @@ item-recall-marked-description = Recall {THE($item)} back into your hand. item-recall-item-marked = You draw a magical sigil on {THE($item)}. item-recall-item-already-marked = {CAPITALIZE(THE($item))} is already marked! item-recall-item-mark-empty = You must be holding an item! -item-recall-item-summon = {CAPITALIZE(THE($item))} appears in your hand! +item-recall-item-summon-self = {CAPITALIZE(THE($item))} appears in your hand! +item-recall-item-summon-others = {CAPITALIZE(THE($item))} appears in {THE($name)}'s hand! +item-recall-item-disappear = {CAPITALIZE(THE($item))} disappears! item-recall-item-unmark = You feel your connection with {THE($item)} sever. From ff789409212e1e6080ea79b595adb41dabc1e4e3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 19 Feb 2025 01:48:17 +0000 Subject: [PATCH 072/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b28c215203..f9198ab8ce 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Fixed the Instigator shuttle event never happening. - type: Fix - id: 7477 - time: '2024-10-02T11:44:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32597 - author: FluffMe changes: - message: Fixed accidental erase of paper contents by spamming save action. @@ -3893,3 +3886,11 @@ id: 7976 time: '2025-02-18T22:23:32.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35282 +- author: CooperWallace + changes: + - message: A popup is now displayed at the item's previous location when it is recalled + by the recall wizard spell. + type: Add + id: 7977 + time: '2025-02-19T01:47:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35272 From eefed6282823fa28fb6c88791e863a2377da9282 Mon Sep 17 00:00:00 2001 From: TytosB <54259736+TytosB@users.noreply.github.com> Date: Tue, 18 Feb 2025 22:38:04 -0600 Subject: [PATCH 073/155] loop latejoin hotfix (#35260) latejoin --- Resources/Maps/loop.yml | 67 ++++++++++++++++++++++++++++++++--------- 1 file changed, 53 insertions(+), 14 deletions(-) diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml index 267d1c78c0..da16c34d29 100644 --- a/Resources/Maps/loop.yml +++ b/Resources/Maps/loop.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Map + engineVersion: 247.0.0 + forkId: "" + forkVersion: "" + time: 02/17/2025 22:19:14 + entityCount: 17778 +maps: +- 1 +grids: +- 2 +orphans: [] +nullspace: [] tilemap: 34: Space 41: FloorArcadeBlue2 @@ -53,7 +64,6 @@ entities: - type: MovedGrids - type: Broadphase - type: OccluderTree - - type: LoadedMap - uid: 2 components: - type: MetaData @@ -7267,7 +7277,7 @@ entities: pos: -30.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -50568.94 + secondsUntilStateChange: -50998.375 state: Opening - type: DeviceLinkSource lastSignals: @@ -12234,11 +12244,6 @@ entities: - type: Transform pos: -21.18376,72.50857 parent: 2 - - uid: 9041 - components: - - type: Transform - pos: -35.100624,62.530506 - parent: 2 - proto: BoxFolderGreen entities: - uid: 6685 @@ -43742,7 +43747,7 @@ entities: pos: -9.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -298324.5 + secondsUntilStateChange: -298753.94 state: Opening - uid: 6747 components: @@ -43750,7 +43755,7 @@ entities: pos: -8.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -298325.22 + secondsUntilStateChange: -298754.66 state: Opening - uid: 6749 components: @@ -43758,7 +43763,7 @@ entities: pos: -6.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -298323.78 + secondsUntilStateChange: -298753.22 state: Opening - uid: 6750 components: @@ -43766,7 +43771,7 @@ entities: pos: -5.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -298323.16 + secondsUntilStateChange: -298752.6 state: Opening - uid: 9721 components: @@ -76348,7 +76353,8 @@ entities: - uid: 9067 components: - type: Transform - pos: -35.585,62.874256 + rot: -1.5707963267948966 rad + pos: -35.009964,62.848682 parent: 2 - uid: 15928 components: @@ -78537,6 +78543,13 @@ entities: - type: Transform pos: -18.5,63.5 parent: 2 +- proto: PaperBin20 + entities: + - uid: 9041 + components: + - type: Transform + pos: -35.5,62.5 + parent: 2 - proto: PaperCNCSheet entities: - uid: 6026 @@ -92373,6 +92386,18 @@ entities: - type: Transform pos: -34.5,67.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 17777 + components: + - type: Transform + pos: -83.5,55.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: -83.5,69.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 15239 @@ -97419,6 +97444,13 @@ entities: - type: Transform pos: -37.66107,39.822132 parent: 2 +- proto: ToyFigurineJanitor + entities: + - uid: 17775 + components: + - type: Transform + pos: -34.461563,68.50844 + parent: 2 - proto: ToyFigurineLawyer entities: - uid: 7153 @@ -97426,6 +97458,13 @@ entities: - type: Transform pos: -10.356424,64.17697 parent: 2 +- proto: ToyFigurineLibrarian + entities: + - uid: 17776 + components: + - type: Transform + pos: -66.40901,58.667908 + parent: 2 - proto: ToyFigurineMedicalDoctor entities: - uid: 5792 From 60306ddc40f72c95273a6b6d588b7821118aca3a Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Tue, 18 Feb 2025 21:38:12 -0700 Subject: [PATCH 074/155] centcomm update (#35293) --- Resources/Maps/centcomm.yml | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index a1441f0c0d..7853ab4f70 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 247.0.0 + forkId: "" + forkVersion: "" + time: 02/19/2025 00:34:47 + entityCount: 9480 +maps: [] +grids: +- 1668 +orphans: +- 1668 +nullspace: [] tilemap: 0: Space 7: FloorAsteroidSand @@ -23233,11 +23244,29 @@ entities: - type: Transform pos: -0.5,3.5 parent: 1668 + - type: NavMapBeacon + text: CentComm - uid: 9452 components: - type: Transform pos: 22.5,-21.5 parent: 1668 + - type: NavMapBeacon + text: Afterhours + - uid: 9479 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 1668 + - type: NavMapBeacon + text: Thunderdome + - uid: 9480 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 1668 + - type: NavMapBeacon + text: ERT - proto: DefibrillatorCabinetFilled entities: - uid: 511 From 2a124adcc3e47ce099e4fae11f756a849f6a286c Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 19 Feb 2025 06:14:44 +0100 Subject: [PATCH 075/155] Fix some emotes not respecting pronounces (#35289) * guys let's not allow those things * fix those too --- Resources/Locale/en-US/chat/emotes.ftl | 2 +- Resources/Prototypes/Voice/speech_emotes.yml | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl index 74e669b507..074ce2a5dc 100644 --- a/Resources/Locale/en-US/chat/emotes.ftl +++ b/Resources/Locale/en-US/chat/emotes.ftl @@ -46,7 +46,7 @@ chat-emote-msg-squeak = squeaks. chat-emote-msg-thump = thumps {POSS-ADJ($entity)} tail. chat-emote-msg-click = clicks. chat-emote-msg-clap = claps! -chat-emote-msg-clap-single = claps their hands together. +chat-emote-msg-clap-single = claps {POSS-ADJ($entity)} hands together. chat-emote-msg-snap = snaps {POSS-ADJ($entity)} fingers. chat-emote-msg-salute = salutes. chat-emote-msg-gasp = gasps. diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index a346f86148..dca222b420 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -233,6 +233,9 @@ chatTriggers: - clap - claps their hands together + - claps her hands together + - claps his hands together + - claps its hands together - type: emote id: Snap @@ -245,7 +248,7 @@ blacklist: components: - BorgChassis - chatMessages: ["chat-emote-msg-snap"] # snaps <{THEIR($ent)}> fingers? + chatMessages: ["chat-emote-msg-snap"] chatTriggers: - snap - snaps @@ -254,6 +257,9 @@ - snap fingers - snaps fingers - snaps their fingers + - snaps her fingers + - snaps his fingers + - snaps its fingers - snapping fingers - snapped fingers From 5642d7c2525ea5f9335f5b9eb5abef0ae2779726 Mon Sep 17 00:00:00 2001 From: SpaceLizard Date: Wed, 19 Feb 2025 01:05:47 -0500 Subject: [PATCH 076/155] Saxophone fix (#35257) Saxophone-Fix --- Resources/Prototypes/Catalog/Cargo/cargo_fun.yml | 4 ++-- Resources/Prototypes/Catalog/Fills/Crates/fun.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml index 48321ac8fe..201a3b79f6 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml @@ -14,7 +14,7 @@ sprite: Objects/Fun/Instruments/structureinstruments.rsi state: tuba product: CrateFunInstrumentsBrass - cost: 2500 + cost: 2000 category: cargoproduct-category-name-fun group: market @@ -34,7 +34,7 @@ sprite: Objects/Fun/Instruments/harmonica.rsi state: icon product: CrateFunInstrumentsWoodwind - cost: 2500 + cost: 3000 category: cargoproduct-category-name-fun group: market diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index 84c8995222..f207b123e5 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -102,8 +102,6 @@ amount: 2 - id: FrenchHornInstrument amount: 2 - - id: SaxophoneInstrument - amount: 2 - id: EuphoniumInstrument - id: TubaInstrument @@ -140,6 +138,8 @@ - id: FluteInstrument - id: HarmonicaInstrument amount: 2 + - id: SaxophoneInstrument + amount: 2 - id: OcarinaInstrument - id: PanFluteInstrument From c62ed868546a3251d7f9867bac016534080a1a7d Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 19 Feb 2025 06:06:53 +0000 Subject: [PATCH 077/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f9198ab8ce..a0ab3963a8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: FluffMe - changes: - - message: Fixed accidental erase of paper contents by spamming save action. - type: Fix - id: 7478 - time: '2024-10-02T12:00:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32598 - author: PJB3005 changes: - message: Removed bioluminescence plant mutations due to it breaking the rendering @@ -3894,3 +3887,13 @@ id: 7977 time: '2025-02-19T01:47:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35272 +- author: SpaceLizard24 + changes: + - message: Moved saxophones from the Brass Ensemble crate to the Woodwind Ensemble + crate. + type: Tweak + - message: Adjusted the prices of Woodwind Ensemble and Brass Ensemble crates. + type: Tweak + id: 7978 + time: '2025-02-19T06:05:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35257 From 2beac0254c7c2293e1aa8f5cd16cb5c3feb23e17 Mon Sep 17 00:00:00 2001 From: Absotively Date: Wed, 19 Feb 2025 03:44:17 -0700 Subject: [PATCH 078/155] Make CharacterPickerButton the same height for dwarves as for non-dwarves (#35297) Character picker button height equality for dwarves --- Content.Client/Lobby/UI/CharacterPickerButton.xaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Client/Lobby/UI/CharacterPickerButton.xaml b/Content.Client/Lobby/UI/CharacterPickerButton.xaml index 2edfd19a24..ecd706f5a7 100644 --- a/Content.Client/Lobby/UI/CharacterPickerButton.xaml +++ b/Content.Client/Lobby/UI/CharacterPickerButton.xaml @@ -8,7 +8,8 @@ + Name="View" + SetSize="64 64"/> [RegisterComponent, NetworkedComponent] -[Access(typeof(ExamineableHungerSystem))] -public sealed partial class ExamineableHungerComponent : Component +[Access(typeof(ExaminableHungerSystem))] +public sealed partial class ExaminableHungerComponent : Component { /// /// Dictionary of hunger thresholds to LocIds of the messages to display. @@ -16,16 +16,16 @@ public sealed partial class ExamineableHungerComponent : Component [DataField] public Dictionary Descriptions = new() { - { HungerThreshold.Overfed, "examineable-hunger-component-examine-overfed"}, - { HungerThreshold.Okay, "examineable-hunger-component-examine-okay"}, - { HungerThreshold.Peckish, "examineable-hunger-component-examine-peckish"}, - { HungerThreshold.Starving, "examineable-hunger-component-examine-starving"}, - { HungerThreshold.Dead, "examineable-hunger-component-examine-starving"} + { HungerThreshold.Overfed, "examinable-hunger-component-examine-overfed"}, + { HungerThreshold.Okay, "examinable-hunger-component-examine-okay"}, + { HungerThreshold.Peckish, "examinable-hunger-component-examine-peckish"}, + { HungerThreshold.Starving, "examinable-hunger-component-examine-starving"}, + { HungerThreshold.Dead, "examinable-hunger-component-examine-starving"} }; /// /// LocId of a fallback message to display if the entity has no /// or does not have a value in for the current threshold. /// - public LocId NoHungerDescription = "examineable-hunger-component-examine-none"; + public LocId NoHungerDescription = "examinable-hunger-component-examine-none"; } diff --git a/Content.Shared/Nutrition/EntitySystems/ExamineableHungerSystem.cs b/Content.Shared/Nutrition/EntitySystems/ExaminableHungerSystem.cs similarity index 79% rename from Content.Shared/Nutrition/EntitySystems/ExamineableHungerSystem.cs rename to Content.Shared/Nutrition/EntitySystems/ExaminableHungerSystem.cs index e0ac767bcf..1a1418b644 100644 --- a/Content.Shared/Nutrition/EntitySystems/ExamineableHungerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/ExaminableHungerSystem.cs @@ -4,8 +4,8 @@ using Content.Shared.Nutrition.Components; namespace Content.Shared.Nutrition.EntitySystems; -/// -public sealed class ExamineableHungerSystem : EntitySystem +/// +public sealed class ExaminableHungerSystem : EntitySystem { [Dependency] private readonly HungerSystem _hunger = default!; private EntityQuery _hungerQuery; @@ -16,14 +16,14 @@ public sealed class ExamineableHungerSystem : EntitySystem _hungerQuery = GetEntityQuery(); - SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnExamine); } /// /// Defines the text provided on examine. /// Changes depending on the amount of hunger the target has. /// - private void OnExamine(Entity entity, ref ExaminedEvent args) + private void OnExamine(Entity entity, ref ExaminedEvent args) { var identity = Identity.Entity(entity, EntityManager); diff --git a/Resources/Locale/en-US/nutrition/components/examinable-hunger-component.ftl b/Resources/Locale/en-US/nutrition/components/examinable-hunger-component.ftl new file mode 100644 index 0000000000..c42b56ef88 --- /dev/null +++ b/Resources/Locale/en-US/nutrition/components/examinable-hunger-component.ftl @@ -0,0 +1,5 @@ +examinable-hunger-component-examine-overfed = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} stuffed! +examinable-hunger-component-examine-okay = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} content. +examinable-hunger-component-examine-peckish = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} hungry. +examinable-hunger-component-examine-starving = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} starved! +examinable-hunger-component-examine-none = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "seem", "seems")} not to get hungry. diff --git a/Resources/Locale/en-US/nutrition/components/examineable-hunger-component.ftl b/Resources/Locale/en-US/nutrition/components/examineable-hunger-component.ftl deleted file mode 100644 index d8d9963908..0000000000 --- a/Resources/Locale/en-US/nutrition/components/examineable-hunger-component.ftl +++ /dev/null @@ -1,5 +0,0 @@ -examineable-hunger-component-examine-overfed = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} stuffed! -examineable-hunger-component-examine-okay = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} content. -examineable-hunger-component-examine-peckish = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} hungry. -examineable-hunger-component-examine-starving = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} starved! -examineable-hunger-component-examine-none = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "seem", "seems")} not to get hungry. diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 6dc055ea2a..aaca896175 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -229,7 +229,7 @@ - type: EggLayer eggSpawn: - id: FoodEgg - - type: ExamineableHunger + - type: ExaminableHunger - type: ReplacementAccent accent: chicken - type: SentienceTarget @@ -664,7 +664,7 @@ - type: EggLayer eggSpawn: - id: FoodEgg - - type: ExamineableHunger + - type: ExaminableHunger - type: ReplacementAccent accent: duck - type: SentienceTarget @@ -830,7 +830,7 @@ reagentId: Milk quantityPerUpdate: 25 growthDelay: 30 - - type: ExamineableHunger + - type: ExaminableHunger - type: Butcherable spawned: - id: FoodMeat @@ -987,7 +987,7 @@ reagentId: MilkGoat quantityPerUpdate: 25 growthDelay: 20 - - type: ExamineableHunger + - type: ExaminableHunger - type: Wooly - type: Food solution: wool From 22254a14e64b3da4fcbd5379d2da4a2aea1421e3 Mon Sep 17 00:00:00 2001 From: robinthedragon <92946919+robinthedragon@users.noreply.github.com> Date: Wed, 19 Feb 2025 14:25:17 -0500 Subject: [PATCH 086/155] ports two barsigns from frontier (#35296) * adds two new barsigns * webedit to fix a typo * the typo was in two locations * reformatted meta.json and added attribution links --- .../en-US/barsign/barsign-component.ftl | 8 ++++ .../Structures/Wallmounts/Signs/bar_sign.yml | 18 ++++++++ Resources/Prototypes/bar_signs.yml | 16 +++++++ .../Wallmounts/barsign.rsi/maltroach.png | Bin 0 -> 10419 bytes .../Wallmounts/barsign.rsi/meta.json | 39 ++++++++++++++++-- .../Wallmounts/barsign.rsi/whiskeyechoes.png | Bin 0 -> 17171 bytes 6 files changed, 78 insertions(+), 3 deletions(-) create mode 100644 Resources/Textures/Structures/Wallmounts/barsign.rsi/maltroach.png create mode 100644 Resources/Textures/Structures/Wallmounts/barsign.rsi/whiskeyechoes.png diff --git a/Resources/Locale/en-US/barsign/barsign-component.ftl b/Resources/Locale/en-US/barsign/barsign-component.ftl index cf7ddd1e24..af9bfa56b2 100644 --- a/Resources/Locale/en-US/barsign/barsign-component.ftl +++ b/Resources/Locale/en-US/barsign/barsign-component.ftl @@ -96,6 +96,14 @@ barsign-prototype-description-emprah = Enjoyed by fanatics, heretics, and brain- barsign-prototype-name-spacebucks = Spacebucks barsign-prototype-description-spacebucks = You can't get away from them, even in space, and even after we started calling them 'spesos' instead. +## Maltroach +barsign-prototype-name-maltroach = Maltroach +barsign-prototype-description-maltroach = Squeak! + +## Whiskey Echoes +barsign-prototype-name-whiskeyechoes = Whiskey Echoes +barsign-prototype-description-whiskeyechoes = An elite bar for elite oper-wait, this is a Nanotrasen station. Why's this sign in the database? + ## EmpBarSign barsign-prototype-description-empbarsign = Something has gone very wrong. diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml index 721b5e1320..653031133c 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml @@ -273,3 +273,21 @@ components: - type: BarSign current: Spacebucks + +- type: entity + parent: BaseBarSign + id: BarSignMaltroach + name: The Maltroach + description: Squeak! + components: + - type: BarSign + current: Maltroach + +- type: entity + parent: BaseBarSign + id: BarSignWhiskeyEchoes + name: Whiskey Echoes + description: An elite bar for elite oper-wait, this is a Nanotrasen station. Why's this sign in the database? + components: + - type: BarSign + current: WhiskeyEchoes diff --git a/Resources/Prototypes/bar_signs.yml b/Resources/Prototypes/bar_signs.yml index e3f9d30a42..3bfeedbe44 100644 --- a/Resources/Prototypes/bar_signs.yml +++ b/Resources/Prototypes/bar_signs.yml @@ -181,3 +181,19 @@ sprite: Structures/Wallmounts/barsign.rsi state: spacebucks description: barsign-prototype-description-spacebucks + +- type: barSign + id: Maltroach + name: barsign-prototype-name-maltroach + icon: + sprite: Structures/Wallmounts/barsign.rsi + state: maltroach + description: barsign-prototype-description-maltroach + +- type: barSign + id: WhiskeyEchoes + name: barsign-prototype-name-whiskeyechoes + icon: + sprite: Structures/Wallmounts/barsign.rsi + state: whiskeyechoes + description: barsign-prototype-description-whiskeyechoes diff --git a/Resources/Textures/Structures/Wallmounts/barsign.rsi/maltroach.png b/Resources/Textures/Structures/Wallmounts/barsign.rsi/maltroach.png new file mode 100644 index 0000000000000000000000000000000000000000..bbe6df843f2dce9b7d151a0195a9380e6ec31905 GIT binary patch literal 10419 zcmeHNXHb({w+_9jbSY9ol@>@s3!y~_O?s80U`PUlE(8c55Tu1Jh=_tTDHa5zdl2bW zDN+;_0YPa}M5MPHJm)*#IdkvKop0vef9IV^W|wC@d#z`$y(aIT#G9Guoo3`^1ONc1 z4fK%~000G%+(yt-k-tS_&5{8Cj&~tews;Fv5YX4p#|7t!1>%E!u|O;V=K=r_J`~@> z1@b*-jXs{`(4gG<3Inha29>|BAL;~HvWdCpViL8LO7BPk?~r-`pLPeEEB3jLFG@^) z9S-5I4LSOnrk8UteE4nZdN^%fUfy8y(YnLV!HZXGgF8Kz@!da<5Mk=Esq<5UJA_lW zruvwrOr=w<8b?J%oodgU0+&sz6ca-Tb6Ad?Zu|NFglZBG!?{*DlY1n8XUM7sx zM?`U60Vzi8mYCYDH}~3Hk83&1dCE8CW1va%JUsN^N3b3!ELOvxv3b#nt6}!V~>`MC9|f& z*K6D9)9{~eM#b=W!v<&1WQ)xaE_)uZ&892{SCyXCn=sgYwa2Ke1jRkN)p=N?Ub^E2 z`uu$5`$zSlZxin+eUc*+X*7Pkb6WM$^sTTLqV9waoVO{H)}_hDO8D>fe(ce2Sj*2m z-y-Owd2H#(&LfjhWshMQ-~6pZ>a!|a(fK#=%4Y?f)Vc39$stG$0Vs%28b#Gv3kJoV zvuLJBL?D}j9h{$yi-*1#iB5x*TJ@g3-|=);pJ~tm9j~@R5CDs?i&?|Vp1jky8Hm}# zJ-5`ZE=o6)tgRV-B~e{+&*M>Tos?M)sCL;NS6ln`qg!=pZs=ld{p9|Fe@7aiAG+lB zAQdwACHI!JsfK!RdyaH@%?~N>u`wGbbieWL@{3pHjVmv^bI*c!c2HyY0?sL!!ZL>d|U~d*adm4)g1lUMN>T+NKXN%VRN&k4^DYN{KMY@z^@=3QD>5{wLQD(tGx+xR6kZ zA)sYt?h@HoX&{>?MP8hAvF@Q&R3W$BFMXyjj5ut$&=ep4gNVTCZ-S8jIN4O|yac#XUU4>nw8MTx|ot3rnh^6U^ z(eZR;%0|d(RX6ngS4m)c~$ z(bvh#wt_LyD-(-s1~JkJxYGAc*Vs5rnaAC2E)KHOO4VE5?8u}1DXD4@fiJ`r%3HUmw+#P%gwaVlRti@tQu z!BDLD^MpKs$_yox&JR1J)e7d)xzo~ObSHq6F4KveuWDFaHu^0sw6<;=hx)|uV&#L} zzUsP7&kGk>hzR(C>BiVboyqx3|1J8m{PLx?!Xi^Qo}nl0A9CMYYDZ_ms~i$6tX)Sl zy*66VD{rB~?S)`Q^|XBP7*DG84)W~RS5i){nI?C}na9|Bi(PJdF-4YNjU zZ2+!px-2fE1J+QvbJhMHh1QZpL)9W`DZsghF#o#pC7@ye`X@+Hbz0Ek1>rx9*HJ8t(#a{Dk;B z)V(#1uJT;kD;D_yEJ1G8bR>+%QQ^4lWUErL1cq-Xc_)6@nClAW-mMAEFU_8gRdpA3 zUeXZl>%Fr`lJpS1G<+pqHal81)IP6K%j(=gB`4H;J@C+EDX`CBB>>9DloRyb(#-J2 zlc8(nwCXGg_N}aylA*<7`UTZ?lcks5zw(|&k^tV(!xk#v-}QPk!{4}6Ow%G&yiGVb zLQ7%&=yR%qAdr1MfK6Fsv1EDJ`8k6OS2Yucm1t<}k^O zhkP6(2@Mp*mc_tR^WRIbT6vM!Q#6uu^>dZ!kS)(n$&O^0#jbU$jWbP*iF#6axJthx zwtSW>C?3w&$%w#H!%V+z8K67AVm3bfZC3bCVGF)?$P6RGg^;f!B6>tw_@iX2ds4q76 zYHfX;49MVBb(TEv-42^Fy@D01U3S=QhqKPk?dL>x4u@&(Bx|Ym&N!nzGrdrur~H^g zMM(kqws(f>ahKoa3TTkJa5tw<0qpLwyXSvzWI0UXvY8sD_j=ZIKbEb^R)3|sQu!zA z%zJtLC`fpV2l&TQvb4|-(oYt{yi3(@ab~@MEpx$jUZ5h7-K+B50*g-&nr+?ODYPhSMVkkiAEZ;&6M$^xqt2!I{tKp0~3ijI4+W-IaH-e}3t3{mv51>KWTMn@)(JgyS#X1JtC zLdx8RY2r=BvWyWbbuq=e}K~qc{RLR$XJ!c4fVWHa*Laz{F|wS8S1-1ZLer_cJu{subV6_nckNGBlmHLRN(j z^O6)+wKLBb&|&kkOKxYuhFIy1AJ7)nlsx&Vo_CchZE=S1h4LN*)Y#S2ruSwPnWk$< zQ5@@H!F=X%6t_InZexrm`FuO;%YL{M7l}x8ya#1rZ zd@}4sCBnm4CAI_%WDaqq)uCx)QXVNk?WJW2O{e+r$fu;kgaJu&>#NG=R;#C`EbKqx zcw6_lQKxvHYKfXH=U(-=u+kFe&d8WpK;L^)gwwgB4CWZa<*pZ!eu?`At(ELmm%ezd zyg2Mc|EILLmX-XeGi@w&U}>3gmJhcj&y69!f@}3Z-S}~xE#W7r)L6)vu}~NVtb#4d z&k1t05v2o84l2 z)PZgxNFHt5r|ClRG13c}7awzm;k)HGZD65-6>76wtGYbkt}=PBM%5jR{$&?=Et*17 zdeK9(rZPqa2bg`nxcw7)TXB)wVma(KoWvWgfXsv!Z)`Socs3GWaN#*CD#QRsTruEh4rD5pwQ?uYNiMmS%a7q$5s z6Zs!U$`TJK^e}6$@3!qpx)l{Y-?It?R6b=G_D6aZer2xgH;Y?Lr(B34X?Z=a;tq2s zDjKMMjl9!xnLZCbs%v1jAG@VA3;X)Kb2Hk$4>=&qE=!7Od6Zh8w2`scbH?B`l2WqK z^Bq6lS7*n>D4J+{YllBlSNw}vp$t=pnt37#*Kj@UlVtDS@|Vz#`&t9ZlMvUzhnjFf zoL4m})qulh@${9v-h0AuTcqkHRWirr=OT1ktB_!mhs!$QH@8l2#51r9Mx$dzKb^7) zs`R;d*%5JCoyfZ;!Td0LJk%g*;pM~eDQjrQe8I5=?ZwQr+j{^!j;rCbbJCPPQBwQX zZuCs2Fycpn3hPZRjO{Eqs$EurQ2fa`tnIU6Is}0dFQClnm2rY|phhRtrOxq`-z6RC z?G7YAjSMN~Bl5UQYOt*V*|Pc^1#do>)rXF7=3SL4DYqe2n0of3S!f)2!dz-^)3;pg zs`MO=++s+zBbu5V-@Rq2{dK3Q9w$-m>m8+@`lb0rXbFv4cS9@nRgzt*Db6uGM|Q5x z()K{5+$}a=>+CK6F^jVy&kq>H!^6i8iSZ8w!(1UX;v&lwCMrW>ry}rtC3&%i3Ot?H z1o>4IpS}|BJFR&xBUZOHOgxjpn0AiC6s=X!Im`Gtz@QaUQB!pwM8}*FwBI4Rs@i#K zUr&njR@Lqlq(0PgyM5xmW2t2Uv#tU!S4$34R8kE!pJXebUuok0QCa4D=g}-a%W>H{Q_$<1qyBD_mn)oPswU1@ z3}OGdI`+z0TjJh@8}_}-&zSRjidd<>>=8s>T+&M+(UrxuaANf@%o8z+_Ee$v+UB1@ z`ODXpbY7i98gky&e}F!sYl#=4Z!2O#q1nk3=g#Fw1#;R z?ym=)x}^JN;ZfUdq2d%hHGF!@&>2_ava!kF7)}OzVP$AN>l{);`7@X{{8kcnM{Zpb3ESr#nDEE$V&5MdJ#(F#Ll3%jpd{pD2So3c zk${8mTg|35-w zB~tCESi+vkra1T%?^TIl)Fduu%N5z)%KXl|Cu7D+DB{!I{kz4Pct9m(n7WW?rN+ z$3{i9A1MIPGOTZkFwFV0N+0v-TQz1Vw(ga@0peht?%F0M8dee-YT@TIt|&g@L{i3{ zbvJ@-mp*T=axHrxaaZk@;n3C3(^nzz{KbH-5Nw>kOosxIAF(ULZ>#VcMBU8KX-=1+ zW_518rPAweE{_g_h+1UI*Q=k0K1yte$fsePf)g`@-}9z&w^kelV4-?9!(rBXGxgZ- zylt&^t!uzLkvvDc61dIV3sx$8Zv2m%;**RsBfb*pte3?OW#(Hca`?g~lG_)}5J120 zB%N(*PmSRn^>}WT0csQER$u(vx7cdQ7`C(;+^FuYA!u6-A1D4h;GEMJQxV^Z!l*mq z+uS~Pg3|=7Y}1b>kYDJhrt5`+0mgRIa{Z*|)^QWrJ?j*QSBIxkP=UTMpZq$Eh!{JAz+h+e_o5=#NE^;YlNX?8nGL-++ZE1DP7kWzwYn*rJhEHBSG^vn+R>H!uBUlLFXPsF&jT4V#@iGL z8~Nv7@-?Gh!R7!-0w`WT>R|&uiwmOn-Zu5bwRJzfJs&qb!?>I-!7E_e-NVBMhh5jC#~%=4L`8ix{}nVVDt&&p77 z0IHjgx@eoTnJiL)Yl2E37r-QacL;#to4qR)@^wuX!ET@^T5MH~O2e-m&o=OUu8eud zIhXWB#gv!6>n=q^N}h@k;V}(va3-zh!|8I7d6DSk$iw)avo?Z<{LCPOW90qS!iIIA zUqExGx(zeBwHVs3LU|@Zie&i)EjDZSlJ7EO6xu>u|2}*p4$M_5@Nx<~9iDOz{A1{` zuj~vLhnAQ;anW=TaUD@G3!Blth({klnBf->Q!PO>!r9-(R6QZMg>h@k$4S?y*&_NY zd4}JEejExlm03dbSyGuu8zpG>oKw253fZ;0D0Mj!Zh8v71`VX(KkR->@SVSB5;;z* z#!KC}93zWj4WLgn#^h`O+--ae5B+A4?K8JzVi&nX=|GqXlwuLij#b? znG=?#uCHaz9h(;lN&t&ONp1~MwHbyw3Yj!)93;+%iuj0O>a|V3is51I8rsu`GIpmy z{k2Lpv=@e$k)cCYqilY&5A%^*p!v`0Q~TFmZWAx}EtY(QGL%^R&b%R|>z8EIUBdjf zfFj*|+_+^Wqog;o_nRKu{1w~R?vvZD0lXgNXVNK+mg+14I8N>iutvZ_<`TBdG12)Yi~|4}k?QW`n1?b1!L7Ovzui3y640&7L>?@sUS?2)$=(XTX(_ zt!ck=A$gu-=F;iRH%D*;&8PuU{FGL=pJM$7^-|`_1_pm+Utjtt9{Mtc_l-@E`iM~X z-9tdHmtU{&xXU>C5}JS`UpCts8^O^&Ua}~Rk26-5;N?rcj0OPIGzq>avcIIE=dRB}HSfv9C7P4W}RChqVkbu|kJj|th>QUF2YcgD1dzAC$O*;o97wD` z+7IW8$N6{zPdHJ|J^^@jVPWz-@L&FU`5GJlN$>6dhYDmpguNMAz zoj@|l9}fMG7XDV`J9{|`tiMly9~!F@i1o&c{FMTO{?pz!z|ZqnI2g1X))VVRhWe9N zh5T(vJp*I2KP^rqaK(A~{<0#A{Wl~Y=kjl{{^r}s%&&0%>Im8VPu{}@-k?=LiWns*4DEsiL*627~<@WP|ndCuiabCj=}j|NG3zw!q23kcCB^I2a0tz^ouDaIi8Q zssI9$NB)BM!Qfni|2Oo>;Q^}szUBHjfAadlzlMH4QI^@bc>Yi06OlwlREAI0M(WO@`4rN!-~V{pvT}- z_ca_oJ~FEOaU8Mqtu%jF)J$q^MHHQKf7WYw0`PS5de}4a$P_s_E?Dq20z__@Wmaz$kDJ(Uu*p zoP2k7%I!FCWZ&PTNmFcJu5*62lyxYYRX~q-4)tj>WF@28{7fvsOf9{oYv8waOCM*- zn&6F!A4kcn{Q2+JtxGQzMz9G0fr8CL)%4#3RMQaIhpXkI@B1TqT2(1j)O7RLEh}k8 zvtAs_t~GB<*3fwFsYMbaI8xcN;+>`m7ipx&K2?-f!}G3C79~)_Hc>T#X-^*Ao3!E7*3x2wyP+4omwZO&f{c(Qy@p>*W) z$a||+{nMmCVSnXm?j~9_p-5ovv|v)+v}XCv|-y1S-6O4hgEQS+f44&*ikCIuY@O+HU_cIQ9Sow~=&$!9r#yr>OgXOL;NEGJ?D zw?-HcQZR9_Ujy~=>h&&87DoNY+Awit3j_@vWe}a@NX2D#OIn1q2wP5AICwju;)m?lDYLLn({^=Y3TvZO1Af zN!_@OJ2(4&{MXZr8j}0!PcSd62-;*C1?zm0AvrC*TVl?VG#y;pe?yyi%8_H~ zTQ?f8Q}!}%q1iry*!6WKKovv3M<}~N{is#MvK4tewnwF4o}03;-^&j*TqnMCH2Yq> zchq-C5%c3`-yVT_&7EL)EIn=bb@BG*db2=k&qw8V-N$r0k57wJhpCsR#_dyG4Ljf^ zh#u9MO*xGVB5syOEjeF|qABt|5)DTkSnpFw{J`5fnXcUIUEKdRYdBl+Q4p|w-b@vP z2vaL)|0=%|vwmrn8L-dpwikjFOkLWSJ^@V%=5HJ_l&ySOqsju90NGopeJP*+66$@| fA%&->U~TjAq%1!+IaiBZ6aWS~CdhKFt2h1&8F8lL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Wallmounts/barsign.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/barsign.rsi/meta.json index a7b77a84fd..ab57aa99cb 100644 --- a/Resources/Textures/Structures/Wallmounts/barsign.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/barsign.rsi/meta.json @@ -5,9 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/vgstation-coders/vgstation13/commit/1fbb5e417d0200fe60c6b628656a371093d2d715", - "copyright": "https://github.com/tgstation/tgstation/commit/68aade356cf53032f206cb5a887581ac7d166cae", - "copyright": "https://github.com/space-wizards/space-station-14/commit/b301d3ac26cb2301048eda4535667c28e2283d41 - Made by ProPandaBear for SS14", + "copyright": "https://github.com/vgstation-coders/vgstation13/commit/1fbb5e417d0200fe60c6b628656a371093d2d715, https://github.com/tgstation/tgstation/commit/68aade356cf53032f206cb5a887581ac7d166cae, https://github.com/space-wizards/space-station-14/commit/b301d3ac26cb2301048eda4535667c28e2283d41 - Made by ProPandaBear for SS14, maltroach made by robinthedragon for SS14, based on maltroach by MoffNyan for tgstation at commit https://github.com/tgstation/tgstation/commit/dcf2f8268d21e91dcb9d9d4c199e8e8dd3984d60, whiskeyechoes by cerebralerror (Discord) from frontier station at commit https://github.com/new-frontiers-14/frontier-station-14/commit/9ecd9645151fd03c6b0bfdda104188a2bc73c96b", "states": [ { "name": "combocafe", @@ -496,6 +494,41 @@ 2.2 ] ] + }, + { + "name": "maltroach", + "delays": [ + [ + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 1, + 1, + 1, + 1, + 1, + 1 + ] + ] + }, + { + "name": "whiskeyechoes", + "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, 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, 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 + ] + ] } ] } diff --git a/Resources/Textures/Structures/Wallmounts/barsign.rsi/whiskeyechoes.png b/Resources/Textures/Structures/Wallmounts/barsign.rsi/whiskeyechoes.png new file mode 100644 index 0000000000000000000000000000000000000000..894d19286d721e0eb7375b527acbc2fab9b4ebef GIT binary patch literal 17171 zcmeHvc|26_-}f10DQn7_2%*T57!gCIQY6WiY}pe-_QZ^oL{XHTk%W>ZW8Y?^ELldB zZ7`OQWsD{3jG5<*mT$lNzMtp0U(f!>(@V#kVa~a(b6wZ_^ZvZwpUcBb7teC+6xs;@ z0EgbW)0Y8&0SN#QZB}OR9l7>)`VZJV&slf_z^>i&|B$Ys5DNIFu#c{}k1^cI$KURj zBXG*`rgxyXn6ZzqgDYI@3LJj3K40k0hOgCs8xQDX7)VmPCst z=1~5oo}EqN8GAqGWCemh{vqE6O2_) z_3WNyomI_{hfawczTRB$6e`Qb!>CB|E`eA&-r$MnFT*k9+V1IG z@N39pEiK5y%PW1+#m~=l z3WtjM`-0oun8AiJj9WG%C60@Z(b!+W(S4yy(o11#T!npm`u8iD9 z!#9j6%Y&8V(y}rsy;nssQLxvX;3Ee=**PvB7o1A*^0h5{e7E)n5spsLDgxj3H^?0) z5r&-tz*|6LvpFeVb6%->YvEN3&XqKkP=bHV6cv_EM!e?HE;q&#hN7+gSQMWt&R~Gz zFZD9&*oyV;8QUw&o~e{Nb%9dI+sou?=At%Xo3A0X0*HQ<)J1hn%#bs1)`VqzGDbPj zVBDXyIKP#_wuWeMMTj3E+;RL?Dj z$W?FUc>t}HEyKGIx!FyUGE#5tUezL*-IjM_=zBtb_8?8z9x&MPK@cl9I;zJ3nR*>o z#R2(O4EF7Oc3|Y#s*xb}4TU;n_rhqH()1CIZsK?tZ^dFVVkpdUV<*Nfa*Z%6H^LPL-_2TQ3;jsO>e%2kx`vBu)G~Y{= zWOO-uI$q!(8xU%T}| zsvI~Tn7j1n7tLUB7xLDd>};|BRRIQpf;_U^nG@YhlZz8e=^#8KWAHuWRWvTj;fhT5 z3>e`=27Y;9^s7F|`6t%Tzn~WMNBOSF^jCWA8e1X|vY9PDq z5Pi%`;GQpY!@QQAEtvDCDF&4^XC>sz^{p69hQua;$Hk0~4l}q2i`%fsMAjarfFF7~ zXEKJn4n#Q>?nan0nm4WDin)EP5H!7AIx(4?jqNDs1K+ckz&?`Bz?yt%@V07Xo)a+g z3#mfZn?Ax~eF5ow#(&ncJuv;(5?)b7UcSRxf*;zKd$&#QSxJpW_k^ai5gPf=HKfyE zUVKGX+(Ac@-ZKdE9>`qJWbV`;AbTBnlK$oSDNnpL+!H2J$v#$?q@p zs#;tV#7fD${;MIqX)xA?A~QC>%#{`2b{wvCNa{75T;cF3u3X=59G?bkqb>b_VWVg= zMu13t;9l|pcCl>~XXd6uIjbGO^Y^Ji1?1Y*tB2d!I@@+i*}W8D*OM?y~tglX$=gZNAqapX?3 z8}casdZSdFreCGVURqn5ugLzD=y&jSIbmyf+UE=SGaV~B>hlh!wiqd*X~r=tJu7-@{m{hn1)8)@)Yju-xoAq59E!AHDf@mHwv%RlkVgg zQB;>3pu>Hw&b_Cu)h7NJFHlaXmp9x;Bh@XP7tL#jlVoEFW`w#bzt&hEs${qgjk;#M z(fXuy#7#7TK%IAsk|R#sxJEJIp`$aV7g&{t>)z1!(Z$>}=K&vjS$;4?bo>m~fn0D2y626QW2^aR6o6f17 zdWd(PDlhN9?c;XA|C-l*t>u@Zda?WOtb8?3uP&&$94kH@_f4axcX+Mt!!Fyj4N}$8 z`K?VH^`rNv`SG*^XXB)gAiCaF4YfC`lGVJX zR-W4lFq%tK6>7%G?_fX!Df#Q+WkShn(lsZ=hcthiK;7~?(-+js{7H`9%QFY2M|Q=2 zalW-bVCDMQ@ffR0==IpU(zr9LwDgmjrDR%)9}G3HMKg}QI32O#KDBJwdm^cYBCx!I z<$%uJ3|MMOi?P{!^=?r#Xwy|QV9{i#bnTN?n9HNlmzI|5$29XX0n-Pq%KZyD4Gd>{ z5<;9@sP=}id=`0Y{fV_9AUjOklC9xLx6a6r$5PgWp?Z(0z&}xR5TG-U+e={llnk>Y z46-~8vR42js4Gv#8e;3nLQtl=;gLZl)e!ro!K2UWX&sm?OTEhh3$`B?*2Rsb#P{;M zAH}!Ph(F5o^dfKTbxjpkz2QGpJx!nm=iC`(kxct!#no%&Kcr1@Eq;kCd#5}YxIrwD zvby|@6dJ`Z(fIYI_wyz|%F31)MHaiIFz49%42t9623Kbx6!8|a@73|wnGm6Sgy=II z_NH$dQ4ZKKaZgu@>(grSS)5ic#wyrXoOZ-!^D;uxt=IgAaHNEK+1h9GQ@12rB91$K zR57lPbKcARBHF6bUpmrvwZ-LhK7TO!<-N${_nn7m9MJDoyZA3}#1Mys?KCG3&2~_i z*4>w<$IH8Q!`~Rx?yGslzfrP*s+oDC4@DYTr{)DP-UHd%EDrXLc>!b#4ytUcMRq+0 zM!XiukDj(B^_~!t z%^8DNZ`#~b#VI3ws~~+1+F^qLDTq`&PhR4;$MmMr*2gkEFrF_+)vq7C={;*fnV$+K zS=9}mJ$yy<*DOTXHN^bipLkrZOO z5ff&#XjUrUxF2%Df1Wx_d(5UNbRTj|%Jv$Mb^>Bgwt@n!=+uab%edV}yRxV2k|u5K zOAJXMKFfJv@cXraWkkdG0@=bgcYp(}s>va)efTn2&M^X?BiOh+^D<{lY((+#TolR-zA+kISGKm8u=vQ9FNC0s zEE89DP)N>=OH%Vy-_3LEbN;FB?y8j|@XzmZP(8}=2gt(2J);G+X4d;Bhtdw+box~F zw3M1u@t|aRkTBsg@=jLt@k8@$Lxy)Kh!1Lq{y3~`ZLRjRW(w@k4VgnKkKwcqZ^YT# zgTY34OOF;k`Foq@{fJR+F`p}q(BqA1)nzbpDjEEISz8v%Cuzfz`Fvr}PDAo(? zw=nOtN!KuY1Fit36Njm2XVPN>54@<e=rPoI({q zj^f_;e=aqSimGI{O=UyB4AwhU<8h@kD|mA3qjX>O0|yl^I(oiEVX@%;$d_V zNBVuhg)qyrpKKi@CSuMO+_s-N9g%*B-Ec*Bu}d6@3Lbl?MJ+jJyPp?|Sj_BcmyC-l zJX~`yxKa>LaT;Aa15sW|&}91nmAhK%477eT%uBex^8}+BC-tzP*m}~A)E3}d(nF1% z%L#m2twIp}aZ#V?IPpgW$wld;660#(d>JMsCn7ha9aYA?ipFW-qY^)Aq7r=L3)3!M zc4*m6K>O5{E_L-ZE4!Wy&cI}hzOFkrfxwJKUSa%RFvP!>ny#QeH6A%`n9{z_j7yJF zJ4yl<;nO^-QF+~u%kosOLEwyINb>D%G&Fh4Y8$(ueCnRA?$)QH+K#$g;iHC;;U@PH zPtMuJ!;VINLrf+)iyO%Y>WnXbk@FaJ(Ae1r5?pxS+Vx`$ zt{hucO)8G6Qx}C9w&r*Ze~3HDW30{uiD(D)S(evyYGAf%#w*rEhXx|qonwLo6TR3& zO{bZ^r|hN7GcVdBN8lxpwi`?bIUK^f^lf__Z6ibWAL&?l<;Azi_sD3OtJu%>8bT4L zmwwe!_zld#f_btnNqO^qPrScWA)F7MIwo#eS4wJAzHJfx+;6_5#G?#zJ(s@X@!K>niE*^8`;i`8xi29AB9~cEk(HIg% ztLJ<*}tDi8!6OtA7jqAubgv40zQWd zO!i;z3fVtjHRL?o2ExpyQ^RU}sNR>S--gmHuofH{BAT*yVTT41TsgF7MKBf}WNhAp z&GkH6pc3*P)DWJlB7Kh`0@=AKVT%boEy7MBC!r+h@WRt;yL9j*2EUh{PGpckZY{Mc zG@V&0?${F@#TP<-legJs)>HnV&+(WtoUqwbp1n-Cbz#zZqbm~;_$ZUK@jh!j<@+f3 zLA}Vfg4M+ftKVs1zsCrX1k$rOnKvR~!6QktURERYDl7 zU6HRn2J(%W6-+O<)R+c|9-IzO+T_}PWmM_V&|^si0jwI@)G@?A^SpIP5bKw8iy5t) z$rRsY|1%`9r!^&aJdP=`lOH@m%Q0!nAqIsay>Ocw>5Th&?lmTL**!p(zxT`#zL#`A zAs*^hRWl`bgHIA9=r*F%4;I*1pJiFuV7J$TNhu|8o52uo<%_Mt(!Bx|;RlETVFDR) zn~lO+474ZoBrW!K^wA9>)UIYL*=;lPg5QVN2&)>x=L!EibKlo|-;_^43F~LJKF%lK zaeAdqHV}*5EfE@9OSL-2@VeRP2#4aXfJ-5SOZi(pT*|!Wu@?iw6CYTKOSx^nW$tXg z7Eyk}N!^v+0wsD2)*45K6}zGnoPV|zPQAit4xO-IKB!k_v6zI)yz(P(X(=bExF*}P z&z{qgzcL}Taw0xrQHiH0N5LvmAYG%N;$-Y*nQ(ucc8ItC<@;N6SCcpSE_4WJ`mB_$ z)hfh6=4y9#DC@lZM5&W`nWp-fPz(8D5D4EM>);K#4D!qYxxa4lOz?sRArxW8MF_Ab z(Y#i!FI{;zufIXO^=c7cv+8f@>bu8(UwQi2Oq33FCo0W!c zubzSMdH@F8^qdHR1Cq}d@#Ys6x`l*T&#USM<6nWvog;&Sxlaj`)^UEqL`!%cw+W3RwAEnvEnwptOD2M)& zl&8EGy=RvTs+OLCffi{O&&GZs`t4;3eXlqdyt>bxTZWaP6z`6C>0|oFqa1&u^y*WD zl$AjE!0@oCK=_Pbb?g^BDTL&s4raYK%JIQd=_x7Qjg8^iIXR`zi*n}%2UAT=O-r0{ z>E~FGKUGhV>BDz}-QKTx`$~emRpb@qp?g*%rg^W#SdXcw?0wBmre%-KeNuexguK~5 zwfGuO1O?A(vlrP6%z|}VUSs#1oSl8Cl#PG6;7-Ih1F^SEoPSbs8w6F0vALR_?EK39 zXWLONz(tnOvfb|=|5tLO|5=4mpLyXA9Vc}+XF>5GHP>0I^|x3H-iWHj88vVXKqANd zy9sN<6V{tYXJ5Xdcx)DLHf1eTlYg}oBNtK#@fm{m?DXue+GunHmZ>`~@nLX4^qc)} znqi-)N^BHItKZ5DBA3rE@{wk8|F2%YC&p;GrTZ+HFHT$OhvT4?{7t7zn`6{Mkq;qLEyju!I5 zn4gIL{_Tbs$XlBoeb2R71;9Hg+(kUYEto!q%?l16?rF+h&nudDH(3wHwLkV|aM`;) zR3-3rMPiNH(+bW2MmT2r^if6Z^_Uy~7Gv3jeoZmCx>mN6;+1E8C3x?X;`O|Wo#*Vu zk%1c9w?o9Uj$|cbGdIRf16>Z&pW@;7#=2Ca+G*Fz>*J;n!6|jDfc7?=(~!(X1w7cd zP;Av1fMv807KOb@(VB<2lx48xqq0jBp6 z*Kok~U*YKI5LOgYP@dA zHs%+Vj87!(_(x%~Ir|gth<_<=zT==$X>jTCUkj^H1HnBX&d#+@jr*ZU!G9l9NP^mQ z?d!l7_FwXsB61sHSbvFRzfN7=bBuI#U3R_b>Ex7MWbf|bu^OGAy8JQyp#4-r*4M9J zoAv*wcmHWuBkeh8VU%6XH~ogv;}3rU+6;TcUx0pt!U) z?_Nw#ySlr(e>83WKL#l`fJq-UIHwn7*;W+xH5AqK(&wc^{ zYroC4FGPO%AHi$ELPEu`D1nME8`ZT zc)gan(-&hQi#14*M!{(nR0a@xEiE|2h+scfreeTpA1 zltUD-+73AH(~iGmG6T*|QWVfdZJ#upWhns(68a2Xw07mu-bAcyfRC$U!69DBonXTf zNWJ^^Bpm=!I#53Ea<)<$;4n@dGBgEtMEoMz42815Ugz8M+tVS)f$j~~&KXh?d6W61tT9X2_t-AEDW$KMQl_7yPLNn8A= zn@*}+!V$gAFTMK{B!j<=eQZ{|<;tu`s)9OUQhGWN zgrEd}Eez%3RWKJElbs7KuKGLj8iTYWwn z1`900aaS_uwymzUGwhe9rR7iu$ouT(4~)n?=Pr+aOxB#0OC%3hU#nR3mVJ?HR{yNt zW|Dn-F;VqECr78?z^!&etMzex>@#{)cGq89R=aE+QNfh?hY-%u`OO#H$Bglu*xb=-G! zkm7iTw&a8KT1*h!LSpt)z=23I&sJMD<`2<`G1LpB3yfpyQ6bEpyYZN2XP~Jb_6(AG zZ12!tlUw>JY>j)tRDkn}juYSctHW=nm(tO>e?<{WTn9>RSD$=DZM=Sbuov0Du4}2W zC10TY{Wb^u2SY)-&zQq@=vnzcW4_S)7=(IN9X*l1r2lz}PKEH%6P_d5l71C+bp;z6 zft7g46?f4D{lKO87LPmCy#II`&`^x?Peb66^1c5o*-CmJUHX5EY?YSowLIYM?S0k4 z;&ZxYkoey{*8@$DfFIwDtg3ttU4~?H`-NKO$KMs}{PN{W*2y_qN+epg;Yu>3*b&u~ z0~!}ZBGLMO@=gJV_010td6U!9zHTf}N&J1mLzEh}({JznVO!8Bls_cO{{TG=+g_dR zW1yd#L)W248>ht%1JcU2HcibiUnve#ChA z#NRiIro3bJe5QUL*ZjK{;C|lqzp+ymA;lN~PTq2xiq5s6JLw=uaU#}LMQpCky;7QP zSJkN9a?SBy=La-zoW$Zv`fSC8$|2!-%$+a zY4Vs#DfU*x=8L$>L<3shNpcFIL6PD&AXmI>_KJpIYmr)l)^2rEy3~GQEk{O*s@unp zMA2RwAaG+mF{N3wm*0gpxrh(86QFi;rF~IWs7s7m10kwL%4Ij6uG@Bmd_PsW&J{B6 zJ)8ni#>dwLwFfYP6c3nyG#ylXA|6-<;71!P$16U`Z%V0w)XqW#5w{Tx4IV(Kh1eqt z@a6CknNG=NQ7}ks4*9!Lc~JuEg`hND&4bORAEcJ>JlKlQPo);{!7o6nG)t=#N9vtI zc`++qph}i&axy+ifVHeZ9}`rNx(oa~kmPTxP<|wgR^4=TS(Mz1X0)N}8t14L&1T&L zupmO@f;Z%26ONDAhRLu#OJx6cMtzo%K+p}Gb)GoLnY$37br@7 zcogZkgHmr|b|IGfeL{5d7RL9F?MOIH)p=>N(2E7iI__9qQ1-q$H26ePlhTgfB>LA` z#{PI+s41_v+59o8^bc_&oDO04yw7es?2Bs)@#lM_N1F7av^v_gqeW>rMm?xrq zMZn1D7t+h!5wb#(#i7bLZM!zCgL)Mtg+^+KHs_cW-8oX#&Vm|AG!7E8$)d;#X7d3C zqww4029gb9VGEJe5edIeGYsNAXBA9VggnMa%&%jOO2L0N0D_;B3?C z@sN(6<|;2g3+5n?fQ#ze%^4L(mLN1Ymftd(Pl28=r`Q(A{Pkvm=w#TkI#Q3bBG(y+ z8!W_`ke@yC@4PRDe)cND8JNMs+CW3Xm8OG&ytSm^$n0Vm+U+IhVCE;Qg)l^y@^;vG za1>2id_;2uf?U?vonB>tzR|K z|5?X*&F z%Q}EnKeDp2188T%tiM7aSZ(7B#O&96b0I-q_b_(PdwI{iua~)*l9Q7ouS9GijJ^CE z6VEGam(4A&gDF4gMGxg&GKPe)+o06EPNLChbp-X!zg+M>3K|;myz_TPO?6sambYD$ zKmGgpVJtvU81dnDkv%Y|Cc-pKlrp?Z&9ZmDZ|9H_oLaHG`AJd#Z`|fZWJ2`SLph)k z*NTcAKc(dS)%xD2upS_~*wf@+s)Q!Ms1lfkPg}dt_Dn< zW^5jeZ$Yj(30r&^YE|_5o*k7zCYf*=2$rfiMDaLIPh_wCh+5s2C=}vhW=x7iWi~Mn z);|AtF?l~xxM3TG{gFnC(y#7|Ql*xp!65N7Lsz5fGb_rUNOIK2PeqTXL*&p5;cSqE zk0dR|zSALkPi0(qH&O;^R@7qlZQ{Ss0DFN(E?+sBN^T$ci;CrC(8CiZE$C{{B;iT& zDj1?RsSzF}kbQo9e`YZ(kU5u=(jc=YXB+Z62aSQeK||gHoOZx+L6H4wH5xg-#P16^ zw=D1Y`7e`AnO&}ut7REGX|2KxDSN1y`e2gIzjRoQUurt2 z#{yf&A{NYFpNCm2k(`dPrrKpkp{&@zq(7ULT0#k<>}98YTOvzocTyLolytN}zDX7L zxJ%D{>UppwDxPEeyav^gUYvBaqhqLxtJB526yeyc2be%p%vOj0g;=eX(x#QCQT)3q zA&>6DJVdaPAt(qnEU#cbSYd`)?QlrKUaHe_lP=)S_=A@W2ZPD-Sd?bBeI36evaz39 z$2yV=N1Dvh=r{ccR@Lxek4fM8Nt`9{^IL|bhXU{W3#nV@;7DESjwkmCD%jW&I4ga= zIc>g(=>i_dVj`hn0?{pA?>j|DaW0xUhiwmw7)X~DqsRt9($<%Ub@=bfMG@BIN3s_$ zeD;UrC}kyOWC=T)Y#3~2eeab~K#q?oC~vA9qBw4?Y*Q|q-2cz7>8t2}pP2do62GRA zF;qTTUzrxkApNeO>(N5xxDGfRz4u&|n5)uc#nL_v`QWO$g=kVYHIU=K4ajXferHIt z9il2ojT@!=yE|kif@-AlzpBekmt-|O)f}3i^q_*JnK_yp?qLG+*=f&zBxm&x+1K#( z_YkQW&eW^~ z_(@Vp++>lXIa(N-UGgt^z?!Q=SBkquS2fwa-xb~50e_&wQVGyAyzvRxR%gpK$^+OP z%l!4Iigj=;?`K?ZFjlVGY<9w#Z!LV`u?lwZ_9w6XXfTG)21Acd`N;A(o4iosp!Nt!)91P#DzYmZQ0O5;NPJ) z07t=!a-tA6DPpvGvpKs1EKpUbnKrmho)`Z>UL(9LtO+^UdxBPD9nhWf!`m1m)Z!18 zbKD*^fOpM7F|XYa3pv$zfAQNGigPFxhX~d*JGKa;6(;=HAY6T-vG1n7EgxfF)+%l< zq-`d^O6FI#p^EPz)mbj1)<0m4xQ*EwC_7kb0qce^pUX7AdDpEERAFYY$nhxRDL;fB z{HZ5+v=K~&urdFYrzE|qGUpk|>8b1x6Pv)Tdy>=1Q>X;VcFmP{*2CUY^Psxo7Gf>h zx2ExQX?WAtEN1X)*H<)6L3tcEh$%QbUv&d|wGVd4F_G0)1phN4wqUa+TCXFi6w>}y z_MkZ%9Oq5sn?^W$XZi+|eIF#*foeqfsfVXD)2M}*SELP$qy$)DvYwdbmXT76+=YM!W&1%|wqMoM!1!M(zTq&s7@-&na^0K*e-)-3#00 zLwdc4X^hKwHtdlSGRJo|jKz;*#P99stng0imtD8N6~JZH*&K=vjHs8x(8!N+ioduN zL6D&?!*q6l3H{tZoOJOv@5F_!fq`Vs{geP3st9l2Wj8X%dCTikLRs3;Rf=_nI46FeJ{rFiP_?H8Z%7 zKaaRn?yDDDqJ+towYG|t-1`2>L=We(VK_V{fbDe{R_pq}YWqh=Q1)py$OFOUT~TU2#9?D%(+K zY~p#D858Z_k4HMh9(ZY_ZC0pvy9Pcwx$ev8FZD1{PpqrsvSQ=DWHzy`2|cmNK%Jm- zYBw1C*+-(&pZcUp5|c4-+0Co!E$lm{0{K082QW`S{ZmNID_YG%B=zV%&*49|2=pOs ziF?65{$ZqO&(Ooo_L&(8w|7#V(YqUywDmM4zMp~g_V`5yFN`#SGecoE3RC{PS@1Dn z-IFm(htUVBNL}@j;xtdeKL}dLi1;C>y*!8lr+D{qapY%QTJYJoy&uvB+P&0P&7~OD z%h&Fhbv=Ifh*XWh+k;O>1ak8{+1Z*!u?12suhy|x<>@**`Dm8mcV)c6IKhHtLFpiF ze&`|V{ONf=_DmATfjWOm^09e;jhI@33aVUdJvHY9y0)aQ*~XfV7NVbki^-97+h9s3 zLRRZ&LF}=#{oav?Iwv#x)R~-5S)9 z=@j})%LVm21ulq9pNgdsSpKg>jx|6f-A^g28=3HFNbdZ8JSus|wenTN)EzhZKUiOo zYOSl-%2sp@9RFte$kNWWsa1Iw`>*sdc!Q3i&mHW zv1mo_yuC9^C)+g0{%w7(rB^?jmFUG-G_3|F^lDdyFD@-oJ}K|2U?ZY#0JGUOe;zrU z0SsCdE`mzOo#yUliF&i60zHULn~!WUk1UQk9lTH?+m?9oz7V#m9IW)dc{lcNU2A9~ z%oFMmFoF#|H|H4~Y_+_+e5+h<2CpTbwDj#r+|at8^k1eZ0|NJJ8;R3z|K+Fh_&e+T zorHqsaYB6jdGEW*%F6de+`PTf{xu~@3afI08ryqJ&Nwmrqmx7LgT>L8KtFhNX{i|W zR3t$|^)M^LeY-yL-0?=SOWaJLZyR!U`t6nf_e+z_*+jsh##lIaq`ETE+S=H+)kd(k z1CG=noqSu!9LzuVChJwAy%bUSOx~nI2~Qd5+f2Z`Cm&e{5k2z}G&DMg7c}%i@8l!D z%^MY3T`>F}tPqmQ$>4tQo^TE$?LzXuw{Zj*`);)7;)fn-p3R#;GBeRNGwZ0)!jAq1tr?HV0zcs;Ka*D)*GpvYX*L3zlmIL+W@Lod#?qZj7}vfFlX zwSm%__}T-jGW|fbkhZryZh)%AsOUnT(lpJ4^l5@szBf#|oRx*d)>E2DLP&Kgby)&QKz5_-1SD@Q_W(hHxW5 zZI6O=vaDL+*M|NfVM9k9o~QNhXBPMZI90wt%vKY=;tMf#r0SnO`B)e1&XiK{LN`~y zT8?1Y38H8dA!N&UsF+Mc45UF;y9+VHYeQ6;jiJG`S*knjn93^@_;bxe)A2(!b)@2s zuftm*7aG0GZ4g%YYT5&s2Dr_)%8K`5ul=|pl1UdcS zmZFqxAFBXmWwLOVJ6B1EUfebgHcX%VNZHe3$)p94(gnJ;(1{gtr)n+ACcsKpC1l+c zCRRT~VdwhlY+>)~(o$<`xm865>4^LpErUAn+YNVj155=11HF~V$EF{}J-`bo7RZ=B zAa3jRSw{I@@*YUs$ESM^UJ$zB+rF35zcITH@`*n6tL&+6es?|}CirXQ3sOtg@c7sc4ulrCW9Z4A9k(RZ zyo^MGf(B{mGxt9UG2FxSQ`jNOOmiX($v$80_&j@LY_I)L$b*#N5dw@(J~!MA&hqhz z^XR-pT{S(iW&YP zsMqx(XTI41h)UdXqU~|NT>GLzHS^qS=Kw-v-!=baA%nJ*0lZ}rZ%f2n=ls5$G5SkqK+S-sE&)|~gSz_zp< zQc|*6`+0#SfecBi+++h3{WYD{u8S6_Z1=voeHUT_e30*P+={2L24kY@CY}XJ7dF#< z`8<=9k&oHrW=uS_l;fS>eb?#P6rL2+_U36`mLJJlE$=0wAKML7A)FdXM}`XO$}4ga zb;RD=tysz!bt|}OpQQR8XY(bwu-N;smOTgCeYTz_t}G0$%#Vm3L8P078oXfxiJ!|t zZyankuT$zP)83WC6;%uTyCM3PjEeH&0_B{xg5Y8U6_^cg3IDnk+E`|&mm4_UY2ixu z!5sPq_YaRuFX)#Fi#olhC-Fet*5+)`Q|&m?mx1KrGW@FU8HQz{3^|IPl#F}-o*+G5 zjj@$(Mi70YMhm@}WC}s}PolhKY*t5BZi`065}~@_t}_WlSYoA)0-$Ta@D5HTeBxm{ z<^~MFcPTx^lItiRo0UUjZ=X?e`}SIf@!11#s!0;rA8XB8jC(v;ejfw*0MyeDoHqe9 zNOv~{u}5Em<&U;KqKMBp!09nKey7z7Atf(ideBih9K(Dqb+ft1V*rhGJi(IK3ph@g zMM7e`dfU+$X~CR|-rRbd8c18va!ksQMd^;P2NtY?RHp?r_px0%y&fFcV)hY9>JIaJ z5dCgNqhz~yKD}1UXJEh5DPcm$DqSqNVqwhOj53EpSY2eKDhz29Rz0}1=R1vK(<2Ar-J)qkKKh$Z`XH1AHWn3G%&Jop1%HIc6K%y zg-WP4xJ+2}YI!CNPnv5i*MR&gcK~TN?|N9x|4;=W`ad+K;i@ot<&PR;#lJWc9u6OG z_#d1VV+D7jZL$0hl>LE9*)9!m1KacGdx`yM>FdDAuREFlF`=&mZ3caHc7JxOMI0!i z!5@XWGe2@wg!)*n2HpWH3&9e@dBL6bz`s`gMSxSTk^&YfU6SAslMQVkID~)|Ou389 z3;oW8Z&Vg637fYvA-7liQE!japn?2S+uQrVg$+r4T9V|MSn+@YRh|U*L}jDhl^X*0 z#)Vv>@9Uy47ky1ODi^k)nzq_-{=3azknMUXM^&V<;G>Tj$|s-?nl-*}ED2%Nmz<$U zJ?2(b|FC8iKd`KafBQENf{IP@i%Auv?*z^XIP2Q+(@kP7I=0+>jnQQpiUS53z``@I z=`uY4pZ7BDJ^%c3$s=-d=VFIf3WCJ(^yBU6xnqvW88?|d1He5MFX!lj4}EXN9slko zqHH{D2;j4$-l0r&3=#08qf$iKE~e}BqJOb4*pW+wt}|D|X#epi0L4v_%+WUqw0Y!N4Rhq=>K zh28czNPIh0>c_ziqQ~R3$LM=rx0`u@-S)s_&L`%gYm8SOTVThJBHI|wfFmn~1(HX{ z)P=Efr!qeZzL*ij8ZFsx_iLx1w*BfI=F<@LAoxcHZqolQKqm#`!fSqz@q4m3>iFRS zCes!mIu>=nmi}bpAaYGi6G}*M6Xk6h8D^c!CO2>5`B6X{#a7JG`Abg;rF^W}Ss=rx zc0R;uyYa7?J&*BdqubMW+!WT<+mVcI|D+3yw>@=7O73;It18P6*>?~`I&jmdP#k1m zp{g)Neq>P?>$U5jkstGjb`-(tfez_0#81bNF#<&D?OxjfXf6nx)8&b(adZmwr~ety zwedihVcrkA4VxZ6@h;8+OP}Uaj519TH*Xh96Ql63@x@|g8yL2MPm1K=?Dnic#{|JP+4NB^d$d+~I^N!z>s1%M59RsaA1 literal 0 HcmV?d00001 From 201ec61ce06eaea27a01873e65cdbee884752b2c Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 19 Feb 2025 19:26:27 +0000 Subject: [PATCH 087/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bce1bc8ad6..9d38bb2959 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Myra - changes: - - message: Medibots and Janibots can no longer become sentient via the sentience - event. - type: Remove - id: 7482 - time: '2024-10-03T10:32:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32383 - author: eoineoineoin changes: - message: Action bar can be reconfigured again @@ -3897,3 +3889,11 @@ id: 7981 time: '2025-02-19T13:46:16.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34582 +- author: cerebralerror, robinthedragon + changes: + - message: 'New barsigns: Maltroach (based on sign by MoffNyan, from tgstation) + and Whiskey Echoes (by cerebralerror, from frontier station)' + type: Add + id: 7982 + time: '2025-02-19T19:25:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35296 From 33b9149a56a449a470b95403f1a79f2e18719931 Mon Sep 17 00:00:00 2001 From: SeamLesss Date: Wed, 19 Feb 2025 11:27:57 -0800 Subject: [PATCH 088/155] Space Lizard Plushie In-hands (#35295) * space lizard * attributions * attribution fix --- .../Prototypes/Entities/Objects/Fun/toys.yml | 2 ++ .../Textures/Objects/Fun/toys.rsi/meta.json | 10 +++++++++- .../Fun/toys.rsi/spacelizard-inhand-left.png | Bin 0 -> 16598 bytes .../Fun/toys.rsi/spacelizard-inhand-right.png | Bin 0 -> 16598 bytes 4 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/spacelizard-inhand-left.png create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/spacelizard-inhand-right.png diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index eeb0fa6bff..585e3b31f1 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -391,6 +391,8 @@ 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!" components: + - type: Item + heldPrefix: spacelizard - type: Sprite state: plushie_spacelizard - type: EmitSoundOnUse diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index 4a0cb492eb..4bfa1f10d9 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github), lizard hat sprite made by Cinder, rubber_chicken by xprospero, in-hand lizard plushie sprites by KieueCaprie, plushie_lizard_inversed and inhand sprites modified from plushie_lizard_mirrored and plushielizard-inhand-left, plushielizard-inhand-right by ArtisticRoomba, rainbowcarplush and inhand sprites modified from carpplush and inhand sprites by ArtisticRoomba, spacelizard-equipped-HELMET by miamioni", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github), lizard hat sprite made by Cinder, rubber_chicken by xprospero, in-hand lizard plushie sprites by KieueCaprie, plushie_lizard_inversed and inhand sprites modified from plushie_lizard_mirrored and plushielizard-inhand-left, plushielizard-inhand-right by ArtisticRoomba, rainbowcarplush and inhand sprites modified from carpplush and inhand sprites by ArtisticRoomba, spacelizard-equipped-HELMET by miamioni, spacelizard-inhand-(left/right) by SeamLesss (GitHub)", "size": { "x": 32, "y": 32 @@ -201,6 +201,14 @@ "name": "spacelizard-equipped-HELMET", "directions": 4 }, + { + "name": "spacelizard-inhand-right", + "directions": 4 + }, + { + "name": "spacelizard-inhand-left", + "directions": 4 + }, { "name": "spbox" }, diff --git a/Resources/Textures/Objects/Fun/toys.rsi/spacelizard-inhand-left.png b/Resources/Textures/Objects/Fun/toys.rsi/spacelizard-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..25ba6f710b199ca6b7926a1060309471383b8463 GIT binary patch literal 16598 zcmeI4e`wTY9LGO9oi}CE%|8Ze9j1seVr&F5LS@R0c}PcXj&1~7jg=Poi$X341g9|# zf>2Z z!zyR~u1&3P5iR^0SJB|kc&Ezrza4tM!GF!Sh@O3F>-y0I(Q*m}H*AR(71h^Yyr@cu z2>~G>1cZPP5CTF#2nYcoAOwVf5D)@FKnOfm1d42{O{S;f*=?*@QXI+7Q{_G~^HiDF z&9tq!RRBuVQPuJLgt`}e%G?cGDQ=dK>T1aWhxeDrVe ze-wJ+&03Yz5Lo;dsSgJjKAaz#AuE0L>Dn#a0)c?872<#REUn`# zFcrIYUyI1+XAlp=EU2icpvuZhvLznvSOc(R#nWd3PX=i4<1w1J^G`)d$qg);IOlh%-!VLF#{kTAp9lsbr<24qU@o2Kwc-s znEr(Z015#?t#c}V|GfyjQP#eUT%swTKc4Gb!1D}X@#Ev;_i8V&``A}K5r1b3t*V%# zFZdhncyZkW-l^H$_5=W@yBPUG6%SGHM__*ggy=8a?Q)$u=LEnNuy~vPd)cGoHO&JA z2+Gq$|82uAIbI-mZKtrxExwuFqk6O%zYCB@&oH1osM)VI{j|O0@F(w-AwSd*4)$(* GW#3&pag~$+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Fun/toys.rsi/spacelizard-inhand-right.png b/Resources/Textures/Objects/Fun/toys.rsi/spacelizard-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..1ab7c53ed71f66fc2afcdf1e3e9ccda2917a19f6 GIT binary patch literal 16598 zcmeI4TS!z<6o%JWHYJ%_AQ&}TbQKgOGBW}bMW<-Gs5KFhmPtl*FQhOieXzG8sEFty zU53gaeDF!6qLhM^c^K*;i3mg=B1kB+vi)ynZ4MJNnuN@;wd3sjK4<^mzA(5Jo!jUs zj*puiM?~@NlETd@&Brr!ii+>o9PUxclwIqJ3uzetZnoXKsA{GiD%p0FXvQ-8tz|@MztLQYAzc9LGg{;U`eahfPI#- zt+GM!H$o;|$q*)^fyK9eywo*$D29H-{?h&3bM|FlX*f}%+GpBvC!D|4JgkJ|DP1oH zJ`HJ2h{`h$<^c>KIIQB)2ml;De;K5oPX}mLN-CY&Uukv=w?}K5o0|*aRB_}qy-NsC zV!YEVD(fqnw>M99sWfW+H~O?5Uj5g%d-Xt6x?C>ZW|ye5v(u5BoJ>hcNi=mk=%7p2T!@=!O}C`wOHr>?fgl=Zzp3x+0!5KQ$w zptm)SLF})=t#x&Ew7e!wcU+rVNht5xy^A)i%COD$x2}=T=NsS@Y&5z}#^dqmi{s3KW%M>@ zF=3$J?N?7sS}g~j*x_v@Xl7TWA;y#uh_5pXs@i9ztOU?6r&p(k_^ajbdu|ImXU5LVI1 zTg!h8ut^0p@Q%p(FlEq9m-(= z@Z{k@0jCKBb~XrlV2n7H-!WckSo2qe35;3)%hsGyKT`F7C`Wl+gV>16WSee9sXZ{ afAqOcrAMx}lscZ{b?zch;iH0zv%dlSv6#mI literal 0 HcmV?d00001 From f189bdcf6e858f0e87477b8a69733bb3ab0435c8 Mon Sep 17 00:00:00 2001 From: FungiFellow <151778459+FungiFellow@users.noreply.github.com> Date: Wed, 19 Feb 2025 18:27:34 -0600 Subject: [PATCH 089/155] Removed Contraband Status from Flares (#34705) * Update shotgun.yml * Update shotgun.yml * Update shotgun.yml --- .../Guns/Ammunition/Cartridges/shotgun.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml index fd6f2b8c3c..3870b872a6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml @@ -1,7 +1,7 @@ - type: entity id: BaseShellShotgun name: shell (.50) - parent: [ BaseCartridge, BaseSecurityContraband ] + parent: BaseCartridge abstract: true components: - type: Tag @@ -41,7 +41,7 @@ - type: entity id: ShellShotgunSlug name: shell (.50 slug) - parent: BaseShellShotgun + parent: [ BaseShellShotgun, BaseSecurityContraband] components: - type: Sprite layers: @@ -55,7 +55,7 @@ - type: entity id: ShellShotgunFlare name: shell (.50 flare) - parent: [ BaseShellShotgun, BaseSecurityBartenderContraband ] + parent: BaseShellShotgun components: - type: Tag tags: @@ -74,7 +74,7 @@ - type: entity id: ShellShotgun name: shell (.50) - parent: BaseShellShotgun + parent: [ BaseShellShotgun, BaseSecurityContraband ] components: - type: Sprite layers: @@ -86,7 +86,7 @@ - type: entity id: ShellShotgunIncendiary name: shell (.50 incendiary) - parent: BaseShellShotgun + parent: [ BaseShellShotgun, BaseSecurityContraband ] components: - type: Sprite layers: @@ -100,7 +100,7 @@ - type: entity id: ShellShotgunPractice name: shell (.50 practice) - parent: BaseShellShotgun + parent: [ BaseShellShotgun, BaseSecurityContraband ] components: - type: Sprite layers: @@ -114,7 +114,7 @@ - type: entity id: ShellTranquilizer name: shell (.50 tranquilizer) - parent: BaseShellShotgun + parent: [ BaseShellShotgun, BaseSecurityContraband ] components: - type: Tag tags: @@ -143,7 +143,7 @@ id: ShellShotgunImprovised name: improvised shotgun shell description: A homemade shotgun shell that shoots painful glass shrapnel. The spread is so wide that it couldn't hit the broad side of a barn. - parent: BaseShellShotgun + parent: [ BaseShellShotgun, BaseSecurityContraband ] components: - type: Tag tags: @@ -165,7 +165,7 @@ - type: entity id: ShellShotgunUranium name: uranium shotgun shell - parent: BaseShellShotgun + parent: [ BaseShellShotgun, BaseSecurityContraband ] components: - type: Sprite layers: From 8b50ac722beae97945d03dfc5c4cf7a2950ee3c4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 20 Feb 2025 00:28:40 +0000 Subject: [PATCH 090/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9d38bb2959..fb497f008e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: eoineoineoin - changes: - - message: Action bar can be reconfigured again - type: Fix - id: 7483 - time: '2024-10-03T14:01:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32552 - author: Southbridge changes: - message: Box station's recycler has been properly connected. @@ -3897,3 +3890,10 @@ id: 7982 time: '2025-02-19T19:25:20.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35296 +- author: FungiFellow + changes: + - message: Flare Shells no longer restricted contraband + type: Tweak + id: 7983 + time: '2025-02-20T00:27:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34705 From 3e449f755f1fa49b79a2082cc5caa7e9c9d8763e Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Thu, 20 Feb 2025 04:12:06 +0300 Subject: [PATCH 091/155] Fix: Toys sounds (#33449) Co-authored-by: Winkarst <74284083+Winkarst-cpu@users.noreply.github.co> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Entities/Objects/Fun/bike_horn.yml | 61 +++++++++++- .../Prototypes/Entities/Objects/Fun/skub.yml | 16 ++++ .../Prototypes/Entities/Objects/Fun/toys.yml | 93 +++++++++++++++++++ 3 files changed, 167 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml index 3e05c0e8ff..288c41dc6b 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml @@ -14,18 +14,33 @@ sprite: Objects/Fun/bikehorn.rsi slots: [Belt] quickEquip: false + - type: UseDelay + delay: 0.5 - type: EmitSoundOnUse sound: collection: BikeHorn params: variation: 0.125 - - type: UseDelay - delay: 0.5 + - type: EmitSoundOnLand + sound: + collection: BikeHorn + params: + variation: 0.125 - type: EmitSoundOnTrigger sound: collection: BikeHorn params: variation: 0.125 + - type: EmitSoundOnActivate + sound: + collection: BikeHorn + params: + variation: 0.125 + - type: EmitSoundOnCollide + sound: + collection: BikeHorn + params: + variation: 0.125 - type: Tag tags: - Payload # yes, you can make re-usable prank grenades @@ -75,7 +90,22 @@ sound: collection: CluwneHorn params: - variation: 0.246 + variation: 0.125 + - type: EmitSoundOnActivate + sound: + collection: CluwneHorn + params: + variation: 0.125 + - type: EmitSoundOnCollide + sound: + collection: CluwneHorn + params: + variation: 0.125 + - type: EmitSoundOnLand + sound: + collection: CluwneHorn + params: + variation: 0.125 - type: MeleeWeapon wideAnimationRotation: 135 soundHit: @@ -133,11 +163,36 @@ collection: BananiumHorn params: variation: 0.246 + - type: EmitSoundOnLand + sound: + collection: BananiumHorn + params: + variation: 0.246 - type: EmitSoundOnTrigger sound: collection: BananiumHorn params: variation: 0.246 + - type: EmitSoundOnActivate + sound: + collection: BananiumHorn + params: + variation: 0.246 + - type: EmitSoundOnCollide + sound: + collection: BananiumHorn + params: + variation: 0.246 + - type: MeleeWeapon + wideAnimationRotation: 135 + soundHit: + collection: BananiumHorn + params: + variation: 0.246 + damage: + types: + Blunt: 0 + hidden: true - type: Construction graph: BananiumHorn node: bananiumHorn diff --git a/Resources/Prototypes/Entities/Objects/Fun/skub.yml b/Resources/Prototypes/Entities/Objects/Fun/skub.yml index 9d4bfe79bb..ce73d4f3ef 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/skub.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/skub.yml @@ -15,8 +15,24 @@ - type: EmitSoundOnUse sound: collection: Skub + - type: EmitSoundOnLand + sound: + collection: Skub - type: EmitSoundOnTrigger sound: collection: Skub + - type: EmitSoundOnActivate + sound: + collection: Skub + - type: EmitSoundOnCollide + sound: + collection: Skub + - type: MeleeWeapon + soundHit: + collection: Skub + damage: + types: + Blunt: 0 + hidden: true - type: UseDelay delay: 2.0 diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 585e3b31f1..6255ce4998 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -199,6 +199,9 @@ - type: EmitSoundOnTrigger sound: path: /Audio/Items/Toys/mousesqueek.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Items/Toys/mousesqueek.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -285,6 +288,9 @@ - type: EmitSoundOnTrigger sound: path: /Audio/Voice/Arachnid/arachnid_laugh.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Voice/Arachnid/arachnid_laugh.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -317,6 +323,9 @@ - type: EmitSoundOnTrigger sound: path: /Audio/Items/Toys/weh.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Items/Toys/weh.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -407,6 +416,9 @@ - type: EmitSoundOnTrigger sound: path: /Audio/Items/Toys/muffled_weh.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Items/Toys/muffled_weh.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -514,6 +526,9 @@ - type: EmitSoundOnTrigger sound: path: /Audio/Items/Toys/toy_rustle.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Items/Toys/toy_rustle.ogg - type: MeleeWeapon wideAnimationRotation: 180 soundHit: @@ -587,6 +602,9 @@ - type: EmitSoundOnActivate sound: path: /Audio/Items/Toys/rawr.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Items/Toys/rawr.ogg - type: MeleeWeapon wideAnimationRotation: 180 soundHit: @@ -676,6 +694,9 @@ - type: EmitSoundOnTrigger sound: path: /Audio/Effects/bite.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Effects/bite.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -768,9 +789,18 @@ - type: EmitSoundOnUse sound: path: /Audio/Items/Toys/rattle.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Items/Toys/rattle.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Items/Toys/rattle.ogg - type: EmitSoundOnTrigger sound: path: /Audio/Items/Toys/rattle.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Items/Toys/rattle.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -791,9 +821,18 @@ - type: EmitSoundOnUse sound: path: /Audio/Items/Toys/mousesqueek.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Items/Toys/mousesqueek.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Items/Toys/mousesqueek.ogg - type: EmitSoundOnTrigger sound: path: /Audio/Items/Toys/mousesqueek.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Items/Toys/mousesqueek.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -828,9 +867,18 @@ - type: EmitSoundOnUse sound: path: /Audio/Items/Toys/quack.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Items/Toys/quack.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Items/Toys/quack.ogg - type: EmitSoundOnTrigger sound: path: /Audio/Items/Toys/quack.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Items/Toys/quack.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -853,9 +901,15 @@ - type: EmitSoundOnLand sound: path: /Audio/Voice/Vox/shriek1.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Voice/Vox/shriek1.ogg - type: EmitSoundOnTrigger sound: path: /Audio/Voice/Vox/shriek1.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Voice/Vox/shriek1.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -896,6 +950,9 @@ - type: EmitSoundOnTrigger sound: path: /Audio/Weapons/Xeno/alien_spitacid.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Weapons/Xeno/alien_spitacid.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -930,6 +987,9 @@ - type: EmitSoundOnActivate sound: path: /Audio/Voice/Human/malescream_3.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Voice/Human/malescream_4.ogg - type: Food requiresSpecialDigestion: true useSound: @@ -961,6 +1021,9 @@ - type: EmitSoundOnTrigger sound: path: /Audio/Voice/Moth/moth_chitter.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Voice/Moth/moth_chitter.ogg - type: MeleeWeapon soundHit: path: /Audio/Voice/Moth/moth_chitter.ogg @@ -1043,9 +1106,18 @@ - type: EmitSoundOnUse sound: path: /Audio/Items/Toys/ian.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Items/Toys/ian.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Items/Toys/ian.ogg - type: EmitSoundOnTrigger sound: path: /Audio/Items/Toys/ian.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Items/Toys/ian.ogg - type: MeleeWeapon soundHit: path: /Audio/Items/Toys/ian.ogg @@ -1508,12 +1580,18 @@ - type: EmitSoundOnUse sound: collection: ClownRecorder + - type: EmitSoundOnLand + sound: + collection: ClownRecorder - type: EmitSoundOnActivate sound: collection: ClownRecorder - type: EmitSoundOnTrigger sound: collection: ClownRecorder + - type: EmitSoundOnCollide + sound: + collection: ClownRecorder - type: UseDelay delay: 30.0 - type: Tag @@ -1575,6 +1653,21 @@ collection: Parp params: variation: 0.125 + - type: EmitSoundOnLand + sound: + collection: Parp + params: + variation: 0.125 + - type: EmitSoundOnActivate + sound: + collection: Parp + params: + variation: 0.125 + - type: EmitSoundOnCollide + sound: + collection: Parp + params: + variation: 0.125 - type: UseDelay delay: 0.8 - type: Slippery From 112d7c320f105cca1f863c55f45a00ab5d580dc3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 20 Feb 2025 01:13:13 +0000 Subject: [PATCH 092/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fb497f008e..07e52473a0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,16 +1,4 @@ Entries: -- author: Southbridge - changes: - - message: Box station's recycler has been properly connected. - type: Fix - - message: Box station's singlo substation has been rewired to the station-wide - HV network. - type: Tweak - - message: Box station now has AI law boards in the upload room. - type: Add - id: 7484 - time: '2024-10-04T01:12:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32608 - author: Plykiya changes: - message: You can no longer FTL the station. @@ -3897,3 +3885,10 @@ id: 7983 time: '2025-02-20T00:27:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34705 +- author: Winkarst-cpu + changes: + - message: Now all toys and bike horns make an appropriate sound. + type: Tweak + id: 7984 + time: '2025-02-20T01:12:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33449 From 1079da46006661c37b72fcafd436ec319b50cbf8 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Thu, 20 Feb 2025 14:32:45 +1100 Subject: [PATCH 093/155] Update engine to v247.1.0 (#35324) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 8f75560ec4..7104a4f459 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 8f75560ec4a2173842f132ff43f690a6ff77f1ad +Subproject commit 7104a4f4594149f5c09aeefc34275b1cbac4e297 From 3ce81d35be92273a71d638d3cbc621a5d58d35c2 Mon Sep 17 00:00:00 2001 From: Sigil <84070966+Siigiil@users.noreply.github.com> Date: Thu, 20 Feb 2025 14:52:28 +0700 Subject: [PATCH 094/155] Added a component that lets ranged weapons make melee attacks. (#29484) --- .../Weapons/Melee/MeleeWeaponSystem.cs | 96 +++++++++++-------- .../Melee/Components/AltFireMeleeComponent.cs | 22 +++++ 2 files changed, 78 insertions(+), 40 deletions(-) create mode 100644 Content.Shared/Weapons/Melee/Components/AltFireMeleeComponent.cs diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs index dc86580369..c4fef410c4 100644 --- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Mobs.Components; using Content.Shared.StatusEffect; using Content.Shared.Weapons.Melee; +using Content.Shared.Weapons.Melee.Components; using Content.Shared.Weapons.Melee.Events; using Content.Shared.Weapons.Ranged.Components; using Robust.Client.GameObjects; @@ -89,16 +90,6 @@ public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem // TODO using targeted actions while combat mode is enabled should NOT trigger attacks. - // TODO: Need to make alt-fire melee its own component I guess? - // Melee and guns share a lot in the middle but share virtually nothing at the start and end so - // it's kinda tricky. - // I think as long as we make secondaries their own component it's probably fine - // as long as guncomp has an alt-use key then it shouldn't be too much of a PITA to deal with. - if (TryComp(weaponUid, out var gun) && gun.UseKey) - { - return; - } - var mousePos = _eyeManager.PixelToMap(_inputManager.MouseScreenPosition); if (mousePos.MapId == MapId.Nullspace) @@ -116,6 +107,30 @@ public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem { coordinates = TransformSystem.ToCoordinates(_map.GetMap(mousePos.MapId), mousePos); } + + // If the gun has AltFireComponent, it can be used to attack. + if (TryComp(weaponUid, out var gun) && gun.UseKey) + { + if (!TryComp(weaponUid, out var altFireComponent) || altDown != BoundKeyState.Down) + return; + + switch(altFireComponent.AttackType) + { + case AltFireAttackType.Light: + ClientLightAttack(entity, mousePos, coordinates, weaponUid, weapon); + break; + + case AltFireAttackType.Heavy: + ClientHeavyAttack(entity, coordinates, weaponUid, weapon); + break; + + case AltFireAttackType.Disarm: + ClientDisarm(entity, mousePos, coordinates); + break; + } + + return; + } // Heavy attack. if (altDown == BoundKeyState.Down) @@ -123,14 +138,7 @@ public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem // If it's an unarmed attack then do a disarm if (weapon.AltDisarm && weaponUid == entity) { - EntityUid? target = null; - - if (_stateManager.CurrentState is GameplayStateBase screen) - { - target = screen.GetClickedEntity(mousePos); - } - - EntityManager.RaisePredictiveEvent(new DisarmAttackEvent(GetNetEntity(target), GetNetCoordinates(coordinates))); + ClientDisarm(entity, mousePos, coordinates); return; } @@ -140,28 +148,7 @@ public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem // Light attack if (useDown == BoundKeyState.Down) - { - var attackerPos = TransformSystem.GetMapCoordinates(entity); - - if (mousePos.MapId != attackerPos.MapId || - (attackerPos.Position - mousePos.Position).Length() > weapon.Range) - { - return; - } - - EntityUid? target = null; - - if (_stateManager.CurrentState is GameplayStateBase screen) - { - target = screen.GetClickedEntity(mousePos); - } - - // Don't light-attack if interaction will be handling this instead - if (Interaction.CombatModeCanHandInteract(entity, target)) - return; - - RaisePredictiveEvent(new LightAttackEvent(GetNetEntity(target), GetNetEntity(weaponUid), GetNetCoordinates(coordinates))); - } + ClientLightAttack(entity, mousePos, coordinates, weaponUid, weapon); } protected override bool InRange(EntityUid user, EntityUid target, float range, ICommonSession? session) @@ -235,6 +222,35 @@ public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem var entities = GetNetEntityList(ArcRayCast(userPos, direction.ToWorldAngle(), component.Angle, distance, userXform.MapID, user).ToList()); RaisePredictiveEvent(new HeavyAttackEvent(GetNetEntity(meleeUid), entities.GetRange(0, Math.Min(MaxTargets, entities.Count)), GetNetCoordinates(coordinates))); } + + private void ClientDisarm(EntityUid attacker, MapCoordinates mousePos, EntityCoordinates coordinates) + { + EntityUid? target = null; + + if (_stateManager.CurrentState is GameplayStateBase screen) + target = screen.GetClickedEntity(mousePos); + + RaisePredictiveEvent(new DisarmAttackEvent(GetNetEntity(target), GetNetCoordinates(coordinates))); + } + + private void ClientLightAttack(EntityUid attacker, MapCoordinates mousePos, EntityCoordinates coordinates, EntityUid weaponUid, MeleeWeaponComponent meleeComponent) + { + var attackerPos = TransformSystem.GetMapCoordinates(attacker); + + if (mousePos.MapId != attackerPos.MapId || (attackerPos.Position - mousePos.Position).Length() > meleeComponent.Range) + return; + + EntityUid? target = null; + + if (_stateManager.CurrentState is GameplayStateBase screen) + target = screen.GetClickedEntity(mousePos); + + // Don't light-attack if interaction will be handling this instead + if (Interaction.CombatModeCanHandInteract(attacker, target)) + return; + + RaisePredictiveEvent(new LightAttackEvent(GetNetEntity(target), GetNetEntity(weaponUid), GetNetCoordinates(coordinates))); + } private void OnMeleeLunge(MeleeLungeEvent ev) { diff --git a/Content.Shared/Weapons/Melee/Components/AltFireMeleeComponent.cs b/Content.Shared/Weapons/Melee/Components/AltFireMeleeComponent.cs new file mode 100644 index 0000000000..998d8f63f4 --- /dev/null +++ b/Content.Shared/Weapons/Melee/Components/AltFireMeleeComponent.cs @@ -0,0 +1,22 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Melee.Components; + +/// +/// This is used to allow ranged weapons to make melee attacks by right-clicking. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedMeleeWeaponSystem))] +public sealed partial class AltFireMeleeComponent : Component +{ + [DataField, AutoNetworkedField] + public AltFireAttackType AttackType = AltFireAttackType.Light; +} + + +[Flags] +public enum AltFireAttackType : byte +{ + Light = 0, // Standard single-target attack. + Heavy = 1 << 0, // Wide swing. + Disarm = 1 << 1 +} From 7e6e237277f49992cd889265f810052170e8ad07 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 17 Feb 2025 19:24:34 +1100 Subject: [PATCH 095/155] General storage fixes (#34845) * Fix storage stars * Fix some more storage bugs - Fix positions not saving. - Fix the 1-tick delay between parent and child storage UIs opening / closing. - Fix BackButton being visible sometimes when it shouldn't be. * milon is a furry --- Content.Client/PDA/PdaBoundUserInterface.cs | 3 +- .../Storage/StorageBoundUserInterface.cs | 27 +++++++++- .../Storage/Systems/StorageSystem.cs | 34 +++++++++++-- .../Systems/Storage/Controls/StorageWindow.cs | 51 +++++++++++++++---- .../Systems/Storage/StorageUIController.cs | 22 +++++++- .../EntitySystems/SharedStorageSystem.cs | 43 +++++++++------- 6 files changed, 143 insertions(+), 37 deletions(-) diff --git a/Content.Client/PDA/PdaBoundUserInterface.cs b/Content.Client/PDA/PdaBoundUserInterface.cs index 2d4033390c..2f7ebc37f7 100644 --- a/Content.Client/PDA/PdaBoundUserInterface.cs +++ b/Content.Client/PDA/PdaBoundUserInterface.cs @@ -30,8 +30,7 @@ namespace Content.Client.PDA private void CreateMenu() { - _menu = this.CreateWindow(); - _menu.OpenCenteredLeft(); + _menu = this.CreateWindowCenteredLeft(); _menu.FlashLightToggleButton.OnToggled += _ => { diff --git a/Content.Client/Storage/StorageBoundUserInterface.cs b/Content.Client/Storage/StorageBoundUserInterface.cs index bacc90eabf..16545c3578 100644 --- a/Content.Client/Storage/StorageBoundUserInterface.cs +++ b/Content.Client/Storage/StorageBoundUserInterface.cs @@ -1,8 +1,10 @@ +using System.Numerics; using Content.Client.UserInterface.Systems.Storage; using Content.Client.UserInterface.Systems.Storage.Controls; using Content.Shared.Storage; using JetBrains.Annotations; using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; namespace Content.Client.Storage; @@ -11,6 +13,8 @@ public sealed class StorageBoundUserInterface : BoundUserInterface { private StorageWindow? _window; + public Vector2? Position => _window?.Position; + public StorageBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -21,7 +25,7 @@ public sealed class StorageBoundUserInterface : BoundUserInterface _window = IoCManager.Resolve() .GetUIController() - .CreateStorageWindow(Owner); + .CreateStorageWindow(this); if (EntMan.TryGetComponent(Owner, out StorageComponent? storage)) { @@ -50,10 +54,20 @@ public sealed class StorageBoundUserInterface : BoundUserInterface protected override void Dispose(bool disposing) { base.Dispose(disposing); - Reclaim(); } + public void CloseWindow(Vector2 position) + { + if (_window == null) + return; + + // Update its position before potentially saving. + // Listen it makes sense okay. + LayoutContainer.SetPosition(_window, position); + _window?.Close(); + } + public void Hide() { if (_window == null) @@ -70,6 +84,15 @@ public sealed class StorageBoundUserInterface : BoundUserInterface _window.Visible = true; } + public void Show(Vector2 position) + { + if (_window == null) + return; + + Show(); + LayoutContainer.SetPosition(_window, position); + } + public void ReOpen() { _window?.Orphan(); diff --git a/Content.Client/Storage/Systems/StorageSystem.cs b/Content.Client/Storage/Systems/StorageSystem.cs index 70e02c4693..8eab2d8249 100644 --- a/Content.Client/Storage/Systems/StorageSystem.cs +++ b/Content.Client/Storage/Systems/StorageSystem.cs @@ -19,6 +19,8 @@ public sealed class StorageSystem : SharedStorageSystem private Dictionary _oldStoredItems = new(); + private List<(StorageBoundUserInterface Bui, bool Value)> _queuedBuis = new(); + public override void Initialize() { base.Initialize(); @@ -72,7 +74,7 @@ public sealed class StorageSystem : SharedStorageSystem if (NestedStorage && player != null && ContainerSystem.TryGetContainingContainer((uid, null, null), out var container) && UI.TryGetOpenUi(container.Owner, StorageComponent.StorageUiKey.Key, out var containerBui)) { - containerBui.Hide(); + _queuedBuis.Add((containerBui, false)); } } } @@ -89,7 +91,7 @@ public sealed class StorageSystem : SharedStorageSystem { if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui)) { - storageBui.Hide(); + _queuedBuis.Add((storageBui, false)); } } @@ -97,7 +99,7 @@ public sealed class StorageSystem : SharedStorageSystem { if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui)) { - storageBui.Show(); + _queuedBuis.Add((storageBui, true)); } } @@ -152,4 +154,30 @@ public sealed class StorageSystem : SharedStorageSystem } } } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + if (!_timing.IsFirstTimePredicted) + { + return; + } + + // This update loop exists just to synchronize with UISystem and avoid 1-tick delays. + // If deferred opens / closes ever get removed you can dump this. + foreach (var (bui, open) in _queuedBuis) + { + if (open) + { + bui.Show(); + } + else + { + bui.Hide(); + } + } + + _queuedBuis.Clear(); + } } diff --git a/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs index 88b4c06d72..a4afebc217 100644 --- a/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs +++ b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs @@ -9,6 +9,7 @@ using Content.Shared.IdentityManagement; using Content.Shared.Input; using Content.Shared.Item; using Content.Shared.Storage; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; @@ -190,6 +191,26 @@ public sealed class StorageWindow : BaseWindow BuildGridRepresentation(); } + private void CloseParent() + { + if (StorageEntity == null) + return; + + var containerSystem = _entity.System(); + var uiSystem = _entity.System(); + + if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && + _entity.TryGetComponent(container.Owner, out StorageComponent? storage) && + storage.Container.Contains(StorageEntity.Value) && + uiSystem + .TryGetOpenUi(container.Owner, + StorageComponent.StorageUiKey.Key, + out var parentBui)) + { + parentBui.CloseWindow(Position); + } + } + private void BuildGridRepresentation() { if (!_entity.TryGetComponent(StorageEntity, out var comp) || comp.Grid.Count == 0) @@ -212,7 +233,9 @@ public sealed class StorageWindow : BaseWindow }; exitButton.OnPressed += _ => { + // Close ourselves and all parent BUIs. Close(); + CloseParent(); }; exitButton.OnKeyBindDown += args => { @@ -220,6 +243,7 @@ public sealed class StorageWindow : BaseWindow if (!args.Handled && args.Function == ContentKeyFunctions.ActivateItemInWorld) { Close(); + CloseParent(); args.Handle(); } }; @@ -258,7 +282,8 @@ public sealed class StorageWindow : BaseWindow var containerSystem = _entity.System(); if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && - _entity.TryGetComponent(container.Owner, out StorageComponent? storage)) + _entity.TryGetComponent(container.Owner, out StorageComponent? storage) && + storage.Container.Contains(StorageEntity.Value)) { Close(); @@ -267,7 +292,7 @@ public sealed class StorageWindow : BaseWindow StorageComponent.StorageUiKey.Key, out var parentBui)) { - parentBui.Show(); + parentBui.Show(Position); } } }; @@ -412,6 +437,8 @@ public sealed class StorageWindow : BaseWindow { if (storageComp.StoredItems.TryGetValue(ent, out var updated)) { + data.Control.Marked = IsMarked(ent); + if (data.Loc.Equals(updated)) { DebugTools.Assert(data.Control.Location == updated); @@ -450,12 +477,7 @@ public sealed class StorageWindow : BaseWindow var gridPiece = new ItemGridPiece((ent, itemEntComponent), loc, _entity) { MinSize = size, - Marked = _contained.IndexOf(ent) switch - { - 0 => ItemGridPieceMarks.First, - 1 => ItemGridPieceMarks.Second, - _ => null, - } + Marked = IsMarked(ent), }; gridPiece.OnPiecePressed += OnPiecePressed; gridPiece.OnPieceUnpressed += OnPieceUnpressed; @@ -467,6 +489,16 @@ public sealed class StorageWindow : BaseWindow } } + private ItemGridPieceMarks? IsMarked(EntityUid uid) + { + return _contained.IndexOf(uid) switch + { + 0 => ItemGridPieceMarks.First, + 1 => ItemGridPieceMarks.Second, + _ => null, + }; + } + protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); @@ -486,8 +518,9 @@ public sealed class StorageWindow : BaseWindow { if (StorageEntity != null && _entity.System().NestedStorage) { + // If parent container nests us then show back button if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && - _entity.HasComponent(container.Owner)) + _entity.TryGetComponent(container.Owner, out StorageComponent? storageComp) && storageComp.Container.Contains(StorageEntity.Value)) { _backButton.Visible = true; } diff --git a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs index 5c3f047982..dbb16ab24a 100644 --- a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs +++ b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs @@ -11,6 +11,7 @@ using Content.Shared.CCVar; using Content.Shared.Input; using Content.Shared.Interaction; using Content.Shared.Storage; +using Robust.Client.GameObjects; using Robust.Client.Input; using Robust.Client.Player; using Robust.Client.UserInterface; @@ -37,6 +38,7 @@ public sealed class StorageUIController : UIController, IOnSystemChanged _menuDragHelper; @@ -107,7 +109,7 @@ public sealed class StorageUIController : UIController, IOnSystemChanged(EntityManager.GetComponent(sBui.Owner).ParentUid, + StorageComponent.StorageUiKey.Key, out var bui) && bui.Position != null) + { + window.Open(bui.Position.Value); + } + // Open at the saved position if it exists. + else if (_ui.TryGetPosition(sBui.Owner, StorageComponent.StorageUiKey.Key, out var pos)) + { + window.Open(pos); + } + // Open at the default position. + else + { + window.OpenCenteredLeft(); + } } + _ui.RegisterControl(sBui, window); return window; } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 7bf6d74c60..b6228ae779 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -318,11 +318,33 @@ public abstract class SharedStorageSystem : EntitySystem args.Verbs.Add(verb); } + public void OpenStorageUI(EntityUid uid, EntityUid actor, StorageComponent? storageComp = null, bool silent = true) + { + // Handle recursively opening nested storages. + if (ContainerSystem.TryGetContainingContainer(uid, out var container) && + UI.IsUiOpen(container.Owner, StorageComponent.StorageUiKey.Key, actor)) + { + _nestedCheck = true; + HideStorageWindow(container.Owner, actor); + OpenStorageUIInternal(uid, actor, storageComp, silent: true); + _nestedCheck = false; + } + else + { + // If you need something more sophisticated for multi-UI you'll need to code some smarter + // interactions. + if (_openStorageLimit == 1) + UI.CloseUserUis(actor); + + OpenStorageUIInternal(uid, actor, storageComp, silent: silent); + } + } + /// /// Opens the storage UI for an entity /// /// The entity to open the UI for - public void OpenStorageUI(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = true) + private void OpenStorageUIInternal(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = true) { if (!Resolve(uid, ref storageComp, false)) return; @@ -407,24 +429,7 @@ public abstract class SharedStorageSystem : EntitySystem } else { - // Handle recursively opening nested storages. - if (ContainerSystem.TryGetContainingContainer((args.Target, null, null), out var container) && - UI.IsUiOpen(container.Owner, StorageComponent.StorageUiKey.Key, args.User)) - { - _nestedCheck = true; - HideStorageWindow(container.Owner, args.User); - OpenStorageUI(uid, args.User, storageComp, silent: true); - _nestedCheck = false; - } - else - { - // If you need something more sophisticated for multi-UI you'll need to code some smarter - // interactions. - if (_openStorageLimit == 1) - UI.CloseUserUis(args.User); - - OpenStorageUI(uid, args.User, storageComp, silent: false); - } + OpenStorageUI(uid, args.User, storageComp); } args.Handled = true; From 5e0a1d8581fda1d6c10bfe4a1e26066b538dd965 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 20 Feb 2025 22:19:26 +1100 Subject: [PATCH 096/155] Fix missing errorOnMissing arg being passed thru (#35328) --- .../Chemistry/EntitySystems/SharedSolutionContainerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs index 9e5e24b3e4..99d1459340 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs @@ -145,7 +145,7 @@ public abstract partial class SharedSolutionContainerSystem : EntitySystem [NotNullWhen(true)] out Solution? solution, bool errorOnMissing = false) { - if (!TryGetSolution(container, name, out entity)) + if (!TryGetSolution(container, name, out entity, errorOnMissing: errorOnMissing)) { solution = null; return false; From c8dce26dbbb8af7a431bb31ebe6f29d1b3aa6a24 Mon Sep 17 00:00:00 2001 From: Kyle Tyo <36606155+VerinSenpai@users.noreply.github.com> Date: Thu, 20 Feb 2025 07:03:42 -0500 Subject: [PATCH 097/155] Replace obsolete FromMap calls with ToCoordinates (#35304) --- Content.Client/Gameplay/GameplayStateBase.cs | 8 +++++--- Content.Client/Weapons/Misc/TetherGunSystem.cs | 5 +++-- .../Administration/Systems/AdminVerbSystem.Smites.cs | 2 +- .../Explosion/EntitySystems/ExplosionSystem.cs | 4 +++- Content.Shared/Coordinates/Helpers/SnapgridHelper.cs | 4 ++-- .../Hands/EntitySystems/SharedHandsSystem.Pickup.cs | 2 +- .../Storage/EntitySystems/MagnetPickupSystem.cs | 2 +- .../Storage/EntitySystems/SharedStorageSystem.cs | 10 ++++------ 8 files changed, 20 insertions(+), 17 deletions(-) diff --git a/Content.Client/Gameplay/GameplayStateBase.cs b/Content.Client/Gameplay/GameplayStateBase.cs index 1e6fd485b3..162c45d412 100644 --- a/Content.Client/Gameplay/GameplayStateBase.cs +++ b/Content.Client/Gameplay/GameplayStateBase.cs @@ -219,10 +219,12 @@ namespace Content.Client.Gameplay { entityToClick = GetClickedEntity(mousePosWorld); } + var transformSystem = _entitySystemManager.GetEntitySystem(); + var mapSystem = _entitySystemManager.GetEntitySystem(); - coordinates = _mapManager.TryFindGridAt(mousePosWorld, out _, out var grid) ? - grid.MapToGrid(mousePosWorld) : - EntityCoordinates.FromMap(_mapManager, mousePosWorld); + coordinates = _mapManager.TryFindGridAt(mousePosWorld, out var uid, out _) ? + mapSystem.MapToGrid(uid, mousePosWorld) : + transformSystem.ToCoordinates(mousePosWorld); } else { diff --git a/Content.Client/Weapons/Misc/TetherGunSystem.cs b/Content.Client/Weapons/Misc/TetherGunSystem.cs index 398aeabb83..3471fcc1fc 100644 --- a/Content.Client/Weapons/Misc/TetherGunSystem.cs +++ b/Content.Client/Weapons/Misc/TetherGunSystem.cs @@ -16,6 +16,7 @@ public sealed class TetherGunSystem : SharedTetherGunSystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IOverlayManager _overlay = default!; [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly MapSystem _mapSystem = default!; public override void Initialize() { @@ -73,11 +74,11 @@ public sealed class TetherGunSystem : SharedTetherGunSystem if (_mapManager.TryFindGridAt(mouseWorldPos, out var gridUid, out _)) { - coords = EntityCoordinates.FromMap(gridUid, mouseWorldPos, TransformSystem); + coords = TransformSystem.ToCoordinates(gridUid, mouseWorldPos); } else { - coords = EntityCoordinates.FromMap(_mapManager.GetMapEntityId(mouseWorldPos.MapId), mouseWorldPos, TransformSystem); + coords = TransformSystem.ToCoordinates(_mapSystem.GetMap(mouseWorldPos.MapId), mouseWorldPos); } const float BufferDistance = 0.1f; diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 08e86ff400..ed46412a08 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -136,7 +136,7 @@ public sealed partial class AdminVerbSystem Filter.PvsExcept(args.Target), true, PopupType.MediumCaution); var board = Spawn("ChessBoard", xform.Coordinates); var session = _tabletopSystem.EnsureSession(Comp(board)); - xform.Coordinates = EntityCoordinates.FromMap(_mapManager, session.Position); + xform.Coordinates = _transformSystem.ToCoordinates(session.Position); _transformSystem.SetWorldRotationNoLerp((args.Target, xform), Angle.Zero); }, Impact = LogImpact.Extreme, diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index beffbd6d68..57759fedfe 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -16,6 +16,7 @@ using Content.Shared.GameTicking; using Content.Shared.Inventory; using Content.Shared.Projectiles; using Content.Shared.Throwing; +using Robust.Server.GameObjects; using Robust.Server.GameStates; using Robust.Server.Player; using Robust.Shared.Audio.Systems; @@ -38,6 +39,7 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly MapSystem _mapSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly DamageableSystem _damageableSystem = default!; [Dependency] private readonly NodeGroupSystem _nodeGroupSystem = default!; @@ -345,7 +347,7 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem CameraShake(iterationIntensity.Count * 4f, pos, queued.TotalIntensity); //For whatever bloody reason, sound system requires ENTITY coordinates. - var mapEntityCoords = EntityCoordinates.FromMap(_mapManager.GetMapEntityId(pos.MapId), pos, _transformSystem, EntityManager); + var mapEntityCoords = _transformSystem.ToCoordinates(_mapSystem.GetMap(pos.MapId), pos); // play sound. // for the normal audio, we want everyone in pvs range diff --git a/Content.Shared/Coordinates/Helpers/SnapgridHelper.cs b/Content.Shared/Coordinates/Helpers/SnapgridHelper.cs index db9ee85a0c..264b647afb 100644 --- a/Content.Shared/Coordinates/Helpers/SnapgridHelper.cs +++ b/Content.Shared/Coordinates/Helpers/SnapgridHelper.cs @@ -15,11 +15,11 @@ namespace Content.Shared.Coordinates.Helpers if (gridId == null) { var xformSys = entMan.System(); - var mapPos = coordinates.ToMap(entMan, xformSys); + var mapPos = xformSys.ToMapCoordinates(coordinates); var mapX = (int)Math.Floor(mapPos.X) + 0.5f; var mapY = (int)Math.Floor(mapPos.Y) + 0.5f; mapPos = new MapCoordinates(new Vector2(mapX, mapY), mapPos.MapId); - return EntityCoordinates.FromMap(coordinates.EntityId, mapPos, xformSys); + return xformSys.ToCoordinates(coordinates.EntityId, mapPos); } var grid = entMan.GetComponent(gridId.Value); diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs index 101d206acd..0fbf87f5af 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs @@ -115,7 +115,7 @@ public abstract partial class SharedHandsSystem : EntitySystem && (itemPos.Position - TransformSystem.GetMapCoordinates(uid, xform: xform).Position).Length() <= MaxAnimationRange && MetaData(entity).VisibilityMask == MetaData(uid).VisibilityMask) // Don't animate aghost pickups. { - var initialPosition = EntityCoordinates.FromMap(coordinateEntity, itemPos, TransformSystem, EntityManager); + var initialPosition = TransformSystem.ToCoordinates(coordinateEntity, itemPos); _storage.PlayPickupAnimation(entity, initialPosition, xform.Coordinates, itemXform.LocalRotation, uid); } } diff --git a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs index 7a8961485d..c1fc856ff3 100644 --- a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs +++ b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs @@ -81,7 +81,7 @@ public sealed class MagnetPickupSystem : EntitySystem // game state handling we can't show a lerp animation for it. var nearXform = Transform(near); var nearMap = _transform.GetMapCoordinates(near, xform: nearXform); - var nearCoords = EntityCoordinates.FromMap(moverCoords.EntityId, nearMap, _transform, EntityManager); + var nearCoords = _transform.ToCoordinates(moverCoords.EntityId, nearMap); if (!_storage.Insert(uid, near, out var stacked, storageComp: storage, playSound: !playedSound)) continue; diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index b6228ae779..51ee89c10b 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -532,10 +532,9 @@ public abstract class SharedStorageSystem : EntitySystem { var parent = transformOwner.ParentUid; - var position = EntityCoordinates.FromMap( + var position = TransformSystem.ToCoordinates( parent.IsValid() ? parent : uid, - TransformSystem.GetMapCoordinates(transformEnt), - TransformSystem + TransformSystem.GetMapCoordinates(transformEnt) ); args.Handled = true; @@ -585,10 +584,9 @@ public abstract class SharedStorageSystem : EntitySystem continue; } - var position = EntityCoordinates.FromMap( + var position = TransformSystem.ToCoordinates( xform.ParentUid.IsValid() ? xform.ParentUid : uid, - new MapCoordinates(TransformSystem.GetWorldPosition(targetXform), targetXform.MapID), - TransformSystem + new MapCoordinates(TransformSystem.GetWorldPosition(targetXform), targetXform.MapID) ); var angle = targetXform.LocalRotation; From a4001fba1b3071f1b26d24d136cf70f8b93cb850 Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Thu, 20 Feb 2025 04:06:39 -0800 Subject: [PATCH 098/155] Purge uses of TransformComponent.Anchored.set. Also adds parentheses. (#34938) --- Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs | 4 ++-- .../Administration/Systems/AdminVerbSystem.Smites.cs | 4 ++-- .../Atmos/EntitySystems/PipeRestrictOverlapSystem.cs | 2 +- Content.Server/Cargo/Systems/CargoSystem.Orders.cs | 2 +- Content.Server/Construction/Completions/SetAnchor.cs | 4 ++-- Content.Server/Construction/ConstructionSystem.Graph.cs | 2 +- Content.Server/Defusable/Systems/DefusableSystem.cs | 4 ++-- Content.Server/Explosion/EntitySystems/TriggerSystem.cs | 2 +- Content.Server/Holosign/HolosignSystem.cs | 2 +- Content.Server/Nuke/NukeSystem.cs | 6 +++--- .../Procedural/DungeonJob/DungeonJob.PostGenBiome.cs | 4 ++-- .../DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs | 2 +- Content.Server/Procedural/DungeonSystem.Rooms.cs | 2 +- Content.Server/Rotatable/RotatableSystem.cs | 3 ++- Content.Shared/Blocking/BlockingSystem.cs | 4 ++-- .../Construction/EntitySystems/AnchorableSystem.cs | 4 ++-- Content.Shared/Construction/SharedConstructionSystem.cs | 4 ++-- Content.Shared/Magic/SharedMagicSystem.cs | 2 +- .../Polymorph/Systems/SharedChameleonProjectorSystem.cs | 4 ++-- Content.Shared/Security/Systems/DeployableBarrierSystem.cs | 4 ++-- Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs | 2 +- Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs | 2 +- 22 files changed, 35 insertions(+), 34 deletions(-) diff --git a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs index 9109fdbe4f..8c087fcb25 100644 --- a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs +++ b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs @@ -181,14 +181,14 @@ namespace Content.IntegrationTests.Tests.Disposal }); // Can't insert, unanchored and unpowered - xformSystem.Unanchor(unitUid, entityManager.GetComponent(unitUid)); + xformSystem.Unanchor((unitUid, entityManager.GetComponent(unitUid))); UnitInsertContains(disposalUnit, unitComponent, false, disposalSystem, human, wrench, disposalUnit, disposalTrunk); }); await server.WaitAssertion(() => { // Anchor the disposal unit - xformSystem.AnchorEntity(unitUid, entityManager.GetComponent(unitUid)); + xformSystem.AnchorEntity((unitUid, entityManager.GetComponent(unitUid))); // No power Assert.That(unitComponent.Powered, Is.False); diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index ed46412a08..4ea15ced85 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -421,7 +421,7 @@ public sealed partial class AdminVerbSystem { var xform = Transform(args.Target); var fixtures = Comp(args.Target); - xform.Anchored = false; // Just in case. + _transformSystem.Unanchor((args.Target, xform)); // Just in case. _physics.SetBodyType(args.Target, BodyType.Dynamic, manager: fixtures, body: physics); _physics.SetBodyStatus(args.Target, physics, BodyStatus.InAir); _physics.WakeBody(args.Target, manager: fixtures, body: physics); @@ -456,7 +456,7 @@ public sealed partial class AdminVerbSystem { var xform = Transform(args.Target); var fixtures = Comp(args.Target); - xform.Anchored = false; // Just in case. + _transformSystem.Unanchor((args.Target, xform)); _physics.SetBodyType(args.Target, BodyType.Dynamic, body: physics); _physics.SetBodyStatus(args.Target, physics, BodyStatus.InAir); diff --git a/Content.Server/Atmos/EntitySystems/PipeRestrictOverlapSystem.cs b/Content.Server/Atmos/EntitySystems/PipeRestrictOverlapSystem.cs index c2ff87ca79..032e863893 100644 --- a/Content.Server/Atmos/EntitySystems/PipeRestrictOverlapSystem.cs +++ b/Content.Server/Atmos/EntitySystems/PipeRestrictOverlapSystem.cs @@ -40,7 +40,7 @@ public sealed class PipeRestrictOverlapSystem : EntitySystem if (HasComp(ent) && CheckOverlap(ent)) { _popup.PopupEntity(Loc.GetString("pipe-restrict-overlap-popup-blocked", ("pipe", ent.Owner)), ent); - _xform.Unanchor(ent, Transform(ent)); + _xform.Unanchor((ent, Transform(ent))); } } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index 2c86a5590a..9a8480dd3a 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -522,7 +522,7 @@ namespace Content.Server.Cargo.Systems var item = Spawn(order.ProductId, spawn); // Ensure the item doesn't start anchored - _transformSystem.Unanchor(item, Transform(item)); + _transformSystem.Unanchor((item, Transform(item))); // Create a sheet of paper to write the order details on var printed = EntityManager.SpawnEntity(paperProto, spawn); diff --git a/Content.Server/Construction/Completions/SetAnchor.cs b/Content.Server/Construction/Completions/SetAnchor.cs index 989ecc99bd..b82db0339b 100644 --- a/Content.Server/Construction/Completions/SetAnchor.cs +++ b/Content.Server/Construction/Completions/SetAnchor.cs @@ -11,8 +11,8 @@ namespace Content.Server.Construction.Completions public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { - var transform = entityManager.GetComponent(uid); - transform.Anchored = Value; + var transformSystem = entityManager.System(); + transformSystem.TrySetAnchor(uid, Value); } } } diff --git a/Content.Server/Construction/ConstructionSystem.Graph.cs b/Content.Server/Construction/ConstructionSystem.Graph.cs index 4c73cef703..fb513b6f6b 100644 --- a/Content.Server/Construction/ConstructionSystem.Graph.cs +++ b/Content.Server/Construction/ConstructionSystem.Graph.cs @@ -364,7 +364,7 @@ namespace Content.Server.Construction var newTransform = Transform(newUid); TransformSystem.AttachToGridOrMap(newUid, newTransform); // in case in hands or a container newTransform.LocalRotation = transform.LocalRotation; - newTransform.Anchored = transform.Anchored; + TransformSystem.SetAnchor((newUid, newTransform), transform.Anchored); // Container transferring. if (containerManager != null) diff --git a/Content.Server/Defusable/Systems/DefusableSystem.cs b/Content.Server/Defusable/Systems/DefusableSystem.cs index 1e9caece94..58a08bf91d 100644 --- a/Content.Server/Defusable/Systems/DefusableSystem.cs +++ b/Content.Server/Defusable/Systems/DefusableSystem.cs @@ -133,7 +133,7 @@ public sealed class DefusableSystem : SharedDefusableSystem var xform = Transform(uid); if (!xform.Anchored) - _transform.AnchorEntity(uid, xform); + _transform.AnchorEntity((uid, xform)); SetBolt(comp, true); SetActivated(comp, true); @@ -203,7 +203,7 @@ public sealed class DefusableSystem : SharedDefusableSystem comp.Bolted = false; if (xform.Anchored) - _transform.Unanchor(uid, xform); + _transform.Unanchor((uid, xform)); _appearance.SetData(uid, DefusableVisuals.Active, comp.Activated); } diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 53f6dfacf8..8db161eeb6 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -149,7 +149,7 @@ namespace Content.Server.Explosion.EntitySystems if (xform.Anchored) return; - _transformSystem.AnchorEntity(uid, xform); + _transformSystem.AnchorEntity((uid, xform)); if (component.RemoveOnTrigger) RemCompDeferred(uid); diff --git a/Content.Server/Holosign/HolosignSystem.cs b/Content.Server/Holosign/HolosignSystem.cs index b63a545989..13886ac69f 100644 --- a/Content.Server/Holosign/HolosignSystem.cs +++ b/Content.Server/Holosign/HolosignSystem.cs @@ -54,7 +54,7 @@ public sealed class HolosignSystem : EntitySystem var holoUid = EntityManager.SpawnEntity(component.SignProto, args.ClickLocation.SnapToGrid(EntityManager)); var xform = Transform(holoUid); if (!xform.Anchored) - _transform.AnchorEntity(holoUid, xform); // anchor to prevent any tempering with (don't know what could even interact with it) + _transform.AnchorEntity((holoUid, xform)); // anchor to prevent any tempering with (don't know what could even interact with it) args.Handled = true; } diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs index 84118931b1..9c0b14ea4e 100644 --- a/Content.Server/Nuke/NukeSystem.cs +++ b/Content.Server/Nuke/NukeSystem.cs @@ -181,7 +181,7 @@ public sealed class NukeSystem : EntitySystem var xform = Transform(uid); if (xform.Anchored) { - _transform.Unanchor(uid, xform); + _transform.Unanchor((uid, xform)); _itemSlots.SetLock(uid, component.DiskSlot, true); } else @@ -203,7 +203,7 @@ public sealed class NukeSystem : EntitySystem } _transform.SetCoordinates(uid, xform, xform.Coordinates.SnapToGrid()); - _transform.AnchorEntity(uid, xform); + _transform.AnchorEntity((uid, xform)); _itemSlots.SetLock(uid, component.DiskSlot, false); } @@ -490,7 +490,7 @@ public sealed class NukeSystem : EntitySystem if (!nukeXform.Anchored) { // Admin command shenanigans, just make sure. - _transform.AnchorEntity(uid, nukeXform); + _transform.AnchorEntity((uid, nukeXform)); } component.Status = NukeStatus.ARMED; diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs index 9e5f3bdcfc..4f419110d5 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs @@ -31,7 +31,7 @@ public sealed partial class DungeonJob if (reservedTiles.Contains(node)) continue; - + if (dunGen.TileMask is not null) { if (!dunGen.TileMask.Contains(((ContentTileDefinition) _tileDefManager[tileRef.Value.Tile.TypeId]).ID)) @@ -59,7 +59,7 @@ public sealed partial class DungeonJob if (!xform.Comp.Anchored) { - _transform.AnchorEntity(ent, xform); + _transform.AnchorEntity((ent, xform)); } // TODO: Engine bug with SpawnAtPosition diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs index fb0eaa0157..cf6a4e1794 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs @@ -94,7 +94,7 @@ public sealed partial class DungeonJob var xform = xformQuery.Get(ent); if (!xform.Comp.Anchored) - _transform.AnchorEntity(ent, xform); + _transform.AnchorEntity((ent, xform)); await SuspendDungeon(); if (!ValidateResume()) diff --git a/Content.Server/Procedural/DungeonSystem.Rooms.cs b/Content.Server/Procedural/DungeonSystem.Rooms.cs index f74868bb52..09aad2de1f 100644 --- a/Content.Server/Procedural/DungeonSystem.Rooms.cs +++ b/Content.Server/Procedural/DungeonSystem.Rooms.cs @@ -195,7 +195,7 @@ public sealed partial class DungeonSystem if (anchored && !childXform.Anchored) _transform.AnchorEntity((ent, childXform), (gridUid, grid)); else if (!anchored && childXform.Anchored) - _transform.Unanchor(ent, childXform); + _transform.Unanchor((ent, childXform)); } // Load decals diff --git a/Content.Server/Rotatable/RotatableSystem.cs b/Content.Server/Rotatable/RotatableSystem.cs index 63b5e44c3d..d516560ab9 100644 --- a/Content.Server/Rotatable/RotatableSystem.cs +++ b/Content.Server/Rotatable/RotatableSystem.cs @@ -21,6 +21,7 @@ namespace Content.Server.Rotatable [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly SharedInteractionSystem _interaction = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { @@ -112,7 +113,7 @@ namespace Content.Server.Rotatable var entity = EntityManager.SpawnEntity(component.MirrorEntity, oldTransform.Coordinates); var newTransform = EntityManager.GetComponent(entity); newTransform.LocalRotation = oldTransform.LocalRotation; - newTransform.Anchored = false; + _transform.Unanchor((entity, newTransform)); EntityManager.DeleteEntity(uid); } diff --git a/Content.Shared/Blocking/BlockingSystem.cs b/Content.Shared/Blocking/BlockingSystem.cs index 594d1baf6c..47f137032a 100644 --- a/Content.Shared/Blocking/BlockingSystem.cs +++ b/Content.Shared/Blocking/BlockingSystem.cs @@ -189,7 +189,7 @@ public sealed partial class BlockingSystem : EntitySystem } //Don't allow someone to block if they're somehow not anchored. - _transformSystem.AnchorEntity(user, xform); + _transformSystem.AnchorEntity((user, xform)); if (!xform.Anchored) { CantBlockError(user); @@ -259,7 +259,7 @@ public sealed partial class BlockingSystem : EntitySystem && TryComp(user, out var physicsComponent)) { if (xform.Anchored) - _transformSystem.Unanchor(user, xform); + _transformSystem.Unanchor((user, xform)); _actionsSystem.SetToggled(component.BlockingToggleActionEntity, false); _fixtureSystem.DestroyFixture(user, BlockingComponent.BlockFixtureID, body: physicsComponent); diff --git a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs index 9c3d6fc9fb..183727775e 100644 --- a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs +++ b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs @@ -114,7 +114,7 @@ public sealed partial class AnchorableSystem : EntitySystem var xform = Transform(uid); RaiseLocalEvent(uid, new BeforeUnanchoredEvent(args.User, used)); - _transformSystem.Unanchor(uid, xform); + _transformSystem.Unanchor((uid, xform)); RaiseLocalEvent(uid, new UserUnanchoredEvent(args.User, used)); _popup.PopupClient(Loc.GetString("anchorable-unanchored"), uid, args.User); @@ -165,7 +165,7 @@ public sealed partial class AnchorableSystem : EntitySystem RaiseLocalEvent(uid, new BeforeAnchoredEvent(args.User, used)); if (!xform.Anchored) - _transformSystem.AnchorEntity(uid, xform); + _transformSystem.AnchorEntity((uid, xform)); RaiseLocalEvent(uid, new UserAnchoredEvent(args.User, used)); diff --git a/Content.Shared/Construction/SharedConstructionSystem.cs b/Content.Shared/Construction/SharedConstructionSystem.cs index a2b647ae92..6d09b131d4 100644 --- a/Content.Shared/Construction/SharedConstructionSystem.cs +++ b/Content.Shared/Construction/SharedConstructionSystem.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Construction { public abstract class SharedConstructionSystem : EntitySystem { - [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] protected readonly IMapManager MapManager = default!; [Dependency] protected readonly IPrototypeManager PrototypeManager = default!; [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; @@ -20,7 +20,7 @@ namespace Content.Shared.Construction if (!canBuildInImpassable) return null; - if (!_mapManager.TryFindGridAt(coords, out _, out var grid)) + if (!MapManager.TryFindGridAt(coords, out _, out var grid)) return null; var ignored = grid.GetAnchoredEntities(coords).ToHashSet(); diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs index 0be5646f4b..35eef77be3 100644 --- a/Content.Shared/Magic/SharedMagicSystem.cs +++ b/Content.Shared/Magic/SharedMagicSystem.cs @@ -546,7 +546,7 @@ public abstract class SharedMagicSystem : EntitySystem var xform = Transform(ev.Target); var fixture = fixtures.Fixtures.First(); - _transform.Unanchor(ev.Target); + _transform.Unanchor((ev.Target, xform)); _physics.SetCanCollide(ev.Target, true, true, false, fixtures, physics); _physics.SetCollisionMask(ev.Target, fixture.Key, fixture.Value, (int)CollisionGroup.FlyingMobMask, fixtures, physics); _physics.SetCollisionLayer(ev.Target, fixture.Key, fixture.Value, (int)CollisionGroup.FlyingMobLayer, fixtures, physics); diff --git a/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs index 99737996b0..0d2641ae6b 100644 --- a/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs +++ b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs @@ -146,7 +146,7 @@ public abstract class SharedChameleonProjectorSystem : EntitySystem var xform = Transform(uid); if (xform.Anchored) - _xform.Unanchor(uid, xform); + _xform.Unanchor((uid, xform)); else _xform.AnchorEntity((uid, xform)); @@ -241,7 +241,7 @@ public abstract class SharedChameleonProjectorSystem : EntitySystem var xform = Transform(ent); xform.NoLocalRotation = false; - _xform.Unanchor(ent, xform); + _xform.Unanchor((ent, xform)); Del(ent.Comp.Disguise); RemComp(ent); diff --git a/Content.Shared/Security/Systems/DeployableBarrierSystem.cs b/Content.Shared/Security/Systems/DeployableBarrierSystem.cs index 622edc4b62..4aed7b8730 100644 --- a/Content.Shared/Security/Systems/DeployableBarrierSystem.cs +++ b/Content.Shared/Security/Systems/DeployableBarrierSystem.cs @@ -43,13 +43,13 @@ public sealed class DeployableBarrierSystem : EntitySystem if (isDeployed && transform.GridUid != null) { - _transform.AnchorEntity(uid, transform); + _transform.AnchorEntity((uid, transform)); if (fixture != null) _physics.SetHard(uid, fixture, true); } else { - _transform.Unanchor(uid, transform); + _transform.Unanchor((uid, transform)); if (fixture != null) _physics.SetHard(uid, fixture, false); } diff --git a/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs b/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs index 7886356233..20857770c7 100644 --- a/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs +++ b/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs @@ -47,7 +47,7 @@ public sealed class MeleeThrowOnHitSystem : EntitySystem if (comp.UnanchorOnHit && HasComp(hit)) { - _transform.Unanchor(hit, Transform(hit)); + _transform.Unanchor((hit, Transform(hit))); } RemComp(hit); diff --git a/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs b/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs index 3d7f9df458..49096bfbdc 100644 --- a/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs @@ -207,7 +207,7 @@ public abstract partial class SharedTetherGunSystem : EntitySystem _appearance.SetData(gunUid, ToggleableLightVisuals.Enabled, true, appearance); // Target updates - TransformSystem.Unanchor(target, targetXform); + TransformSystem.Unanchor((target, targetXform)); component.Tethered = target; var tethered = EnsureComp(target); _physics.SetBodyStatus(target, targetPhysics, BodyStatus.InAir, false); From fa35c9623d71aa2f1bca21fcbf6e61605c33af58 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 21 Feb 2025 00:12:12 +1100 Subject: [PATCH 099/155] Revert "Purge uses of TransformComponent.Anchored.set. Also adds parentheses." (#35332) --- Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs | 4 ++-- .../Administration/Systems/AdminVerbSystem.Smites.cs | 4 ++-- .../Atmos/EntitySystems/PipeRestrictOverlapSystem.cs | 2 +- Content.Server/Cargo/Systems/CargoSystem.Orders.cs | 2 +- Content.Server/Construction/Completions/SetAnchor.cs | 4 ++-- Content.Server/Construction/ConstructionSystem.Graph.cs | 2 +- Content.Server/Defusable/Systems/DefusableSystem.cs | 4 ++-- Content.Server/Explosion/EntitySystems/TriggerSystem.cs | 2 +- Content.Server/Holosign/HolosignSystem.cs | 2 +- Content.Server/Nuke/NukeSystem.cs | 6 +++--- .../Procedural/DungeonJob/DungeonJob.PostGenBiome.cs | 4 ++-- .../DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs | 2 +- Content.Server/Procedural/DungeonSystem.Rooms.cs | 2 +- Content.Server/Rotatable/RotatableSystem.cs | 3 +-- Content.Shared/Blocking/BlockingSystem.cs | 4 ++-- .../Construction/EntitySystems/AnchorableSystem.cs | 4 ++-- Content.Shared/Construction/SharedConstructionSystem.cs | 4 ++-- Content.Shared/Magic/SharedMagicSystem.cs | 2 +- .../Polymorph/Systems/SharedChameleonProjectorSystem.cs | 4 ++-- Content.Shared/Security/Systems/DeployableBarrierSystem.cs | 4 ++-- Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs | 2 +- Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs | 2 +- 22 files changed, 34 insertions(+), 35 deletions(-) diff --git a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs index 8c087fcb25..9109fdbe4f 100644 --- a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs +++ b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs @@ -181,14 +181,14 @@ namespace Content.IntegrationTests.Tests.Disposal }); // Can't insert, unanchored and unpowered - xformSystem.Unanchor((unitUid, entityManager.GetComponent(unitUid))); + xformSystem.Unanchor(unitUid, entityManager.GetComponent(unitUid)); UnitInsertContains(disposalUnit, unitComponent, false, disposalSystem, human, wrench, disposalUnit, disposalTrunk); }); await server.WaitAssertion(() => { // Anchor the disposal unit - xformSystem.AnchorEntity((unitUid, entityManager.GetComponent(unitUid))); + xformSystem.AnchorEntity(unitUid, entityManager.GetComponent(unitUid)); // No power Assert.That(unitComponent.Powered, Is.False); diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 4ea15ced85..ed46412a08 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -421,7 +421,7 @@ public sealed partial class AdminVerbSystem { var xform = Transform(args.Target); var fixtures = Comp(args.Target); - _transformSystem.Unanchor((args.Target, xform)); // Just in case. + xform.Anchored = false; // Just in case. _physics.SetBodyType(args.Target, BodyType.Dynamic, manager: fixtures, body: physics); _physics.SetBodyStatus(args.Target, physics, BodyStatus.InAir); _physics.WakeBody(args.Target, manager: fixtures, body: physics); @@ -456,7 +456,7 @@ public sealed partial class AdminVerbSystem { var xform = Transform(args.Target); var fixtures = Comp(args.Target); - _transformSystem.Unanchor((args.Target, xform)); + xform.Anchored = false; // Just in case. _physics.SetBodyType(args.Target, BodyType.Dynamic, body: physics); _physics.SetBodyStatus(args.Target, physics, BodyStatus.InAir); diff --git a/Content.Server/Atmos/EntitySystems/PipeRestrictOverlapSystem.cs b/Content.Server/Atmos/EntitySystems/PipeRestrictOverlapSystem.cs index 032e863893..c2ff87ca79 100644 --- a/Content.Server/Atmos/EntitySystems/PipeRestrictOverlapSystem.cs +++ b/Content.Server/Atmos/EntitySystems/PipeRestrictOverlapSystem.cs @@ -40,7 +40,7 @@ public sealed class PipeRestrictOverlapSystem : EntitySystem if (HasComp(ent) && CheckOverlap(ent)) { _popup.PopupEntity(Loc.GetString("pipe-restrict-overlap-popup-blocked", ("pipe", ent.Owner)), ent); - _xform.Unanchor((ent, Transform(ent))); + _xform.Unanchor(ent, Transform(ent)); } } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index 9a8480dd3a..2c86a5590a 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -522,7 +522,7 @@ namespace Content.Server.Cargo.Systems var item = Spawn(order.ProductId, spawn); // Ensure the item doesn't start anchored - _transformSystem.Unanchor((item, Transform(item))); + _transformSystem.Unanchor(item, Transform(item)); // Create a sheet of paper to write the order details on var printed = EntityManager.SpawnEntity(paperProto, spawn); diff --git a/Content.Server/Construction/Completions/SetAnchor.cs b/Content.Server/Construction/Completions/SetAnchor.cs index b82db0339b..989ecc99bd 100644 --- a/Content.Server/Construction/Completions/SetAnchor.cs +++ b/Content.Server/Construction/Completions/SetAnchor.cs @@ -11,8 +11,8 @@ namespace Content.Server.Construction.Completions public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { - var transformSystem = entityManager.System(); - transformSystem.TrySetAnchor(uid, Value); + var transform = entityManager.GetComponent(uid); + transform.Anchored = Value; } } } diff --git a/Content.Server/Construction/ConstructionSystem.Graph.cs b/Content.Server/Construction/ConstructionSystem.Graph.cs index fb513b6f6b..4c73cef703 100644 --- a/Content.Server/Construction/ConstructionSystem.Graph.cs +++ b/Content.Server/Construction/ConstructionSystem.Graph.cs @@ -364,7 +364,7 @@ namespace Content.Server.Construction var newTransform = Transform(newUid); TransformSystem.AttachToGridOrMap(newUid, newTransform); // in case in hands or a container newTransform.LocalRotation = transform.LocalRotation; - TransformSystem.SetAnchor((newUid, newTransform), transform.Anchored); + newTransform.Anchored = transform.Anchored; // Container transferring. if (containerManager != null) diff --git a/Content.Server/Defusable/Systems/DefusableSystem.cs b/Content.Server/Defusable/Systems/DefusableSystem.cs index 58a08bf91d..1e9caece94 100644 --- a/Content.Server/Defusable/Systems/DefusableSystem.cs +++ b/Content.Server/Defusable/Systems/DefusableSystem.cs @@ -133,7 +133,7 @@ public sealed class DefusableSystem : SharedDefusableSystem var xform = Transform(uid); if (!xform.Anchored) - _transform.AnchorEntity((uid, xform)); + _transform.AnchorEntity(uid, xform); SetBolt(comp, true); SetActivated(comp, true); @@ -203,7 +203,7 @@ public sealed class DefusableSystem : SharedDefusableSystem comp.Bolted = false; if (xform.Anchored) - _transform.Unanchor((uid, xform)); + _transform.Unanchor(uid, xform); _appearance.SetData(uid, DefusableVisuals.Active, comp.Activated); } diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 8db161eeb6..53f6dfacf8 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -149,7 +149,7 @@ namespace Content.Server.Explosion.EntitySystems if (xform.Anchored) return; - _transformSystem.AnchorEntity((uid, xform)); + _transformSystem.AnchorEntity(uid, xform); if (component.RemoveOnTrigger) RemCompDeferred(uid); diff --git a/Content.Server/Holosign/HolosignSystem.cs b/Content.Server/Holosign/HolosignSystem.cs index 13886ac69f..b63a545989 100644 --- a/Content.Server/Holosign/HolosignSystem.cs +++ b/Content.Server/Holosign/HolosignSystem.cs @@ -54,7 +54,7 @@ public sealed class HolosignSystem : EntitySystem var holoUid = EntityManager.SpawnEntity(component.SignProto, args.ClickLocation.SnapToGrid(EntityManager)); var xform = Transform(holoUid); if (!xform.Anchored) - _transform.AnchorEntity((holoUid, xform)); // anchor to prevent any tempering with (don't know what could even interact with it) + _transform.AnchorEntity(holoUid, xform); // anchor to prevent any tempering with (don't know what could even interact with it) args.Handled = true; } diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs index 9c0b14ea4e..84118931b1 100644 --- a/Content.Server/Nuke/NukeSystem.cs +++ b/Content.Server/Nuke/NukeSystem.cs @@ -181,7 +181,7 @@ public sealed class NukeSystem : EntitySystem var xform = Transform(uid); if (xform.Anchored) { - _transform.Unanchor((uid, xform)); + _transform.Unanchor(uid, xform); _itemSlots.SetLock(uid, component.DiskSlot, true); } else @@ -203,7 +203,7 @@ public sealed class NukeSystem : EntitySystem } _transform.SetCoordinates(uid, xform, xform.Coordinates.SnapToGrid()); - _transform.AnchorEntity((uid, xform)); + _transform.AnchorEntity(uid, xform); _itemSlots.SetLock(uid, component.DiskSlot, false); } @@ -490,7 +490,7 @@ public sealed class NukeSystem : EntitySystem if (!nukeXform.Anchored) { // Admin command shenanigans, just make sure. - _transform.AnchorEntity((uid, nukeXform)); + _transform.AnchorEntity(uid, nukeXform); } component.Status = NukeStatus.ARMED; diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs index 4f419110d5..9e5f3bdcfc 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs @@ -31,7 +31,7 @@ public sealed partial class DungeonJob if (reservedTiles.Contains(node)) continue; - + if (dunGen.TileMask is not null) { if (!dunGen.TileMask.Contains(((ContentTileDefinition) _tileDefManager[tileRef.Value.Tile.TypeId]).ID)) @@ -59,7 +59,7 @@ public sealed partial class DungeonJob if (!xform.Comp.Anchored) { - _transform.AnchorEntity((ent, xform)); + _transform.AnchorEntity(ent, xform); } // TODO: Engine bug with SpawnAtPosition diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs index cf6a4e1794..fb0eaa0157 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiomeMarkerLayer.cs @@ -94,7 +94,7 @@ public sealed partial class DungeonJob var xform = xformQuery.Get(ent); if (!xform.Comp.Anchored) - _transform.AnchorEntity((ent, xform)); + _transform.AnchorEntity(ent, xform); await SuspendDungeon(); if (!ValidateResume()) diff --git a/Content.Server/Procedural/DungeonSystem.Rooms.cs b/Content.Server/Procedural/DungeonSystem.Rooms.cs index 09aad2de1f..f74868bb52 100644 --- a/Content.Server/Procedural/DungeonSystem.Rooms.cs +++ b/Content.Server/Procedural/DungeonSystem.Rooms.cs @@ -195,7 +195,7 @@ public sealed partial class DungeonSystem if (anchored && !childXform.Anchored) _transform.AnchorEntity((ent, childXform), (gridUid, grid)); else if (!anchored && childXform.Anchored) - _transform.Unanchor((ent, childXform)); + _transform.Unanchor(ent, childXform); } // Load decals diff --git a/Content.Server/Rotatable/RotatableSystem.cs b/Content.Server/Rotatable/RotatableSystem.cs index d516560ab9..63b5e44c3d 100644 --- a/Content.Server/Rotatable/RotatableSystem.cs +++ b/Content.Server/Rotatable/RotatableSystem.cs @@ -21,7 +21,6 @@ namespace Content.Server.Rotatable [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly SharedInteractionSystem _interaction = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { @@ -113,7 +112,7 @@ namespace Content.Server.Rotatable var entity = EntityManager.SpawnEntity(component.MirrorEntity, oldTransform.Coordinates); var newTransform = EntityManager.GetComponent(entity); newTransform.LocalRotation = oldTransform.LocalRotation; - _transform.Unanchor((entity, newTransform)); + newTransform.Anchored = false; EntityManager.DeleteEntity(uid); } diff --git a/Content.Shared/Blocking/BlockingSystem.cs b/Content.Shared/Blocking/BlockingSystem.cs index 47f137032a..594d1baf6c 100644 --- a/Content.Shared/Blocking/BlockingSystem.cs +++ b/Content.Shared/Blocking/BlockingSystem.cs @@ -189,7 +189,7 @@ public sealed partial class BlockingSystem : EntitySystem } //Don't allow someone to block if they're somehow not anchored. - _transformSystem.AnchorEntity((user, xform)); + _transformSystem.AnchorEntity(user, xform); if (!xform.Anchored) { CantBlockError(user); @@ -259,7 +259,7 @@ public sealed partial class BlockingSystem : EntitySystem && TryComp(user, out var physicsComponent)) { if (xform.Anchored) - _transformSystem.Unanchor((user, xform)); + _transformSystem.Unanchor(user, xform); _actionsSystem.SetToggled(component.BlockingToggleActionEntity, false); _fixtureSystem.DestroyFixture(user, BlockingComponent.BlockFixtureID, body: physicsComponent); diff --git a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs index 183727775e..9c3d6fc9fb 100644 --- a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs +++ b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs @@ -114,7 +114,7 @@ public sealed partial class AnchorableSystem : EntitySystem var xform = Transform(uid); RaiseLocalEvent(uid, new BeforeUnanchoredEvent(args.User, used)); - _transformSystem.Unanchor((uid, xform)); + _transformSystem.Unanchor(uid, xform); RaiseLocalEvent(uid, new UserUnanchoredEvent(args.User, used)); _popup.PopupClient(Loc.GetString("anchorable-unanchored"), uid, args.User); @@ -165,7 +165,7 @@ public sealed partial class AnchorableSystem : EntitySystem RaiseLocalEvent(uid, new BeforeAnchoredEvent(args.User, used)); if (!xform.Anchored) - _transformSystem.AnchorEntity((uid, xform)); + _transformSystem.AnchorEntity(uid, xform); RaiseLocalEvent(uid, new UserAnchoredEvent(args.User, used)); diff --git a/Content.Shared/Construction/SharedConstructionSystem.cs b/Content.Shared/Construction/SharedConstructionSystem.cs index 6d09b131d4..a2b647ae92 100644 --- a/Content.Shared/Construction/SharedConstructionSystem.cs +++ b/Content.Shared/Construction/SharedConstructionSystem.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Construction { public abstract class SharedConstructionSystem : EntitySystem { - [Dependency] protected readonly IMapManager MapManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] protected readonly IPrototypeManager PrototypeManager = default!; [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; @@ -20,7 +20,7 @@ namespace Content.Shared.Construction if (!canBuildInImpassable) return null; - if (!MapManager.TryFindGridAt(coords, out _, out var grid)) + if (!_mapManager.TryFindGridAt(coords, out _, out var grid)) return null; var ignored = grid.GetAnchoredEntities(coords).ToHashSet(); diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs index 35eef77be3..0be5646f4b 100644 --- a/Content.Shared/Magic/SharedMagicSystem.cs +++ b/Content.Shared/Magic/SharedMagicSystem.cs @@ -546,7 +546,7 @@ public abstract class SharedMagicSystem : EntitySystem var xform = Transform(ev.Target); var fixture = fixtures.Fixtures.First(); - _transform.Unanchor((ev.Target, xform)); + _transform.Unanchor(ev.Target); _physics.SetCanCollide(ev.Target, true, true, false, fixtures, physics); _physics.SetCollisionMask(ev.Target, fixture.Key, fixture.Value, (int)CollisionGroup.FlyingMobMask, fixtures, physics); _physics.SetCollisionLayer(ev.Target, fixture.Key, fixture.Value, (int)CollisionGroup.FlyingMobLayer, fixtures, physics); diff --git a/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs index 0d2641ae6b..99737996b0 100644 --- a/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs +++ b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs @@ -146,7 +146,7 @@ public abstract class SharedChameleonProjectorSystem : EntitySystem var xform = Transform(uid); if (xform.Anchored) - _xform.Unanchor((uid, xform)); + _xform.Unanchor(uid, xform); else _xform.AnchorEntity((uid, xform)); @@ -241,7 +241,7 @@ public abstract class SharedChameleonProjectorSystem : EntitySystem var xform = Transform(ent); xform.NoLocalRotation = false; - _xform.Unanchor((ent, xform)); + _xform.Unanchor(ent, xform); Del(ent.Comp.Disguise); RemComp(ent); diff --git a/Content.Shared/Security/Systems/DeployableBarrierSystem.cs b/Content.Shared/Security/Systems/DeployableBarrierSystem.cs index 4aed7b8730..622edc4b62 100644 --- a/Content.Shared/Security/Systems/DeployableBarrierSystem.cs +++ b/Content.Shared/Security/Systems/DeployableBarrierSystem.cs @@ -43,13 +43,13 @@ public sealed class DeployableBarrierSystem : EntitySystem if (isDeployed && transform.GridUid != null) { - _transform.AnchorEntity((uid, transform)); + _transform.AnchorEntity(uid, transform); if (fixture != null) _physics.SetHard(uid, fixture, true); } else { - _transform.Unanchor((uid, transform)); + _transform.Unanchor(uid, transform); if (fixture != null) _physics.SetHard(uid, fixture, false); } diff --git a/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs b/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs index 20857770c7..7886356233 100644 --- a/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs +++ b/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs @@ -47,7 +47,7 @@ public sealed class MeleeThrowOnHitSystem : EntitySystem if (comp.UnanchorOnHit && HasComp(hit)) { - _transform.Unanchor((hit, Transform(hit))); + _transform.Unanchor(hit, Transform(hit)); } RemComp(hit); diff --git a/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs b/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs index 49096bfbdc..3d7f9df458 100644 --- a/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs @@ -207,7 +207,7 @@ public abstract partial class SharedTetherGunSystem : EntitySystem _appearance.SetData(gunUid, ToggleableLightVisuals.Enabled, true, appearance); // Target updates - TransformSystem.Unanchor((target, targetXform)); + TransformSystem.Unanchor(target, targetXform); component.Tethered = target; var tethered = EnsureComp(target); _physics.SetBodyStatus(target, targetPhysics, BodyStatus.InAir, false); From 580f908ca20eb9f51544ebf24437438b580c8ec1 Mon Sep 17 00:00:00 2001 From: Zokkie <6126135+Zokkie@users.noreply.github.com> Date: Thu, 20 Feb 2025 17:12:55 +0100 Subject: [PATCH 100/155] Fix to make all corpses butcher able and better disposable (#33727) * Made all corpses disposable. Argocytes, Mimics, Butterflies, Bees, Space Kangaroos, Laser Raptors and Watchers their corpses can now be butchered. * Accidentally removed a line break. restored it. * Removed a dash that did not belong there. * Changed mimic giving a "Changeling Sting Can" when butchered instead of normal meat. --- .../Prototypes/Entities/Mobs/NPCs/animals.yml | 29 +++++++++++ .../Entities/Mobs/NPCs/argocyte.yml | 50 +++++++++++++++++++ .../Entities/Mobs/NPCs/lavaland.yml | 4 ++ .../Prototypes/Entities/Mobs/NPCs/mimic.yml | 4 ++ .../Entities/Mobs/NPCs/miscellaneous.yml | 6 ++- .../Prototypes/Entities/Mobs/NPCs/space.yml | 4 ++ 6 files changed, 96 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index aaca896175..2290269adf 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -107,6 +107,17 @@ Base: dead Dead: Base: dead + - type: Extractable + grindableSolutionName: food + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: GroundBee + Quantity: 1 + - type: Butcherable + spawned: + - id: null # Should give nothing when you butcher it so we set the item id it needs to spawn to null - type: Item size: Tiny - type: Tag @@ -114,6 +125,7 @@ - Bee - Trash - type: Bloodstream + bloodReagent: InsectBlood bloodMaxVolume: 0.1 - type: MobPrice price: 50 @@ -771,7 +783,24 @@ Base: dead Dead: Base: dead + - type: Extractable + grindableSolutionName: food + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 1 + - type: Butcherable + spawned: + - id: null # Should give nothing when you butcher it so we set the item id it needs to spawn to null + - type: Item + size: Tiny + - type: Tag + tags: + - Trash - type: Bloodstream + bloodReagent: InsectBlood bloodMaxVolume: 0.1 - type: MobPrice price: 50 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml b/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml index 3b6c4e8ed9..36ddf71d4b 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml @@ -74,6 +74,10 @@ thresholds: 0: Alive 30: Dead + - type: Butcherable + spawned: + - id: FoodMeatXeno + amount: 1 - type: MovementSpeedModifier baseSprintSpeed : 3.5 baseWalkSpeed : 3 @@ -104,6 +108,10 @@ thresholds: 0: Alive 30: Dead + - type: Butcherable + spawned: + - id: FoodMeatXeno + amount: 1 - type: Fixtures fixtures: fix1: @@ -140,6 +148,10 @@ thresholds: 0: Alive 30: Dead + - type: Butcherable + spawned: + - id: FoodMeatXeno + amount: 1 - type: Fixtures fixtures: fix1: @@ -176,6 +188,10 @@ thresholds: 0: Alive 60: Dead + - type: Butcherable + spawned: + - id: FoodMeatXeno + amount: 2 - type: MovementSpeedModifier baseSprintSpeed : 5 @@ -198,6 +214,10 @@ thresholds: 0: Alive 100: Dead + - type: Butcherable + spawned: + - id: FoodMeatXeno + amount: 2 - type: MovementSpeedModifier baseSprintSpeed : 4 baseWalkSpeed : 3.5 @@ -221,6 +241,10 @@ thresholds: 0: Alive 100: Dead + - type: Butcherable + spawned: + - id: FoodMeatXeno + amount: 2 - type: MeleeWeapon damage: types: @@ -246,6 +270,10 @@ thresholds: 0: Alive 100: Dead + - type: Butcherable + spawned: + - id: FoodMeatXeno + amount: 2 - type: MeleeWeapon damage: types: @@ -274,6 +302,10 @@ thresholds: 0: Alive 150: Dead + - type: Butcherable + spawned: + - id: FoodMeatXeno + amount: 2 - type: MeleeWeapon damage: types: @@ -301,6 +333,10 @@ thresholds: 0: Alive 150: Dead + - type: Butcherable + spawned: + - id: FoodMeatXeno + amount: 2 - type: MeleeWeapon damage: types: @@ -330,6 +366,10 @@ thresholds: 0: Alive 300: Dead + - type: Butcherable + spawned: + - id: FoodMeatXeno + amount: 3 - type: MeleeWeapon damage: types: @@ -356,6 +396,11 @@ Base: founder Dead: Base: founder_dead + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeatXeno + amount: 5 - type: Fixtures fixtures: fix1: @@ -397,6 +442,11 @@ Base: leviathing Dead: Base: leviathing_dead + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeatXeno + amount: 10 - type: Fixtures fixtures: fix1: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml b/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml index 7571d8c8f4..7d6c28fc95 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/lavaland.yml @@ -43,6 +43,10 @@ thresholds: 0: Alive 50: Dead + - type: Butcherable + spawned: + - id: DiamondOre1 + amount: 1 - type: MovementSpeedModifier baseWalkSpeed: 5 baseSprintSpeed: 7 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml index 6ef65cc1ae..829bbe4bf1 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml @@ -40,3 +40,7 @@ - type: MovementSpeedModifier baseWalkSpeed : 1 baseSprintSpeed : 1 + - type: Butcherable + spawned: + - id: DrinkChangelingStingCan + amount: 1 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml index f10d03886a..cdd90611f7 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml @@ -37,6 +37,10 @@ thresholds: 0: Alive 100: Dead + - type: Butcherable + spawned: + - id: FoodMeatChicken + amount: 2 - type: MovementSpeedModifier baseWalkSpeed: 2 baseSprintSpeed: 5 @@ -220,4 +224,4 @@ types: Blunt: 0.11 - type: StaticPrice - price: 400 \ No newline at end of file + price: 400 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index 6f6fa6afb3..7c549e484d 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -167,6 +167,10 @@ collection: FootstepBounce - type: ReplacementAccent accent: kangaroo + - type: Butcherable + spawned: + - id: FoodMeat + amount: 1 - type: entity id: MobKangarooSpaceSalvage From 5e9e1518e521a6ab138304cf6800d8cee150a693 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 20 Feb 2025 16:14:06 +0000 Subject: [PATCH 101/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 07e52473a0..a08e41925e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can no longer FTL the station. - type: Fix - id: 7485 - time: '2024-10-04T02:55:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32558 - author: SoulFN changes: - message: Dragon can now pull things using tail. @@ -3892,3 +3885,15 @@ id: 7984 time: '2025-02-20T01:12:07.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33449 +- author: Zokkie + changes: + - message: Argocytes, Mimics, Butterflies, Bees, Space Kangaroos, Laser Raptors + and Watchers their corpses can now be butchered. + type: Fix + - message: Butterflies can now be picked up and can also be put into trash bags. + type: Fix + - message: You can now grind Butterflies and Bees in the reagent grinder. + type: Fix + id: 7985 + time: '2025-02-20T16:12:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33727 From abb20c0256b933f787069fbc30c82cf8ee9bc8eb Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 21 Feb 2025 03:51:01 +1100 Subject: [PATCH 102/155] Remove storage hotbar GUI bandaid (#35054) * Remove storage hotbar GUI bandaid With BUI deferred opens it also happened to fix this issue which is nice. * Update Content.Client/Storage/StorageBoundUserInterface.cs --- .../Storage/StorageBoundUserInterface.cs | 7 ----- .../Systems/Storage/StorageUIController.cs | 28 ------------------- 2 files changed, 35 deletions(-) diff --git a/Content.Client/Storage/StorageBoundUserInterface.cs b/Content.Client/Storage/StorageBoundUserInterface.cs index 16545c3578..8cb415dead 100644 --- a/Content.Client/Storage/StorageBoundUserInterface.cs +++ b/Content.Client/Storage/StorageBoundUserInterface.cs @@ -92,12 +92,5 @@ public sealed class StorageBoundUserInterface : BoundUserInterface Show(); LayoutContainer.SetPosition(_window, position); } - - public void ReOpen() - { - _window?.Orphan(); - _window = null; - Open(); - } } diff --git a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs index dbb16ab24a..768a434d83 100644 --- a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs +++ b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs @@ -61,39 +61,11 @@ public sealed class StorageUIController : UIController, IOnSystemChanged(); - - foreach (var bui in uiSystem.GetActorUis((_player.LocalEntity.Value, userComp))) - { - if (!uiSystem.TryGetOpenUi(bui.Entity, StorageComponent.StorageUiKey.Key, out var storageBui)) - continue; - - storageBui.ReOpen(); - } - } - private void OnStorageWindowTitle(bool obj) { WindowTitle = obj; From 93021c4879a65f9a92b842bf67c01e923e7174ba Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 20 Feb 2025 16:52:12 +0000 Subject: [PATCH 103/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a08e41925e..8d5068bdcf 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: SoulFN - changes: - - message: Dragon can now pull things using tail. - type: Add - id: 7486 - time: '2024-10-04T05:39:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32568 - author: SaphireLattice changes: - message: Explosives throw a container they are in @@ -3897,3 +3890,10 @@ id: 7985 time: '2025-02-20T16:12:56.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33727 +- author: metalgearsloth + changes: + - message: Fix storage windows being duplicated when reconnecting. + type: Fix + id: 7986 + time: '2025-02-20T16:51:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35054 From 09f75394be7879d43b89f55005beec1301e7dcb4 Mon Sep 17 00:00:00 2001 From: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> Date: Thu, 20 Feb 2025 10:04:45 -0800 Subject: [PATCH 104/155] Require hwid (#35331) * Make cvar to require that the client has a modern hwid * Ignore guests and don't disable cvar on dev * Rename and add docs --- Content.Server.Database/Model.cs | 2 ++ Content.Server/Connection/ConnectionManager.cs | 5 +++++ Content.Shared/CCVar/CCVars.Admin.cs | 6 ++++++ Resources/Locale/en-US/connection-messages.ftl | 2 ++ 4 files changed, 15 insertions(+) diff --git a/Content.Server.Database/Model.cs b/Content.Server.Database/Model.cs index bd62bdda9b..88d0a582b2 100644 --- a/Content.Server.Database/Model.cs +++ b/Content.Server.Database/Model.cs @@ -987,6 +987,8 @@ namespace Content.Server.Database BabyJail = 4, /// Results from rejected connections with external API checking tools IPChecks = 5, + /// Results from rejected connections who are authenticated but have no modern hwid associated with them. + NoHwid = 6 } public class ServerBanHit diff --git a/Content.Server/Connection/ConnectionManager.cs b/Content.Server/Connection/ConnectionManager.cs index bc0f06de98..dbc43ac47a 100644 --- a/Content.Server/Connection/ConnectionManager.cs +++ b/Content.Server/Connection/ConnectionManager.cs @@ -220,6 +220,11 @@ namespace Content.Server.Connection var modernHwid = e.UserData.ModernHWIds; + if (modernHwid.Length == 0 && e.AuthType == LoginType.LoggedIn && _cfg.GetCVar(CCVars.RequireModernHardwareId)) + { + return (ConnectionDenyReason.NoHwid, Loc.GetString("hwid-required"), null); + } + var bans = await _db.GetServerBansAsync(addr, userId, hwId, modernHwid, includeUnbanned: false); if (bans.Count > 0) { diff --git a/Content.Shared/CCVar/CCVars.Admin.cs b/Content.Shared/CCVar/CCVars.Admin.cs index f05eb3376e..7f26106ff1 100644 --- a/Content.Shared/CCVar/CCVars.Admin.cs +++ b/Content.Shared/CCVar/CCVars.Admin.cs @@ -183,6 +183,12 @@ public sealed partial class CCVars public static readonly CVarDef BanHardwareIds = CVarDef.Create("ban.hardware_ids", true, CVar.SERVERONLY); + /// + /// Determines if we'll reject connections from clients who don't have a modern hwid. + /// + public static readonly CVarDef RequireModernHardwareId = + CVarDef.Create("admin.require_modern_hwid", true, CVar.SERVERONLY); + /// /// If true, players are allowed to connect to multiple game servers at once. /// If false, they will be kicked from the first when connecting to another. diff --git a/Resources/Locale/en-US/connection-messages.ftl b/Resources/Locale/en-US/connection-messages.ftl index 3d41049fd4..befe646676 100644 --- a/Resources/Locale/en-US/connection-messages.ftl +++ b/Resources/Locale/en-US/connection-messages.ftl @@ -60,3 +60,5 @@ generic-misconfigured = The server is misconfigured and is not accepting players ipintel-server-ratelimited = This server uses a security system with external verification, which has reached its maximum verification limit. Please contact the administration team of the server for assistance and try again later. ipintel-unknown = This server uses a security system with external verification, but it encountered an error. Please contact the administration team of the server for assistance and try again later. ipintel-suspicious = You seem to be connecting through a datacenter or VPN. For administrative reasons we do not allow VPN connections to play. Please contact the administration team of the server for assistance if you believe this is false. + +hwid-required = Your client has refused to send a hardware id. Please contact the administration team for further assistance. From 53c82ebdd6c0f3b902c17052f43b7c764e63226d Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 20 Feb 2025 20:24:21 +0100 Subject: [PATCH 105/155] 2 lines yaml cleanup (#35338) --- Resources/Prototypes/Magic/touch_spells.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Prototypes/Magic/touch_spells.yml b/Resources/Prototypes/Magic/touch_spells.yml index deb036f215..5e20bc2b2b 100644 --- a/Resources/Prototypes/Magic/touch_spells.yml +++ b/Resources/Prototypes/Magic/touch_spells.yml @@ -25,8 +25,6 @@ - type: entity id: ActionSmiteNoReq parent: ActionSmite - name: Smite - description: Instantly gibs a target. components: - type: Magic From ddeda2eb1552f2fdac7ff63c3ad88c861ab294a4 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 20 Feb 2025 20:28:15 +0100 Subject: [PATCH 106/155] fix migration.yml (#35339) https://github.com/space-wizards/space-station-14/pull/34293 --- Resources/migration.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Resources/migration.yml b/Resources/migration.yml index f53dc9fd32..9ac55bb789 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -549,3 +549,9 @@ FoodCondimentPacketFrostoil: FoodCondimentPacketColdsauce #2025-02-05 WeaponSubMachineGunVector: null WeaponSubMachineGunVectorRubber: null + +# 2025-02-20 +MagazineBoxAntiMaterielBig: null +MagazineBoxCaselessRifle10x24: null +MagazineBoxCaselessRifleBig: null +MagazinePistolHighCapacityRubber: null From a9054c5e9c8f595874c034abd14fc63b3831a411 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Thu, 20 Feb 2025 18:38:52 -0500 Subject: [PATCH 107/155] Mjollnir and Singularity Hammer for Wizard (#34446) --- .../Anomaly/SharedAnomalyCoreSystem.cs | 6 +- Content.Shared/Anomaly/SharedAnomalySystem.cs | 10 +- .../RepulseAttract/RepulseAttractComponent.cs | 38 +++ .../RepulseAttract/RepulseAttractSystem.cs | 78 ++++++ Content.Shared/Throwing/ThrowingSystem.cs | 22 +- Content.Shared/Timing/UseDelaySystem.cs | 7 +- .../Components/MeleeThrowOnHitComponent.cs | 95 ++----- .../Components/UseDelayOnMeleeHitComponent.cs | 12 + .../Weapons/Melee/MeleeThrowOnHitSystem.cs | 125 +++------ .../Weapons/Melee/UseDelayOnMeleeHitSystem.cs | 39 +++ .../Components/WieldableComponent.cs | 8 +- .../Wieldable/SharedWieldableSystem.cs | 11 +- .../Locale/en-US/store/spellbook-catalog.ftl | 6 + .../Prototypes/Catalog/spellbook_catalog.yml | 26 ++ .../Objects/Specific/Research/anomaly.yml | 1 - .../Objects/Weapons/Melee/hammers.yml | 109 ++++++++ .../Objects/Weapons/Melee/sledgehammer.yml | 25 -- .../Weapons/Melee/mjollnir.rsi/icon.png | Bin 0 -> 1297 bytes .../Melee/mjollnir.rsi/inhand-left.png | Bin 0 -> 686 bytes .../Melee/mjollnir.rsi/inhand-right.png | Bin 0 -> 681 bytes .../Weapons/Melee/mjollnir.rsi/meta.json | 42 +++ .../mjollnir.rsi/wielded-inhand-left.png | Bin 0 -> 695 bytes .../mjollnir.rsi/wielded-inhand-right.png | Bin 0 -> 684 bytes .../Melee/singularityhammer.rsi/icon.png | Bin 0 -> 2836 bytes .../singularityhammer.rsi/inhand-left.png | Bin 0 -> 4596 bytes .../singularityhammer.rsi/inhand-right.png | Bin 0 -> 4704 bytes .../Melee/singularityhammer.rsi/meta.json | 244 ++++++++++++++++++ .../wielded-inhand-left.png | Bin 0 -> 6297 bytes .../wielded-inhand-right.png | Bin 0 -> 6401 bytes 29 files changed, 698 insertions(+), 206 deletions(-) create mode 100644 Content.Shared/RepulseAttract/RepulseAttractComponent.cs create mode 100644 Content.Shared/RepulseAttract/RepulseAttractSystem.cs create mode 100644 Content.Shared/Weapons/Melee/Components/UseDelayOnMeleeHitComponent.cs create mode 100644 Content.Shared/Weapons/Melee/UseDelayOnMeleeHitSystem.cs create mode 100644 Resources/Prototypes/Entities/Objects/Weapons/Melee/hammers.yml delete mode 100644 Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml create mode 100644 Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/icon.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/meta.json create mode 100644 Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/wielded-inhand-left.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/wielded-inhand-right.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/icon.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/meta.json create mode 100644 Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/wielded-inhand-left.png create mode 100644 Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/wielded-inhand-right.png diff --git a/Content.Shared/Anomaly/SharedAnomalyCoreSystem.cs b/Content.Shared/Anomaly/SharedAnomalyCoreSystem.cs index f4864a532b..70735dbb40 100644 --- a/Content.Shared/Anomaly/SharedAnomalyCoreSystem.cs +++ b/Content.Shared/Anomaly/SharedAnomalyCoreSystem.cs @@ -36,9 +36,9 @@ public sealed class SharedAnomalyCoreSystem : EntitySystem var (uid, comp) = ent; // don't waste charges on non-anchorable non-anomalous static bodies. - if (!HasComp(args.Hit) - && !HasComp(args.Hit) - && TryComp(args.Hit, out var body) + if (!HasComp(args.Target) + && !HasComp(args.Target) + && TryComp(args.Target, out var body) && body.BodyType == BodyType.Static) return; diff --git a/Content.Shared/Anomaly/SharedAnomalySystem.cs b/Content.Shared/Anomaly/SharedAnomalySystem.cs index 05e12d406e..3f8da9e3c8 100644 --- a/Content.Shared/Anomaly/SharedAnomalySystem.cs +++ b/Content.Shared/Anomaly/SharedAnomalySystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Anomaly.Prototypes; using Content.Shared.Database; using Content.Shared.Physics; using Content.Shared.Popups; +using Content.Shared.Throwing; using Content.Shared.Weapons.Melee.Components; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; @@ -41,19 +42,22 @@ public abstract class SharedAnomalySystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnAnomalyThrowStart); - SubscribeLocalEvent(OnAnomalyThrowEnd); + SubscribeLocalEvent(OnLand); } private void OnAnomalyThrowStart(Entity ent, ref MeleeThrowOnHitStartEvent args) { - if (!TryComp(args.Used, out var corePowered) || !TryComp(ent, out var body)) + if (!TryComp(args.Weapon, out var corePowered) || !TryComp(ent, out var body)) return; + + // anomalies are static by default, so we have set them to dynamic to be throwable _physics.SetBodyType(ent, BodyType.Dynamic, body: body); ChangeAnomalyStability(ent, Random.NextFloat(corePowered.StabilityPerThrow.X, corePowered.StabilityPerThrow.Y), ent.Comp); } - private void OnAnomalyThrowEnd(Entity ent, ref MeleeThrowOnHitEndEvent args) + private void OnLand(Entity ent, ref LandEvent args) { + // revert back to static _physics.SetBodyType(ent, BodyType.Static); } diff --git a/Content.Shared/RepulseAttract/RepulseAttractComponent.cs b/Content.Shared/RepulseAttract/RepulseAttractComponent.cs new file mode 100644 index 0000000000..c167d81ec6 --- /dev/null +++ b/Content.Shared/RepulseAttract/RepulseAttractComponent.cs @@ -0,0 +1,38 @@ +using Content.Shared.Physics; +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.RepulseAttract; + +/// +/// Used to repulse or attract entities away from the entity this is on +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(RepulseAttractSystem))] +public sealed partial class RepulseAttractComponent : Component +{ + /// + /// How fast should the Repulsion/Attraction be? + /// A positive value will repulse objects, a negative value will attract + /// + [DataField, AutoNetworkedField] + public float Speed = 5.0f; + + /// + /// How close do the entities need to be? + /// + [DataField, AutoNetworkedField] + public float Range = 5.0f; + + /// + /// What kind of entities should this effect apply to? + /// + [DataField, AutoNetworkedField] + public EntityWhitelist? Whitelist; + + /// + /// What collision layers should be excluded? + /// The default excludes ghost mobs, revenants, the AI camera etc. + /// + [DataField, AutoNetworkedField] + public CollisionGroup CollisionMask = CollisionGroup.GhostImpassable; +} diff --git a/Content.Shared/RepulseAttract/RepulseAttractSystem.cs b/Content.Shared/RepulseAttract/RepulseAttractSystem.cs new file mode 100644 index 0000000000..9363d7bbec --- /dev/null +++ b/Content.Shared/RepulseAttract/RepulseAttractSystem.cs @@ -0,0 +1,78 @@ +using Content.Shared.Physics; +using Content.Shared.Throwing; +using Content.Shared.Timing; +using Content.Shared.Weapons.Melee.Events; +using Content.Shared.Whitelist; +using Content.Shared.Wieldable; +using Robust.Shared.Map; +using Robust.Shared.Physics.Components; +using System.Numerics; +using Content.Shared.Weapons.Melee; + +namespace Content.Shared.RepulseAttract; + +public sealed class RepulseAttractSystem : EntitySystem +{ + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly ThrowingSystem _throw = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + [Dependency] private readonly SharedTransformSystem _xForm = default!; + [Dependency] private readonly UseDelaySystem _delay = default!; + + private EntityQuery _physicsQuery; + private HashSet _entSet = new(); + public override void Initialize() + { + base.Initialize(); + + _physicsQuery = GetEntityQuery(); + + SubscribeLocalEvent(OnMeleeAttempt, before: [typeof(UseDelayOnMeleeHitSystem)], after: [typeof(SharedWieldableSystem)]); + } + private void OnMeleeAttempt(Entity ent, ref MeleeHitEvent args) + { + if (_delay.IsDelayed(ent.Owner)) + return; + + TryRepulseAttract(ent, args.User); + } + + public bool TryRepulseAttract(Entity ent, EntityUid user) + { + var position = _xForm.GetMapCoordinates(ent.Owner); + return TryRepulseAttract(position, user, ent.Comp.Speed, ent.Comp.Range, ent.Comp.Whitelist, ent.Comp.CollisionMask); + } + + public bool TryRepulseAttract(MapCoordinates position, EntityUid? user, float speed, float range, EntityWhitelist? whitelist = null, CollisionGroup layer = CollisionGroup.SingularityLayer) + { + _entSet.Clear(); + var epicenter = position.Position; + _lookup.GetEntitiesInRange(position.MapId, epicenter, range, _entSet, flags: LookupFlags.Dynamic | LookupFlags.Sundries); + + foreach (var target in _entSet) + { + if (!_physicsQuery.TryGetComponent(target, out var physics) + || (physics.CollisionLayer & (int)layer) != 0x0) // exclude layers like ghosts + continue; + + if (_whitelist.IsWhitelistFail(whitelist, target)) + continue; + + var targetPos = _xForm.GetWorldPosition(target); + + // vector from epicenter to target entity + var direction = targetPos - epicenter; + + if (direction == Vector2.Zero) + continue; + + // attract: throw all items directly to to the epicenter + // repulse: throw them up to the maximum range + var throwDirection = speed < 0 ? -direction : direction.Normalized() * (range - direction.Length()); + + _throw.TryThrow(target, throwDirection, Math.Abs(speed), user, recoil: false, compensateFriction: true); + } + + return true; + } +} diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index 549473278e..c37f235698 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -2,6 +2,7 @@ using System.Numerics; using Content.Shared.Administration.Logs; using Content.Shared.Camera; using Content.Shared.CCVar; +using Content.Shared.Construction.Components; using Content.Shared.Database; using Content.Shared.Friction; using Content.Shared.Gravity; @@ -57,7 +58,8 @@ public sealed class ThrowingSystem : EntitySystem bool recoil = true, bool animated = true, bool playSound = true, - bool doSpin = true) + bool doSpin = true, + bool unanchor = false) { var thrownPos = _transform.GetMapCoordinates(uid); var mapPos = _transform.ToMapCoordinates(coordinates); @@ -65,7 +67,7 @@ public sealed class ThrowingSystem : EntitySystem if (mapPos.MapId != thrownPos.MapId) return; - TryThrow(uid, mapPos.Position - thrownPos.Position, baseThrowSpeed, user, pushbackRatio, friction, compensateFriction: compensateFriction, recoil: recoil, animated: animated, playSound: playSound, doSpin: doSpin); + TryThrow(uid, mapPos.Position - thrownPos.Position, baseThrowSpeed, user, pushbackRatio, friction, compensateFriction: compensateFriction, recoil: recoil, animated: animated, playSound: playSound, doSpin: doSpin, unanchor: unanchor); } /// @@ -78,6 +80,7 @@ public sealed class ThrowingSystem : EntitySystem /// friction value used for the distance calculation. If set to null this defaults to the standard tile values /// True will adjust the throw so the item stops at the target coordinates. False means it will land at the target and keep sliding. /// Whether spin will be applied to the thrown entity. + /// If true and the thrown entity has , unanchor the thrown entity public void TryThrow(EntityUid uid, Vector2 direction, float baseThrowSpeed = 10.0f, @@ -88,7 +91,8 @@ public sealed class ThrowingSystem : EntitySystem bool recoil = true, bool animated = true, bool playSound = true, - bool doSpin = true) + bool doSpin = true, + bool unanchor = false) { var physicsQuery = GetEntityQuery(); if (!physicsQuery.TryGetComponent(uid, out var physics)) @@ -105,7 +109,7 @@ public sealed class ThrowingSystem : EntitySystem baseThrowSpeed, user, pushbackRatio, - friction, compensateFriction: compensateFriction, recoil: recoil, animated: animated, playSound: playSound, doSpin: doSpin); + friction, compensateFriction: compensateFriction, recoil: recoil, animated: animated, playSound: playSound, doSpin: doSpin, unanchor: unanchor); } /// @@ -118,6 +122,7 @@ public sealed class ThrowingSystem : EntitySystem /// friction value used for the distance calculation. If set to null this defaults to the standard tile values /// True will adjust the throw so the item stops at the target coordinates. False means it will land at the target and keep sliding. /// Whether spin will be applied to the thrown entity. + /// If true and the thrown entity has , unanchor the thrown entity public void TryThrow(EntityUid uid, Vector2 direction, PhysicsComponent physics, @@ -131,16 +136,17 @@ public sealed class ThrowingSystem : EntitySystem bool recoil = true, bool animated = true, bool playSound = true, - bool doSpin = true) + bool doSpin = true, + bool unanchor = false) { if (baseThrowSpeed <= 0 || direction == Vector2Helpers.Infinity || direction == Vector2Helpers.NaN || direction == Vector2.Zero || friction < 0) return; + if (unanchor && HasComp(uid)) + _transform.Unanchor(uid); + if ((physics.BodyType & (BodyType.Dynamic | BodyType.KinematicController)) == 0x0) - { - Log.Warning($"Tried to throw entity {ToPrettyString(uid)} but can't throw {physics.BodyType} bodies!"); return; - } // Allow throwing if this projectile only acts as a projectile when shot, otherwise disallow if (projectileQuery.TryGetComponent(uid, out var proj) && !proj.OnlyCollideWhenShot) diff --git a/Content.Shared/Timing/UseDelaySystem.cs b/Content.Shared/Timing/UseDelaySystem.cs index 9707a4ddbe..c6a1818443 100644 --- a/Content.Shared/Timing/UseDelaySystem.cs +++ b/Content.Shared/Timing/UseDelaySystem.cs @@ -88,8 +88,11 @@ public sealed class UseDelaySystem : EntitySystem /// /// Returns true if the entity has a currently active UseDelay with the specified ID. /// - public bool IsDelayed(Entity ent, string id = DefaultId) + public bool IsDelayed(Entity ent, string id = DefaultId) { + if (!Resolve(ent, ref ent.Comp, false)) + return false; + if (!ent.Comp.Delays.TryGetValue(id, out var entry)) return false; @@ -144,7 +147,7 @@ public sealed class UseDelaySystem : EntitySystem /// Otherwise reset it and return true. public bool TryResetDelay(Entity ent, bool checkDelayed = false, string id = DefaultId) { - if (checkDelayed && IsDelayed(ent, id)) + if (checkDelayed && IsDelayed((ent.Owner, ent.Comp), id)) return false; if (!ent.Comp.Delays.TryGetValue(id, out var entry)) diff --git a/Content.Shared/Weapons/Melee/Components/MeleeThrowOnHitComponent.cs b/Content.Shared/Weapons/Melee/Components/MeleeThrowOnHitComponent.cs index 82ffc5e51f..84e75129b1 100644 --- a/Content.Shared/Weapons/Melee/Components/MeleeThrowOnHitComponent.cs +++ b/Content.Shared/Weapons/Melee/Components/MeleeThrowOnHitComponent.cs @@ -9,104 +9,49 @@ namespace Content.Shared.Weapons.Melee.Components; /// This is used for a melee weapon that throws whatever gets hit by it in a line /// until it hits a wall or a time limit is exhausted. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] [Access(typeof(MeleeThrowOnHitSystem))] -[AutoGenerateComponentState] public sealed partial class MeleeThrowOnHitComponent : Component { /// /// The speed at which hit entities should be thrown. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] + [DataField, AutoNetworkedField] public float Speed = 10f; /// - /// How long hit entities remain thrown, max. + /// The maximum distance the hit entity should be thrown. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public float Lifetime = 3f; - - /// - /// How long we wait to start accepting collision. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public float MinLifetime = 0.05f; + [DataField, AutoNetworkedField] + public float Distance = 20f; /// /// Whether or not anchorable entities should be unanchored when hit. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] + [DataField, AutoNetworkedField] public bool UnanchorOnHit; /// - /// Whether or not the throwing behavior occurs by default. + /// How long should this stun the target, if applicable? /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public bool Enabled = true; + [DataField, AutoNetworkedField] + public TimeSpan? StunTime; + + /// + /// Should this also work on a throw-hit? + /// + [DataField, AutoNetworkedField] + public bool ActivateOnThrown; } /// -/// Component used to track entities that have been yeeted by +/// Raised a weapon entity with to see if a throw is allowed. /// -[RegisterComponent, NetworkedComponent] -[AutoGenerateComponentState] -[Access(typeof(MeleeThrowOnHitSystem))] -public sealed partial class MeleeThrownComponent : Component -{ - /// - /// The velocity of the throw - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public Vector2 Velocity; - - /// - /// How long the throw will last. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public float Lifetime; - - /// - /// How long we wait to start accepting collision. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public float MinLifetime; - - /// - /// At what point in time will the throw be complete? - /// - [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] - [AutoNetworkedField] - public TimeSpan ThrownEndTime; - - /// - /// At what point in time will the be exhausted - /// - [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] - [AutoNetworkedField] - public TimeSpan MinLifetimeTime; - - /// - /// the status to which the entity will return when the thrown ends - /// - [DataField] - public BodyStatus PreviousStatus; -} +[ByRefEvent] +public record struct AttemptMeleeThrowOnHitEvent(EntityUid Target, EntityUid? User, bool Cancelled = false, bool Handled = false); /// -/// Event raised before an entity is thrown by to see if a throw is allowed. -/// If not handled, the enabled field on the component will be used instead. +/// Raised a target entity before it is thrown by . /// [ByRefEvent] -public record struct AttemptMeleeThrowOnHitEvent(EntityUid Hit, bool Cancelled = false, bool Handled = false); - -[ByRefEvent] -public record struct MeleeThrowOnHitStartEvent(EntityUid User, EntityUid Used); - -[ByRefEvent] -public record struct MeleeThrowOnHitEndEvent(); +public record struct MeleeThrowOnHitStartEvent(EntityUid Weapon, EntityUid? User); diff --git a/Content.Shared/Weapons/Melee/Components/UseDelayOnMeleeHitComponent.cs b/Content.Shared/Weapons/Melee/Components/UseDelayOnMeleeHitComponent.cs new file mode 100644 index 0000000000..644971bc01 --- /dev/null +++ b/Content.Shared/Weapons/Melee/Components/UseDelayOnMeleeHitComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Weapons.Melee.Components; + +/// +/// Activates UseDelay when a Melee Weapon is used to hit something. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(UseDelayOnMeleeHitSystem))] +public sealed partial class UseDelayOnMeleeHitComponent : Component +{ + +} diff --git a/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs b/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs index 7886356233..bc95be926a 100644 --- a/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs +++ b/Content.Shared/Weapons/Melee/MeleeThrowOnHitSystem.cs @@ -1,12 +1,13 @@ -using System.Numerics; using Content.Shared.Construction.Components; +using Content.Shared.Stunnable; +using Content.Shared.Throwing; +using Content.Shared.Timing; using Content.Shared.Weapons.Melee.Components; using Content.Shared.Weapons.Melee.Events; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; -using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; -using Robust.Shared.Timing; +using System.Numerics; namespace Content.Shared.Weapons.Melee; @@ -15,113 +16,67 @@ namespace Content.Shared.Weapons.Melee; /// public sealed class MeleeThrowOnHitSystem : EntitySystem { - [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; - + [Dependency] private readonly UseDelaySystem _delay = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; + [Dependency] private readonly ThrowingSystem _throwing = default!; /// public override void Initialize() { SubscribeLocalEvent(OnMeleeHit); - SubscribeLocalEvent(OnThrownStartup); - SubscribeLocalEvent(OnThrownShutdown); - SubscribeLocalEvent(OnStartCollide); + SubscribeLocalEvent(OnThrowHit); } - private void OnMeleeHit(Entity ent, ref MeleeHitEvent args) + private void OnMeleeHit(Entity weapon, ref MeleeHitEvent args) { - var (_, comp) = ent; + // TODO: MeleeHitEvent is weird. Why is this even raised if we don't hit something? if (!args.IsHit) return; - var mapPos = _transform.GetMapCoordinates(args.User).Position; - foreach (var hit in args.HitEntities) + if (_delay.IsDelayed(weapon.Owner)) + return; + + if (args.HitEntities.Count == 0) + return; + + var userPos = _transform.GetWorldPosition(args.User); + foreach (var target in args.HitEntities) { - var hitPos = _transform.GetMapCoordinates(hit).Position; - var angle = args.Direction ?? hitPos - mapPos; - if (angle == Vector2.Zero) - continue; - - if (!CanThrowOnHit(ent, hit)) - continue; - - if (comp.UnanchorOnHit && HasComp(hit)) - { - _transform.Unanchor(hit, Transform(hit)); - } - - RemComp(hit); - var ev = new MeleeThrowOnHitStartEvent(args.User, ent); - RaiseLocalEvent(hit, ref ev); - var thrownComp = new MeleeThrownComponent - { - Velocity = angle.Normalized() * comp.Speed, - Lifetime = comp.Lifetime, - MinLifetime = comp.MinLifetime - }; - AddComp(hit, thrownComp); + var targetPos = _transform.GetMapCoordinates(target).Position; + var direction = args.Direction ?? targetPos - userPos; + ThrowOnHitHelper(weapon, args.User, target, direction); } } - private void OnThrownStartup(Entity ent, ref ComponentStartup args) + private void OnThrowHit(Entity weapon, ref ThrowDoHitEvent args) { - var (_, comp) = ent; - - if (!TryComp(ent, out var body) || - (body.BodyType & (BodyType.Dynamic | BodyType.KinematicController)) == 0x0) + if (!weapon.Comp.ActivateOnThrown) return; - comp.PreviousStatus = body.BodyStatus; - comp.ThrownEndTime = _timing.CurTime + TimeSpan.FromSeconds(comp.Lifetime); - comp.MinLifetimeTime = _timing.CurTime + TimeSpan.FromSeconds(comp.MinLifetime); - _physics.SetBodyStatus(ent, body, BodyStatus.InAir); - _physics.SetLinearVelocity(ent, Vector2.Zero, body: body); - _physics.ApplyLinearImpulse(ent, comp.Velocity * body.Mass, body: body); - Dirty(ent, ent.Comp); - } - - private void OnThrownShutdown(Entity ent, ref ComponentShutdown args) - { - if (TryComp(ent, out var body)) - _physics.SetBodyStatus(ent, body, ent.Comp.PreviousStatus); - var ev = new MeleeThrowOnHitEndEvent(); - RaiseLocalEvent(ent, ref ev); - } - - private void OnStartCollide(Entity ent, ref StartCollideEvent args) - { - var (_, comp) = ent; - if (!args.OtherFixture.Hard || !args.OtherBody.CanCollide || !args.OurFixture.Hard || !args.OurBody.CanCollide) + if (!TryComp(args.Thrown, out var weaponPhysics)) return; - if (_timing.CurTime < comp.MinLifetimeTime) + ThrowOnHitHelper(weapon, args.Component.Thrower, args.Target, weaponPhysics.LinearVelocity); + } + + private void ThrowOnHitHelper(Entity ent, EntityUid? user, EntityUid target, Vector2 direction) + { + var attemptEvent = new AttemptMeleeThrowOnHitEvent(target, user); + RaiseLocalEvent(ent.Owner, ref attemptEvent); + + if (attemptEvent.Cancelled) return; - RemCompDeferred(ent, ent.Comp); - } + var startEvent = new MeleeThrowOnHitStartEvent(ent.Owner, user); + RaiseLocalEvent(target, ref startEvent); - public bool CanThrowOnHit(Entity ent, EntityUid target) - { - var (uid, comp) = ent; + if (ent.Comp.StunTime != null) + _stun.TryParalyze(target, ent.Comp.StunTime.Value, false); - var ev = new AttemptMeleeThrowOnHitEvent(target); - RaiseLocalEvent(uid, ref ev); + if (direction == Vector2.Zero) + return; - if (ev.Handled) - return !ev.Cancelled; - - return comp.Enabled; - } - - public override void Update(float frameTime) - { - base.Update(frameTime); - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var comp)) - { - if (_timing.CurTime > comp.ThrownEndTime) - RemCompDeferred(uid, comp); - } + _throwing.TryThrow(target, direction.Normalized() * ent.Comp.Distance, ent.Comp.Speed, user, unanchor: ent.Comp.UnanchorOnHit); } } diff --git a/Content.Shared/Weapons/Melee/UseDelayOnMeleeHitSystem.cs b/Content.Shared/Weapons/Melee/UseDelayOnMeleeHitSystem.cs new file mode 100644 index 0000000000..0400bf5f91 --- /dev/null +++ b/Content.Shared/Weapons/Melee/UseDelayOnMeleeHitSystem.cs @@ -0,0 +1,39 @@ +using Content.Shared.Throwing; +using Content.Shared.Timing; +using Content.Shared.Weapons.Melee.Components; +using Content.Shared.Weapons.Melee.Events; + +namespace Content.Shared.Weapons.Melee; + +/// +public sealed class UseDelayOnMeleeHitSystem : EntitySystem +{ + [Dependency] private readonly UseDelaySystem _delay = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnMeleeHit); + SubscribeLocalEvent(OnThrowHitEvent); + } + + private void OnThrowHitEvent(Entity ent, ref ThrowDoHitEvent args) + { + TryResetDelay(ent); + } + + private void OnMeleeHit(Entity ent, ref MeleeHitEvent args) + { + TryResetDelay(ent); + } + + private void TryResetDelay(Entity ent) + { + var uid = ent.Owner; + + if (!TryComp(uid, out var useDelay)) + return; + + _delay.TryResetDelay((uid, useDelay), checkDelayed: true); + } +} diff --git a/Content.Shared/Wieldable/Components/WieldableComponent.cs b/Content.Shared/Wieldable/Components/WieldableComponent.cs index c146940b7a..c7be70e7c9 100644 --- a/Content.Shared/Wieldable/Components/WieldableComponent.cs +++ b/Content.Shared/Wieldable/Components/WieldableComponent.cs @@ -28,11 +28,17 @@ public sealed partial class WieldableComponent : Component /// /// Whether using the item inhand while wielding causes the item to unwield. - /// Unwielding can conflict with other inhand actions. + /// Unwielding can conflict with other inhand actions. /// [DataField] public bool UnwieldOnUse = true; + /// + /// Should use delay trigger after the wield/unwield? + /// + [DataField] + public bool UseDelayOnWield = true; + [DataField("wieldedInhandPrefix")] public string? WieldedInhandPrefix = "wielded"; diff --git a/Content.Shared/Wieldable/SharedWieldableSystem.cs b/Content.Shared/Wieldable/SharedWieldableSystem.cs index 110c941dac..b3d2e1bdf1 100644 --- a/Content.Shared/Wieldable/SharedWieldableSystem.cs +++ b/Content.Shared/Wieldable/SharedWieldableSystem.cs @@ -191,6 +191,9 @@ public abstract class SharedWieldableSystem : EntitySystem args.Handled = TryWield(uid, component, args.User); else if (component.UnwieldOnUse) args.Handled = TryUnwield(uid, component, args.User); + + if (HasComp(uid) && !component.UseDelayOnWield) + args.ApplyDelay = false; } public bool CanWield(EntityUid uid, WieldableComponent component, EntityUid user, bool quiet = false) @@ -235,9 +238,11 @@ public abstract class SharedWieldableSystem : EntitySystem if (!CanWield(used, component, user)) return false; - if (TryComp(used, out UseDelayComponent? useDelay) - && !_delay.TryResetDelay((used, useDelay), true)) - return false; + if (TryComp(used, out UseDelayComponent? useDelay) && component.UseDelayOnWield) + { + if (!_delay.TryResetDelay((used, useDelay), true)) + return false; + } var attemptEv = new WieldAttemptEvent(user); RaiseLocalEvent(used, ref attemptEv); diff --git a/Resources/Locale/en-US/store/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl index 0c650c0d4d..73d8118fc5 100644 --- a/Resources/Locale/en-US/store/spellbook-catalog.ftl +++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl @@ -52,6 +52,12 @@ spellbook-wand-polymorph-carp-description = For when you need a carp filet quick spellbook-wand-locker-name = Wand of the Locker spellbook-wand-locker-description = Shoot cursed lockers at your enemies and lock em away! +spellbook-hammer-mjollnir-name = Mjollnir +spellbook-hammer-mjollnir-description = Wield the power of THUNDER in your hands. Send foes flying with a mighty swing or by throwing it right at em! + +spellbook-hammer-singularity-name = Singularity Hammer +spellbook-hammer-singularity-description = Ever wonder what it'd be like to be the singularity? Swing this hammer to draw in your surroundings, even works if you miss! + spellbook-staff-animation-name = Staff of Animation spellbook-staff-animation-description = Bring inanimate objects to life! diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml index 0486330940..768475a03b 100644 --- a/Resources/Prototypes/Catalog/spellbook_catalog.yml +++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml @@ -197,6 +197,32 @@ - !type:ListingLimitedStockCondition stock: 1 +- type: listing + id: SpellbookHammerMjollnir + name: spellbook-hammer-mjollnir-name + description: spellbook-hammer-mjollnir-description + productEntity: Mjollnir + cost: + WizCoin: 2 + categories: + - SpellbookEquipment + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +- type: listing + id: SpellbookHammerSingularity + name: spellbook-hammer-singularity-name + description: spellbook-hammer-singularity-description + productEntity: SingularityHammer + cost: + WizCoin: 2 + categories: + - SpellbookEquipment + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + - type: listing id: SpellbookStaffAnimation name: spellbook-staff-animation-name diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index efbd7c2db4..0872f0fc3e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -142,7 +142,6 @@ - type: CorePoweredThrower - type: MeleeThrowOnHit unanchorOnHit: true - enabled: false - type: ItemSlots slots: core_slot: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/hammers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/hammers.yml new file mode 100644 index 0000000000..d2a0ecdbfb --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/hammers.yml @@ -0,0 +1,109 @@ +- type: entity + name: sledgehammer + parent: BaseItem + id: Sledgehammer + description: The perfect tool for wanton carnage. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/sledgehammer.rsi + state: icon + - type: MeleeWeapon + wideAnimationRotation: -135 + damage: + types: + Blunt: 10 + Structural: 10 + soundHit: + collection: MetalThud + - type: Wieldable + - type: IncreaseDamageOnWield + damage: + types: + Blunt: 10 + Structural: 10 + - type: Item + size: Large + +- type: entity + id: Mjollnir + parent: [ BaseItem, BaseMagicalContraband ] + name: Mjollnir + description: A weapon worthy of a god, able to strike with the force of a lightning bolt. It crackles with barely contained energy. + components: + - type: Wieldable + useDelayOnWield: false + - type: MeleeRequiresWield + - type: LandAtCursor + - type: Sprite + sprite: Objects/Weapons/Melee/mjollnir.rsi + layers: + - state: icon + - type: UseDelay + delay: 10 + - type: UseDelayOnMeleeHit + - type: MeleeThrowOnHit + stunTime: 3 + activateOnThrown: true + - type: MeleeWeapon + wideAnimationRotation: -135 + damage: + types: + Blunt: 5 + Structural: 5 + soundHit: + path: /Audio/Effects/tesla_consume.ogg + params: + variation: 0.10 + - type: IncreaseDamageOnWield + damage: + types: + Blunt: 20 + Structural: 25 + - type: DamageOtherOnHit + damage: + types: + Blunt: 15 + Structural: 15 + - type: Item + size: Ginormous + +- type: entity + id: SingularityHammer + parent: [ BaseItem, BaseMagicalContraband ] + name: Singularity Hammer + description: The pinnacle of close combat technology, the hammer harnesses the power of a miniaturized singularity to deal crushing blows. + components: + - type: Wieldable + useDelayOnWield: false + - type: MeleeRequiresWield + - type: Sprite + sprite: Objects/Weapons/Melee/singularityhammer.rsi + layers: + - state: icon + - type: RepulseAttract + speed: -15 #Anything above this pushes things too far away from the Wizard + range: 5 + whitelist: + components: + - MobMover + - Item + - type: UseDelay + delay: 10 + - type: UseDelayOnMeleeHit + - type: MeleeWeapon + wideAnimationRotation: -135 + damage: + types: + Blunt: 5 + Structural: 5 + soundHit: + path: /Audio/Effects/radpulse5.ogg + params: + variation: 0.10 + - type: IncreaseDamageOnWield + damage: + types: + Blunt: 15 + Structural: 15 + - type: Item + size: Ginormous diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml deleted file mode 100644 index 0c75015d9a..0000000000 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml +++ /dev/null @@ -1,25 +0,0 @@ -- type: entity - name: sledgehammer - parent: BaseItem - id: Sledgehammer - description: The perfect tool for wanton carnage. - components: - - type: Sprite - sprite: Objects/Weapons/Melee/sledgehammer.rsi - state: icon - - type: MeleeWeapon - wideAnimationRotation: -135 - damage: - types: - Blunt: 10 - Structural: 10 - soundHit: - collection: MetalThud - - type: Wieldable - - type: IncreaseDamageOnWield - damage: - types: - Blunt: 10 - Structural: 10 - - type: Item - size: Large diff --git a/Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..420a46f29a14632f8f2ada2bb1c3d90fdfa1f8e1 GIT binary patch literal 1297 zcmb7Ee>l^59RGY9+lb~zemwGQyB3~UGdsFY_xNsEm(7|VvFghCO?6fYXN7I0POdr; zHNu?CQ%AUd;5hM+q*Afk^c)vrDu&Fjx$o@e{<#19}g3Qnwk3$#K8^NdT;SxEfG_+qw+^7!hO=khBi&ZLW#y<0dgt&VjX|9)?jHUSdomU5MX`8--c zNtvgo!=<%Oz1XfwVg2aVeSwah5d(}z_hQzzx&W2VHMxL+zLqeW1yM=czai76-LH^S>SsH^Tx&1uyVXWwXQbi_ z`|cDF(16tZo-dj6lk5K;xUN8PO`iHlS zdPa_XmYFM&<~-Xg62szKe0m)?kQ-d8j}?yotigZ|)VC<|>SmqL5d zc~LSr;-F6zTy~OIhC~$(+&%Hq`iXl`-LV_1d@~HfdU;i;M;2~sKMkZG%7;N}{MHGJ zhLL6K$|)S3j?i9e-d5L;rvMd!Fdc;^O`_hwNL#FBIQ(5 zohNATn@63MO<=J8N}R>j8Um3V2GjR73B`5EIuQ9`8Tw!F)Ko;bLK^S%5s04}(fxW8&%M3bojD@mcmX6F zFMx#O1(0yO01{3i0psyF#bX$THF6wd0li*N1z)e%)$=HdoR(lDpxtg~!GjD#gf31PQGQ4pjq-WK;x zgdkxWMQV~ne!wMx>$^+K1TjZ&O5hS(YAUQHkVBNd7H};oVqFaBH3Kjm!uTw54sM~W z0uTU_C#24K=LRj!M(}`D0D>P5htz7dC~xqPH5!f7XKlbL070AF74-X&X;wl2FunFo zrR~c>?g-h;C=XJAO}qdSju$|}@d8LVUH}Ql3n1Zm0VEtRz}64#(^J6Nk6=Xrw#u>9 zg{rb?Ii0&7fn5MjT5oS52yAwKsW1M4jeZ1n0q7q{c3x{4{{>>JAAwZ>O6IStHO>12 zqHZTU{=LuOH*EAHunEY5-)z-MtCPRECiE9ztNg!9z*av3n*f~L)lUC_sv^hB+}A&_ z(T~6;K$o`g&#OLyPx1!;)B8F45m*Fp*7eHnM_>_Pqpnw0DV{}utrB?|zvI^eR3VDY z36&C{?mC7Gr%DOXnPaor%sm<^B>*66#M(jR2q@B9P$>aG^dwjWFMx#O1(0yw0UpGA U0m2tiv;Y7A07*qoM6N<$g1e+A)&Kwi literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..3c4128442ba30552fc3763c8a9091d426d599305 GIT binary patch literal 681 zcmV;a0#^NrP)b;?kj|2z~;coMQfgS7J$PFLxJmdG}jd%jN9*sN3z*cs!=sFM->qx5oL&X^h|@VfL|Z%%Zh(>mL*nfZHC@9A_TE^XIMw z50nLP@KwFY;rprVN0bCqJ$RtH8B-Ea_27%3B%p4=gPj6+e-B*T;{)EQ?)(0^0uVg! z?_Ju|Y=ex2gnbWdxdJc{2Vqk)7!1f|cxT%0_jB(MJC^`Ua5eq2EEbD2n-9(arVhdX zcOpgnBBXo~l!O;R!tnw~I9>n=#|t3gcmX6FFMx#O1=yHWr(dA#UIXI-bovD_9UsUxBFx4-R9iPsVNa!WYDGUN@ z^$BeOHcRGdCWRq!dCP_bZ2@JJ%(=#AV{UB$WtGfr{U84T2NhzN@5v@F^1jepw&la)ac-2xl9 zo0b@KOwjL`8sTzolC;|9^0d#JJl@&*mYus>Ip^`4T?XokPYswoEYC0m@fkNvIn1Mg z%6-sXw%fLtJ9C!YMMlLX`VW)VhMne~>eX7cS58(*s+Xudw@S|VU%sw$>n=5w#TPqPU46A_LY}$Bg6tcs z3VtWNN!zS>@A}IUuI!tv3j!~3>M?e5|9fq0x38Xyx$(4;{_)R`Cm(wE;dje6%N_qK zSPbfG*9j){=6E!TJFdPu>*KZOj~=|M5m!-eujgF zF~h&V5Bq-Xxo`jb`L@&f#SdP7n|kcq^?+%t6Rs&r37q12P;N3)FYDh;`{&Ftc2n3R zT=&ctpKz?Ka^2BQ3_>o<*G}@Zu%+2eW7lxj&=)wZaRe;tG?Vee-{;d^Zv#!OX*iw# zi{nQnV`k3u=TSP`3XUcUQzSpcs{qa19$PotxPJS3lWq6)PBVEFv;60NQ=R5;ipis+ xj{Qw`TEg7Y+tU>^+a(=NC9+K@T4DZxKYhWQ$KnYr=Yc7a!PC{xWt~$(695DVHq!tA literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/mjollnir.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..5ef1c92af24967cc50d8e47b9c7a568524b1dd4e GIT binary patch literal 684 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Qf> zr;B4q#hkaZHhM8T3bd(D_%7gCd}E1l4RiPEOG{2kM|5$pi#Y{F{ALSZ>RH;lm4k7& z^8{@kr5`L&ovvqO&TX7|=ia*XyxBAPnX0XC-kn)*Uf%fow}Ol)L(5{OhJp|Vfj%yV zLxGGA7FrA(?yL+CS1>FTo8`AW`?Hnjq(N>1<^uL1% z4BbbSBK)G6QX;qYJ>KE->e-iy+QRQUwsM!&uCw?iJ2%#G-t*Lt5eiM$cgSsBIiJO- z_@;Wzy?v4gR5VupeERd;gXQ1*wc^@y&wO9za3@hm#L(5?;G^PicmE&yyj04wWv#Hm z?6V48i;i*LRtXbv{rRvsS^m)P=btU#aL>~}XDipg`n4BB$dQm|PaYJcFORp|uaLXL z^5(H4vzb;#c%2YoxxM9gOSW>&L-XL*{tSl9r?+39>-73pOyQeoHBKM3$*4#&_%svZt#b_;yb|*=+rR&u>jH+$qiev~B(V1DXz#^BaD% zYJ3y-Z|IbK9M_m+oPK$h&9PdBwX6=aYM8e*#mr;4Eg`?Yp}*q}d%|Iu`e%vb{RH&bI*6ry>suJZ>B&VPT>V`3@?CVcmW(kivUO0KNXxle2UJV zSwsWBpP|Elj8NZ^z9zDSPw%=b`0iX21%<;23mFh z)%0-Bwwm}e34q|Yy}F!EKl3hie((adUHjUE-{3?{1z})iS8(#@QSp7*t`4XC4@<$X zgHa}zGw4iQ&Edn45l3*eTf_LL?5+XR@2d=)RnUDqT z-SdfhYUj@+fEfG30I&eXpI(n0225gPv@OhpkUKmN+x*Btp8s}qy)N0q6-3p}l)K6}v0<0$iTyMp4Q@@psEvz{4Q2@buvWRr#0AyO7ol zjX#!I0L}t@FN*Ov3W7K}=|pzExRPGp`UUBR=!HaqDncCpXS=_me$D*lEF>WW4}~f} zj*0jv7fM~T1V9!HP?zWh zvJive`anj~uzwZ z{FNGPiys#UY5u>O1i*EC|Cwlft43}LjmV!`04NXDJ7%;Sxt`A}e<}f(ymi`TbnxsU zaS}FrUnBD;3V^g@@?+)tK z<+KCtnK|ED4fR7(rK~HS&vzqoYKQ_;Bi?7l7g#egn@CoIC_wRm01m9NL ztNib@KPVcX2mS)cv7EmD`r~3F?bVOk>AA0Vh<{X<*(MOj|I(q)bHiW2M$#)Qy8=`- z02^tyI0=y3=zV$T7emlVsj48_Jeq0siX+ebLI7->ecD9PH<#Q~`maFvi*06F-pAHOMF!XFaHZPn*<@PRj;Tv~H|epblAFY%wXZ zm&nlS)xn|-8?^O8@M9iA210}+plpyU*L2|hBm0_o9!i5aek~cmJ@NIN$(RY#ndQXg*uY8J8x5IdG%a|hro;CYCLLO>Rx zQu~dpgdqa9c1;C64sz-F(f)q%#}>aj1fmlF+!2s@M*RWkh3uI{-~q1HXVU_kCQLxi zLI%zQ{sb;nPvhjQ7g+UTE>e%96SOoJ>HP31YLN_mGPL^x*u1R<9N%?LfGR)l=W|&) zpa$P0KW{y-5S)=idyk9GV9g&O%Cft+kn9)%Of|leKY{D>0dxkPS6|imSqRQZ9uchj z19S(xR{pg0`KI{O`XjtQz%jq~2RP>U{s71P-XGwY-}?g`^Lu}QV}9=sh~ej_Upe&$ zxUSE4=}+kGiAwZQC2qwZfPMN6pZwsgJ|FzNZP9z}e&_xK79X8Z_X=7?fgAtI@BwG_ z`S|3GGx>gk3xB}KXn8+>=bn>f8U-jkFx(Z)T6!N{GUrm-NQ3t4^F#iYTkod-W?WEu z-p;x^zp&~L;P%tNpvXMy{(xEG=egs5(r=FH^IL8u`uprZG!pW+g~x33yJ~;gA3#xk zJe(q{*MCoan(rJ{gUo-?+&hfjI!wdw+#fJB_m05y#1n^deg4dR`vY7AUxxPwcvyuO zz%jf4j-f>WR0*Rlru*sHrN>6voJ(*c95=xiEt?}AWo)7Vpc=RkK}K5s%mQ%mQ5%EC z^D5R>eZCxg1VQlk*yC5LKx%D&CIQ%-fU>+*%a=Ow2ZWdJ;(ICh7Ww5`B()MREq^8f zxHdlN9;vAyh@#jrZ^9!E_)F)ZJiodYel2rAl0hNqB(i`-NLoFc;1~6%dyk9ZFA2u{ z0h|Tc&URIwUvFh{R+Q>NLlHjQzRCXk1K>o&B%H>k1L&^L2fu8RO9CcLodsK58J+g` zm^0LZEp6)n1mWeaC#?5ES^T6dM4hH?Ap44cL>__XZ`oXxpG)XvWEKFuP|;8>hd0YLC|Kha#~=SLIp$~+EfA0JQ)|C(=>j@x$Nd)y2;_#7h{ z+Wi5tQGt8E$>6K}5Tc)Wm0a%qCW4RpA>6x`!S@s7jI0!Vz?eTkcY|x?uhd|j{IsVs zzx=R}{wn|9l=26lgoejj?+>sHk@DeX9afw7-u#9Wezafr>$s+zKLAU88x?Dn_;ptd zCJKPG=R(!VQlD=#_|E+SNH^YOa#f%2qEJ}ockU0snCl|#nID}X_x=D|!C%|q-ya~p zqeLB5(ysgguKBI{1JwF>9&=sQ=ey=-e}J?12k&U-9;2Qt_0P^n-IO5+QV3W^RM>~cWz%jf4j-f>W zem)%Tk76~6%`2PF@1M%ZEC2_8?*j)3H>rDjqP-Mb_4!jBnFNrZOt@@UhxPjWMnL8a zNb^8eFG6Kx764C%B}#rGt`{L5nFJUbGbgY^q@Mctyd(Sj1HyS&7NHtYt!AoVYN{gh z5X3f}2)nChLE0A`-S(eo;oj)|0hpZC`golMO^pIA3o-Uep%4}svFn!2 z;_q^OJW91A6U88Tl%Yj{RgW(bwfO3LTyRVtcGCFB@`lX*0IYuHk`*osSI2t<-}P4W zWJG3v0PPunoUd|J$BGYrJdF7R{AOG_OeudrBVx+<0~!@m!XMDcnDp-tXmm{K_Xp$w zllJ`qdBLQ6e?Z<)(I4RA`TcoBtUti^^ZWCRSbqSVA%Kng_`IXwx;{SdDER{zF6#61 mjIuw#VSRp{F=_k(dBy*JnrO|ia$$-90000&fGI||JdDmc4u~fv-3RP@8`EM*UgQ1xkR`C z006J?Rs9>xv6b0okFYcQTb|A;%z@MM>Kz{dfUo0sV@WyBCkg-@Ei~5GxfzhP`pP5v z7F@gw6|2FP_y))LXm2eo@;7*BehR7`~6?=00E3A-H$C%KLt}4h~-N z!jR`v?kAq$XX%$p4MY^3r0t(idv&bC-n_^;Ug=1n+JYLXL2Ch|ehs|i8XWIuI{yP<5p;SayF_6wOSH2S;DN}$L)l4y(iHx3x|T!rH;sdMQ)mr5 zTBa(XbI#6s^=dtJoBYE9i&`@{h;ltwQ2Yc}2FBSyQQxaI+P>IZetyD+^(eTJx0^khhK+!Xx6LkOI7;$zB&cl)X#w*DniW;<^Hk= zI4y0SgfJ0g^O<~7x?(g!8zeV`=rsHY8^H)mDXH}Xt4-5OLE1oyW&B-fUm6ywDW(n5 za=G@X)7$Ke607>U?Sk8V$(J>t7}mDtb{>ileWf~jxQi#>kH?F~+wPLj z;6u^UBfNOT;Ec?eZ>(8+3-LP-zLjy#WiAR&bjW82h33nC1*AKCt0r~(;*UY;mkJLa z(Cn`E4UJIV_Xak-)*{!uc-d8e8pB zR)ZK(NGc3R13uclwaxQu=`+VjDi~meSeb`qH_nY~MlQ->9|Gb*s+SLvx=R%D`c{U! zxMMBizLq+~y6wyd*6z@u^h`rD(;qX;FS4*`GLtqdj}vc%bEJars-e^e%NNn-L*8b3 z#Gjza?C7~BhC>_;D_ncQd}_o7;*!Q_X#;EIdgHueb!aMsQS>jvi;BKLSmdLz0M_PR zrLO?t#oEBl)1%o|=Qh|A71~1G3{uKKi9tg@G8O~N*HyQ2>nsG>jtS0oiwGd&O2F}g z3arY+aMM1O>{M{74$%RQB|M(YLowRnGU7std+d2L6=$!j)aiX&?ZNxbu8x?8d(gXm zRn!{q(mpzfD$qMq1rJCNdwRz-XJkOvM=3cQ)@3V*EWLvVK+@Uo6xIKH9ZQ>EJV(1D z0qQRTQ#kSn!1klV1Aq?IVo?Bg28SB?x%eIK8_2!;h&Axb?MH~);r?tB2GMf|+kNKs6T1azVyD#@peKmaUL+WtGaLq< zZrk*G{s;>Cc+i$t*A(J$$Ob8ZC#=8TiCZdiN0+_9Hrp>dQoQD=mivHwGeH`NXM>%8sm-g;(1?!%M-p=Hf_Ry0RB3iJ`kK9ubsftwq@i#!oFN7dMyo#qe)oGzn>Uaw?H;>J8*8*7Bx zR6=Up!MSmTJOc*b>pzT7goY`aVuHn!>dW!&&Q+?lKP{k;A+cx8vuH6=RRv`8%b}lP zoU)i?UQa13J?LrJw-4iA*gjaFOO*_;{UT_j2MYQ+mbKfdxBf6NecSp>XB0ds(=Q9@ z+LP^M@`Wlib3O$*b-3smVHy;>N_AZl%3QVGj9vv%^GjfEwLXJV&KSH%aRUP&VnbBF zzCS?qyR?m9oKGoP2J+Wg6%>QUjV-MpeVZ7RC>6?WMA*8}lV1S4MP~^?oymD0%lgJn z{%6zf-3J8)uyv2{qhbyHPxv?wZoUHZUNLQF07mefWp(Svd-!Yv4NjUNQW$`haiyg4 z1W@cdNNdix(K@|qJ+Jp`ldgE9+TEaN=?R*giG%De|lEG7r;Z<^Q8HR001l;R`pkOJ7tG62ADFsy95f zvQOc7GZqrCY!e9n0e`5c0DiL{mKjxsZi9@0=<`TLfWJi5q#dW*n*0|f+bg{b+8BVA z&F_Ow?)SQyW-*NiiW?KCQOeYg0YfTkZ2zYPYW&>XMJy~YQrd8jl_xS}=c%h8jZoy_ zT1*QGS)mztgds@nHaofaMJ&hIKcdz$FK*Q7!3+p1 zT^5*@=_1PLhu=P?g<;5Nnv*FdGk&{azMt6q=w-V>dUUgnrRoM!yP%?xOeI={EPPMRi#PGTt#Q z-dAQ(@18Ql^IzR!DAkKKF>S^v}Z43S$SqC^=dqJ zaqHSB)B7-PPS00S&^d*7pQ*-caf*g%Hf2aWjWztEQp+zyva#QXU?vuAGgJJeFSGbp zj^E>9ibe}1MuGh?3V@|`@I9@CT+xcd%C!Dt@xRG~=D9{yUzPu?ZX2fG{!YYMyTJ$w zBBJ(`@QFj+?kOhE*`tr3HU>3!-`BO7M6-N&XL~FYvo4jgHb3)It{9>_$9}~pthZ)b z1|;r8YS-F?Z!S?NuXgiHdw*eS!Tkr?QVf6X=T7-obkv zW%S0sKw7S)X*^})yVocooGoD3OLpn?&frP5KFN?p;#?Imq|dCvbqUmRSzlxv`NIq^ z>_TTr`aJ0uF#})cG@a$%U#rm#Aa=W;&J-l$Sbq5#mg%HTdHH~~hUSOvKY!4NfurMv zeIA}%i0+B95c#$#pCzr+Y=n?+?@Y`%R^aj@Y~Fa{PJ#NtOIM$;Ld)axRVKTSU9Jn2 z0@uv&kShTt#JnXUO)B5}c>EoJmA(D*LmiLeZqy2<>hh}K4=X&jjo>y*x^s_~;w*uK z3ny=JndPu`&iq)~f4$9zpINPdpnDv zxk-gFU%iOJ)f?+m^5I>|k~}fNRqbg85q>6_Y#NoyET%{7uDvZ-ZwJz?8T9Gwt3c_) z>Vmcc`r9P>6!Q|(32SSg-=8gde|BMO>Skspq2i?lxfW)x?|8)wp*E@|6;_=F%JF(_6Oq)2Pp*=6!4KP&~AHvrlNO$v=|pn81-Gd@EUgZ zV{Z|)1XJqH)ZwP3#>J4`+f6w`pd2MW+Xvug3q;dWcw_*0+K(;e)GKT>OGEz!>~tMd zlkZc`U(&>aBBlO{^?wf`{|){B`)c7CRtX>YTKb?jY5$^&2BcnM`@z3|1V+4(T$E>S zV>h*I6-eiV!nGtv%dGnYSNvzi_ZF$Mr>S0i?kUt67)=%3V{J4>D|~+Xp3%60vBzC$ zPg-=dx~Fko+2C)P6ybD@pdGD2ZdEn&De9|4iLg|8(FQlKgFe22>lTqW436%I3VCYr z$BMMZkS;iGa@C;6)#)6LJeWkCi6_B>Mjg3=UbOVk>O@KN8F)Nx$RCQ*JT|gK)ka&l zx}M5lX+((YWu_Z!p3c!JV^QuCaF~<|wCiUh)ySIjT&jRlrpVyq_ zf~_owK8yf!F$OZEz7t*!u4H`8bno=*8ulr%@#Ekj`u9McSQQXkUaj%mP}N4y1qDfHGIC6^U zy!7y-s=M{}?zdV68VO<>Ip_7gQpuT~XOi>4JqkCOW^s}CYaQ}YLwY7uf&QQ>Ar<*P z-*I%aA_q36)y8im-q<;crj1xw;pJId1No_==mchT4gZsHXx9@=DaKZVAv{KZP{|n= zKnSv(5~ynuCT3vw$+&xI~_Xqk{|gKe}Z)V>1}{0qS+XBO;D94;dSj!R({|T#AKZnR zBV&+x?A@`nucC!WYmg0+iKWWKogfdu3m?XDEXzc_HtE)kO~rkq;D}eKf6NCj9s$Bt zB@5hk3(3tt+NJWHADJ0W2jVA9z>rQ1R-FU9CsoGCyL0JP|Dm&#|0AZeb8nSG0GhrM zuc1%X>0+cPF3pIYp)Q`JzLKri7Rg0~3Kt zSH4q|3X90uLG*)h)HZhX5m$)w175UkK$dUa^lC#gz1VM)6RHYFD{>J|w2biy_}T}3 z+eG*J(V2Q!@E(p@rafDW{>jGiQyq(-zw8pU6EeN(-61k-2;QTxv(-mbyyp&oYc8+% z3-?YTF%rC0`Bq~yA!@E`LwWV>)p%f!gxZQaeJoXbF!dc-sm10v6WnSxzQ$R);bA8D zFK(m^Bew(Gxm(Q4dle^c9K3J+X7MkKUK$g-`X7uwL)xv7maB!J$(X~cBEXyyLAm7w zW!>c8uNw9!z;dSa`hUVVT7!P=3^SEt@lkY^-ensRCQ&1X-$4Krv-ZC?@P&gEr1&+J U=r1A6XB>dBfw_LUu3gxF0h5^w0ssI2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..51774aca75e4106aa46d0f5ae8f90098e07fa8eb GIT binary patch literal 4704 zcmb7|c{J2--^XX{)FeqnHMT63HGWFW$j(?o@k=yWl6?tLW)NATvXtz`F2vZAFhnTJ z*w^gYX2>!NW{kPVeLv50?(;j(bDrP*$8}xjbA7+(e9rfLKkw`H{#-9_ndpJI1i1hJ z0LVaJ+nlksFvc7Q8)LrX?V`X~IKB1n`T_ta+K&b>>GBC70N~Uq1MQo)12Z-Hy4GNj%?rQR_ZQjke zKI_}(n-zq?05zlSoB{TNf}tsqY{G>(z-X8M3Jb3=pR*-D-XfGIRIMDa?mwUxDd+Zd zxD17X%hiRWWZ{XUZDlwLOcHu#y&hp3$z9(WdwAe86yB|<8QkQfIr(P&&X||Ljf>t` zUdmrF|2H(2e8x=q{z+l;0=IBfPXP**UnpamEzWk0;%_F!+8S1U4-Vhsqyw~vY zdQ*34@JbS4PRcctYCyVC$f4CHQt8Tt#XaV=V-NfGH^?i}`gFq1kYFvl=K* z9gBtQ8VQ^&Z|ZDvL8(49`pCrm>SorWZ#sE2bDRfDCP2J9T zqcJVp4H^H;>ped$h#y_r`iFPhbnTA)d(KLAO}cn7ef{^eay?rb)YY+`D{E~#V3nU} zI!GCh>;=Cooo#kDlmA>SZH8RmuLQkq4e;}7J6BMHS+~d@-s!DE&Wr7|mmqUNHFzy% z$Mg!HE)5rp{;0Za+PrK0#G&&;R~|lj-jG1L?T$(3-2t{qcJ#1*9jBzs1-Zd|!i5UH z60oY_6B{)dWX=`l2WQ&dqu|$!LOpn{`B%Xv-{>!BS9?1Lszo*DA!GYS+siZqn~O^! zly7bC%E5^pWlVW(cbusfYh=B`+h5lf_ah?}2HX<%lUgo?-r>Mjo@$L>jcuB*wW}mf z0Ir379e~#if69*&pPtQe5Vy;K7=@zjwAH>M(kPzA-=0X-s_}si^FKjTDdlCYlcZ@H zib$43K_=rmVe{JA#h84gResX-L&G(CB513%4b8saH?7PzT}J%pl*xl!b35K}Z;k31 z0`G(yu!Z6$We=o4Z5^=ERV^g0vkaaHB*WE&xw$icEtSiWicv3u4cJ;hky~+lVU*#x zdnjp%awv4K?pw9jTDL?{&#$GCN#u!)t(Ez_RZ$6qBwTlfN?k1m12AzJqn93FQ8p#YuU%a0!)q#1`I{M{9}}~ zeKzg2$57a#x~7X&3qk(KvET%+rIsrEA@NhNm>>-maO_1o*Kd>bz);E;x5;GXJ+Ba$ z#mH_*YwQDfrYTLyASA6y#ric7YWnb243WC`BY9Cp+0SZ?!{uC3Uxc3S7fVRgD={pl~a?Xb;5wC<%62*6Wy`W2p#3tf48W`fvZWUcyouF8LTafL;}{%cl=m+r50O1W*9s znQuYOwkE^_;@UfL{prE26oCIRr|z#2UnzhN;v!r4CIOuF3tbF%AOsZn?E&&mT6k6h5$&sMYZ7Fi~n)i{qNZLON~lcGT*j` zsF6xdLpnodWE`(azAOdk#$&eC`oOr{^_GVUB^&V{%95rtkce9ZJA%mX)nmYKt z7TCY{#1-lQ%%f739O6O(E)+t4wb5yEA@3^D!x7WR%gp{r0f43_M$MIG*(Lw}$EdWJE$U!cBP{q0ManhVm>+45BPsW zjh=tQXT&OOa*`rcWPB{Ro*a6v0r9=NNIuyl_{zA?e#0ln=>5e)_T+~z4xTN(s5w6| zRSE%}6caeWoKqF^x-ia9dxc({uVnD?hsOBT0NskEE&sc|&yuZZeV11XEc#0EMZIHu zxFQSbn1Ldoz0;3LR?)ka=k|1*kB8|~M@9w_4J!=YK3JF&UQw2z)sQt@n#~)JQl!xE z>X;}VUfr0Q^Sgye+%JVoG;g$LK%L7 zDn0}=d%%1)5t8T^Qj}mgPqbq?I4-upvph5$a1Z1jW!`NuFlYLV`nGs;Qt+eg z>@+<>l-DIxK;x26vu{9|)O$^a(iw8^i*6>ye&;Lz{$Qy-A^KS;@^!K$&MG5VlmxWw zOJBRl$PZD^ZQ;SJEHdcRJr>sl(V*t)v}TyTliek(x~&W?vcdNB5I1Q%M2A_XyQX$x zNvvpw$@&wVtzS|5Rjkg+8daJTyhD+|F~2K~>kA3kiCArOl2bdqaYKg}PpL0&2i1z9 z{C`j{FN~;|fwOIp2LW=^*Jbq6ol~40Y{6qmLQ{pTSoa{9Cmrpi6_j$;e+a?sE5m8iTpS2So1@BsmH16xWdA&D}9s%r43X-!4>`Tkli?O{1n+BCDoquSs%?>nyd{6&~isQ8* zC@}!mmj|h{Ym1r@o0xwvo+X}nC+5&}I^~qoiSrk4$da#Eg!@!7{L2mr__e%`-x&S@ zqPfoB`X_6}X(xW^mQR!d14dbYfMDfr!i1{5kB|mSPo>06MT&s5u8PR<)?fxK=nm`W z4;Jb%6o4%1JXS^N)yw;_F=A5B?{ZXwvK%gki6ro$OqBWu;w*FGJIvOeEUG&%Eq-Ab zF*{9xQ)5o-=xDC42xJg#w2MVHjh{@H^jp7KY@jV(pO%6@E6Z)>g`iYl=Bl8 zj0IBMAdQ=d;MX?;E+fmR!u==$aW%uB?`$PQ!yDMN+F)AIl@_SU&;Yyd+9SNcp1K*LC8>(<)NUlBjC}zw}M7Ctw=x) z#^D37Ps;_(iI!BZtUE%~Nu}BtDQ1lW>&}3kp-$#$)@0{}oi&C5QzRqy%!&9jJ?|rq zMUa3c`i$4=5rO}5T)D=d4oAJ(A3>Tw9-6;kJT=6u%G?ToAYxIA<&RS1Old4cSObTr zdJh6|#G(I~e9x2tidKa)3Pu+K*I!xpnM&+&tiKTX)UAb~-<4UBya)d7^jeFpWa+>$ z%v&-)4U_`y2&IT6j4&u$SkFe6Z6Pc_Z5 z#SKC$>Hxi(39oS{>l}Fl7zqF!B7jo}H+5pbbXfBM* zeaT7TmHXOW%dc_Q5Ic0#$|LPYYKu;Wq|O`Qp%N}Yk@7q1^Wiwf+4dkOZ#tXVbI#2c zkyqB=849gf@7(f15F4Dxh4*}>sn;1j42k9VM!=MoH@SevgRP9 zWUonCDVD(#snDO13s1>)rZRlF@lztd` z2uXp3E{EMDo}(_L7+wXOQ;VivYSBH4W{a>)wTjsgX26A)bu|xAS@ae0-%phNGuEu0q?XWb{#m<^TzJD~I{)hTyLuI_{@On4w5Bv63mj z`VwvRt>cFjH$Yh{Jen-inNPrZ%n;3&FLrket}u|FJT%iz5}R&a<77wp%hD()c*+|Kd6DfzhtS^$ayl!QB71X(^vO4>m7rF_det>X z6~L00*Im?(2fK5>g~Vu6D?pD+-wb(qPM$r_$sZ#ti4@z^sc?b>LAWw^-PZW6H*B_} zjo~Q6+n9dWs8;kqFzmKF67YKB8d%_R|$As8yyLX+?sr&6GhnP6$-}1`;jom|b9`sB5(I-ES?vMZmIwsoXnh(PM0ru%P A=Kufz literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/meta.json new file mode 100644 index 0000000000..395910364c --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/meta.json @@ -0,0 +1,244 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from and modified by LemonInTheDark on TGStation at commit https://github.com/tgstation/tgstation/commit/a64baadebe20b10c69c1747c42dc51c7377c9c97", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "wielded-inhand-left", + "directions": 4, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "inhand-right", + "directions": 4, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "wielded-inhand-right", + "directions": 4, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "icon", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/singularityhammer.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..f798047ee2c16e4a1f3d5e62f51a69b530b2ee33 GIT binary patch literal 6297 zcmbW6cTiL7xAz0VPz(ePDn&FPDhd`rREq4-LAq4wO{t-YNDZM0C`c3wy(1+wITUFI z5D`=$^e&-F37sTBLdfOJyz|c7nKN^L_x|zhXJ+p;d!9YB)@Oa!cfT;y*W~07^@o+ejpInw|^GXdkLM`w&jeHT ztnViW2UO3nahnDG5WarPF@{gUB0wtjfr9`uTvtW{(xWELEjA8Iw{UV^;=LwMiRBze zrr7*G0P)Oyb7g%hxx@6e_dle|BQ%lO%Gir10G|W$ObV@R;?221xzc=%i z?e?kBmNH&7mH|FDn}D!6{_iDz?z>ANdCR;gyA79NbO~*CqP6w`mO(t*2&+Tk%BAVb zkd&ak0RMKFHDJQXANt$k)=-1NdwJ>(#$D*LFg>D_Z#cZM_|L1-YCua1DL+TAiMIZ1|>IwOqcB_qlaerp#ML43VNx4C#$$PrrscG4{Av_>|15ofs%RVstrYV;L_bWc%NQ$77C#J|CEiy(I%laq zEf?g}Wh=-)`{9Z5knY3P5A3Q$ClBQi{j=R^qnOYP&Lc=Jx$1VHqf@0Z91a z8jb(7IFw3bdK|IG>VrT(U8Mc$m9YGw8tNbkp0gR)A~B?I}_rR`^dX;J)>jQ zXe|^-PoB^Q7vj}#HppzwZA_l#EudS$5UC+NOzW{X>OvWm-%Y3Wo7qEVYDzKJh4mwC z`o!b6V<~fg2YkPdqOF>D9c?Pj`(&P-TYlP}f>;0e&|4OQ?^%&XF}}PX9N)6M#K!@41m%Ws0*>)qB>C@Zlsk)BI!9n%ZoG*S;D8AQAs%4 z73eNg!VB(fv=VqC+je^oK~H4g{=jbX8YZ$!weyb9uFc|%HAj^(vj%VPR6>L_$U1q z4+6gfZ^U1V4i(VvYg@3AZ@XSUluWI2U}WNO83~LUxv{szLd}~ZC8+K z;lP0;QM8OkPg=g)&3B@TYPXh|N3m%x@KY%5J_v{?c+)<*IXI!E^z@aJ3ksBJ+Rz_Y zC?TNtTfD%#u%Ks>?7rfZ6bA2bD$7K!7597;WuNT{09P%H>pE~uUvs0TNN#Eue_n!w`Bqg40*L}$>uBZ6o8)-BvrSMy z$KH5vd|WGI%;%>3k%pE6MZh^#ftbO&ZqA;N;-7iORf<3G0B>|(>>OldEW_xeZ%a?h3Tcgv3=ji zr7Ku*LHKdqaL|l3JKv484$~)Qxm-`B^<~yAUPBP4uPl4qJN_=s!`sdd$cVL2N`&6# zYBp}Xv&=v#C5jMDI)n0#8p*%T{dAjg>c^7inJSg>*NEJ{wSr?K1ap};*iqx*&fcUW5t z5Nd#;=VrJ2mC_{!_K2X6R_RvDh+l3RJ6KethUP(?*Babdu&NPlu@k3Ic4qmN<`GoN z1TNhE!=Va?KdZX&;A7E9>=Tnrd?Fe?dax28$RYz$MWS{{QuUu;vF9NdAQuI44;W^} z7{Ye5n|$?Uvp8yN5cN)=UNNlP6*+!eOmf7K{=N3X^PyPwE6;vcC@R;&8>QZ#x^m7SEoHY2+!J77U z!Mm2807?tdnF=$I64TCfEv)ceHGXpv+R9Ir*^kiw($q}|JWP#o*ki1E-w1)SN3Sx0oYfl4s znqNRg#ru+DAdo8_uXurRqb4aBOzLNJ%FMVp`KkjfXMpoFkT8lqQI(uIJ-RT$dLQ4-EdUaWDSH0^o4P}yUr}o*KO`;-hu?e1XPyOFURG=EU%VHe*=l^ zj4OZW2-L_9wP!4THKm=TzD+(feD!7NruK>x_k}-F`0z2WajSF77zR;uc$q!m!vJgW zrTR5S$f!6kmOd{28UYHW-pUTK{!Q<)`{2d!*%G)IxOqo}>~{JBZ%XL{V}i8(6;v587TLyPlSpN4SSOg+ z5_AuqrGk79D<)h-I^mw}#leZ})4Um16wJf957r(|JU#fR5fQn5w~>^f35KKB#*oZ9 zGse4w8y_)=-~M7vo{tui;Hi7u6 z#^j61((jMbWY3c{Z5gqB@EVR`3mLLmdWivcsK_*~PT9GQ@8wbF!a_4tP&_+RH@s73 ztc&d0EK$Wrdjjn}&Kyam^OI52du?nJ7)P|o>P`|n>2wu@|4`=YK1r3_;>j!+*gDD( zAv-WDP_mS=P0GE!I=a(NvQRsN1WZmuPd^fjYaKlhCKWw5vEsX(|Myq7D9kU&I^mDp z%`41{ed+6Xnu*L)#-KWczdv+(lwrE^mdEwP+(3~5p^4-IR>j1xHz^6dABi2dqiI;v z!k&iD_D4x~UiE-v4jvBg8MTrmXtxk48 z)#7u#A$gp98kZq#PzYipV4tRn?rZUjQD%B1y-qzWoOlxKZGxI&exY^Bi{2gDCF*`X zK@V!kBtP8R$d0%P6|blK)N|jRu?in2MFcGgd=4vAl!5&$x_SIQXGTR=XU?YFhQfJ0 z+RzUt_X6SLyIy1k`2g*n(;bmC<5I4!kF-y;tGsV5vNzhpJc5gYC!|H{G;vlUs>*u~ zO>?f+a%zs@FI#&US~*HWx=_!lK<{*Jx`*SwIT!hABSoI6R@R`$uAJ%7h= zj@D~&8M0Cdd}5al?UUZQw{TO^7 z`%ZE3+#cWx3Bd;vBlb0Mmh%rl#SC2gmz6+dX>JyeAZH2cWst=A4=y!f+Ph(0 zOl0o6)BTyF#zN?xRvFp#oL_7 z6I~tw>n*BFgO$>bRXx`Y$~Lhl3D?9cVM>fFi`&2N?w9t7oojM$f`&1DLh*GS3aVt! z#m;+hf9+DmLB;-;lm0&?Vd4ndE$x)TJ%16x;X_cK9<3;4Sx2vT68cL{O*zlYvOC#!*;L)LfatOk_C#G73s>P*OSNSZFizWr<_f-`6Ka=}!6# zLHNkDKvd zF>aAZjZ(3Df7(v}dm7c0POWyEcpJ z1&J`mPdy~{oko?b`-qni*c<@LRRW>BUti1Kr7d6`a|II2?lS4J*=tvnZ_i^Cv0)AV zn2}rgKGssQZJhQ?)q@stH-7k9|0RmDbnhu}?+p!ZJme5fVv-}fmE3i5z)pvOLee!g z78);ldRO=8>{RIFwL!P^dSWq|c)Zl|4ygfPjX2`{RmhpT&=q%#2iF!<;twOSz=nlE z&Ed|nrsa^cc`HsM9UnB;O&+jW!gJVIFJ=Q+0C=iGaZ50;Y2!T`GEB)Xi`yx=#byi7 zv4I>vZVW?hX%1Jyj*6*mt6(-2?SGR_|GDS%-{H)iRCoz2?6>&;>?em`2U5yw9aFyZ z!-w9ewhy~bMA30%e|wm-Y3piLPe;Ta5kq?XcMe|O!1{>DN|2^_K z!*I3y#jU3UXOr2r;8lFAHzYD|H+px>32J^#E3Xvb(?pc|`#k6rdcxA(NFs0gqo5i$ zc$0v|_zPR3r+us-mB%L1qc$SG>O^xRDY^H2IYya`gR8@NVy){*Rm{HUqI9yQHJnzA zhqH0v@}AjXpX0z8=va?pjP3ht8E-+X`e6Iis_OMO_hQDgoeuU^z=@<=NWZKN1z=gO zz}jic56R&6*SZwLhGal;S5PFMsv+AQ(;wFWFwjrJ9fWjs+6;Of|lRK(EX-b7VmFSB4aZYgVHC z=vCxd`2$tW!5py6R)apS-)z~b6&`$0O~uPmgL>EWEPYo3^)s8>f=@u#i`H+{FeL-4 zvi2R%Z@jd5eNZZU5Fprk&Bu3jp-P#v=rG7s#N-bomD(zEJ{BNRN;+xHZo!bRvbRd3GPeM8K^<+!)hvJ(4=&UD)gE&Lcq&;r5dA8I+i{D5M+-eTHnfBmIe2OrUpEL?Ga6$544XFqw8i@;y=w#@4DT~7 zf{Qrz?nC}VsYy&5Au-Gl{3y@2f-^p>5R;1dKEwLZ*AaCG^pb?$I&GhBofVITmzv$I z@{A_8SfBXo|6s#fN`q9=UK`Z~|AOZ)w2KzFg}Ss*$&;P=3%mLB{TD!-1>E8HX7Z=P z!H-HhWTq>{rQw_ls&g9m^e^})e&}`!?*xEbWIm4R! zYp{mnI9u0~IU(roVb&#}9+dMgf!=rQ!B_`Am0u5Ft$2)R&Gxh=U0=2;`L zI*~wRa>s06tgTs^-=}TK{VK&Ws?o)XSWoV9`GS@P7Yy#A5bgWkB>U!lNpqkHMj(gX zKoQ(EJ4EX?@0ph1yleB9-(V-RIYb))P$zPYISNj#a-JWfqZOnaiQxJQ6W`S)@vBc( zJJ*gSHIEfsm}1V{$P3G9wBdgMk7ieK{Rd;mvsS-B+62znO);CT1D0H4Zm2mt^B&Bl5@QMEiTvns#y${?@mM9c6o1?4$Z z4C|83#(m53AcvXTf2d?)@}S}x0r9oFw3cGH5Z5dq`w>j2W*j=_FSEA4$H?z z|7_fQ$H%A-~gs_l5~HOs3#2N=4>#Be`)5*@N9zQQR7 zbKuqZDXoX@i_gfGuS;6Ux&0F~$~evzNgKgxB0UXiA66Z8ZIqMt z(OT!UDAw%G?Tap;LRcCs0SiZM_bmE7XWpa;x1jH1>Wiiq*HP(= z#u{u;;+B&d4za$RiR$`A&MPpXFP@S2rOpOSx4g*6^I7y?X@q0FcSmXb*{Eq_*nm$s z&7S;ga^<*xfRXWnzz@?&j4~hrt?F|Ns?YMR!z=G-uGz$#s=hItWuePQ8QDayxu{C! z$Ep>z&@GB6Zl4wkP1p-c{y@UJc18+TB%S7_ixoSXc5*ArW>-xDC?h|VsVvE_cz}9IH7i_agrkm>OU3d~c7{-d<f;<&g*HVz58i=x?lSxwW@#O+iro= z7y&f+4EJnv3dKKy`t$lT@7=x_Mu&OLXR@wz?;2&mR72DsvQGYj_B`I%wT3Pk-_o^lC+h#eJUUHyaF9+gSC{TET5?;5L-xv|Rv zj)kY3cSAz$y!7UcF3H}zQ{jjlp*73k>0>Rl3^2u)NrT61d#Dp6)dDNH`+`bu10Oi} zAO-I9EgMfExga>Bx6i3UoLhpiNLI5F1A_ZPGHV!fch6RIM|0rOEi>h0jY~E+_Hzxb zt3>Yd3Cu%-nVtzaiw&59J}8-Kr;}sh39V6;wJyn+I_q?bqozjEemN;7Z{)}QdudBH zjUhT4gu;j57&e*${b|Qu|9(i*L=M!*%x%cPj+zT>9>f2LmlQA?QN10yVv-q4bn=NQ zG~Ak;9$LEJZNGFiFVw^zJ-Fq;H&gX}BPrJaf@dTmv# zQh%lv0eR+dl%+2nl16nDr8BVv)T&(A=7)=vU5qT}Yf)flil29}5w4~vkq%tFNDF=` zXSh00OH}|~z-ww@=NfiOsHyxGR-3LsC2n4#j7RTcSf-Asv34B^q#k>9@#A5uE3=)T zn0!-Y(4R9Jum(zRGq=(DaU`)nRaTf=A`G<{N?l+!E7>jAvRZiy*$nB^Ick;qab`|u zsCgD8pjcA~Ek?J00Ep)g_aE->K}#z5ubo4#-A`P{M3vv9G8muVK5)PCzY^cS;l;n{ zmU3Ve>G(P6gLQeh{6XVa3HSYX2OoKD!Yq8P&l(jOnY1iAfgZ`qqtFrkyWCvnaoaV? zKLs!s?k%V73(ZM73gZ<>PB4itBSoj$1pyBsm!?0NqwN{x9mYN&zW0`s#95eyZ&a1O z*slu?M;UvPYUCsJSlj&VVW{-3LB@F2n!?&4;o4Vy$!xXwh?ThWH~1>RBOg{uDFc zQPPpy1xhqcwvYu2`P~;jys(Ld%8!0JbxJLNBy#H9Q1^f@E7fxGze=2rk^pDk?tMAJN!A^ zwe_NIG>2mAH#60;Il%&1S2SZ)_Go_S`RKIt{&T&U`KgwMUA7xvh&O9&Rdvo=>kZo* zur8{q^(M^g&yn^%mUirwvHSg6nS=+k@K&x}yd5|E^D3c5q(RN7u+ooxXO>h_h9N&q zU|afWjELo2zh$yl@ARdPy)?(&X-|Syyw$Ar~Xto8=9ZF7simOv-z{beNv4 zvNRuZHZth#<}Of8VzpV`6|DbtY)*Nt%POd@bL+01{I~@Y0F7Jg@9OPoQUa7vNwSCJdvY>J(y{5wpcP$+S5wf%i8L3? zL>>T>5-C@4KXLZg5o~>WxIK*qd5|#Euw3%sd)!r5B*#Lx!oR`)<3vavbWzO|+06TZ+dMGwar0D8e{h@t&k6fHuEP2;xVfH#tWH}I zlVy%L^xiM2rf`}-Wsz{FvhZ2|x5n(i37gdEJKLqj(MZ6Wmj_eL$fJpu^}8zz!*b=~ zx%j88*kiQ!B)MX!I2lWPSJzUYF~;^Bb$xDQT+VM($z0@M?7taPvcWAzNlll6Jr zZqV{!NWAx7CdHs6@&BuQ`Wu?~XYp0foQVk6yC>52VV`|7%Pq!JpnND2SE^N1G7{K; zvKP@|go5uYK04qjrtti_pLXHh{LyV~F=Z=D20?vHu;!xxdYvNVTCq!64Qar~a%?)y zeqF}S_$tXgt__<274;r9yvT(#_KOEImrAA^kG@zJ54M}Oxlax&vQ`l}2*gRuh)QzQ zgbQ$;u*4)lf2Fx*Ck>WcF>nwL5=Ap_(tBAXxilV zVT7u?CPjfkOeJ>X(DDUmX7;e0j=fyla<3;_(pmGAkpKtn7kbwDScy-@&pb4ZYRc?g z5j|#EGOug4LTQ6n@Zlk&gb-Rwi|5aRQOgA;@xT7Cnup-0f^KgC<_438PZLcc{+cDE zP64jDGg}UcErgZhPB_W|IXy%$!ZDhjf!=-JQyqB{s8sVFZl0{3{yf(8u44?4o3uH0 z2v`?(zDnb-0~@TqV&IVz$0?NVD~2JrF+ppLP7QuCZLbKgNsL{z`}3`9FiR zSn!Kw8AAk)N%QK^)Nr!^v^cWo7X6WZfY=Lz_#bG;nmeWK$)DO%>l^*Zy4yt0sh%{iaFl}_bw4?U(rw?ZTQ(58A^T(s z<-GpRfW&V&G<7Zb{m1yMcv^Q-1kY|Pv>2kGiIb_>1;WpU!Ffi$J};8j(3vKU*Ws2m zC{-)XjJ_sXe;xNIx-UI^N6jl+ zAFMqWUGCk(j+{1)@mqy?d>Hj^cGZ17lo!g$XEDxio(uVM1n~ZiV4Drb#j)>TRb0JK zTs3LX(N6Q5Pb1m5-v>{ZR}JcmxeIfu$hhUv`l&*NL*-}+(V9jzI994AZsZLqfFQ{O z->96vkfV_m%3l9r&X(d*uCQY22H|AQ4fz7tLj!)VsgF(|Iu3gMZM`g0(@ly>Jtvns z@I!}`&77*&IMWV?*A&IiZvAxEx-PFJNp&KIwL`!i1nlBPi8D8fBm5=}@0vu7%5#EOKYGmR z-8tZw3)eSIab;T8L0w~ACxb)bxqDq{W6>&xOaITAn0d z;5^I^4e+CrQcsWKgDP$^W5Xh~ES<-ot>Z_(Ozm+9BbLr;k*)rF_5rAO46<4{i>zx!wppna8!n@_@ zz$-TTO@$CgfL(SjkYzr(qgIq9^umsTH&7zF3s(}-@^lg~2FNtjy)Iq>1~xg{qdz+x zu#*PG8ijZiV)%7Y-^E>B$t$~A6)E-KT=FM#rqA@3(sC$atNS72Z-}N&{g?$J-Wd78 z5mX{2DHqCVa1JDOfBNFgj-RBYoF8@1{Hw!V`|P0U1th#f1qn0eG^Svgha{-p6f=J$ zKtQMLv`ebjs{&4Wih#MZg|9d=hu#YRb$3!3)iGCld>yGyP1*&%WO_>(HIoTg6`3DQ z&hflc`Urc5h4~1cev5mHVoh+-4&zN5xA#qIL^b(>*Prq~7L zZSR8*IhY7$mMup7QD2F5p)cka4eZwC=pb!9EPD+lLmeJO{i=b9W}N3ZR`~O8{fB=+ z-9OxmkDmeG@%gC-300q+Vxmt!I7pD0qpvFyrXo%By#z(YjxSo8+2tg4gdUQ;#JOPN z#)0~;K!Vo41^D`)VVr0dGA6E#_ z{VsXr=U%P(tgp+>;8^zHU0~*?jVzGf=a3Xk$SKSl4413WADdIU6H2Op+fKdb;eFK< zMEK{KXZ!iKw>NDYpRg^8!_Gw)6&=|{I>u6NCYcLFWLQ`#ggk5sWPV1cVOFz)q{WH+ zb(}v3abO6%HfWS=e6lA3lP6!dt$@6BOeba1apjb3Vu!4JoP3b+Y;{UhNLoZ7A2dl+ zPT@8K>_j4-)}Rxki-R<+oRNT!KKP}R1a^HD9>QelcJ8fjJU%zY&B&|IR4tPesdYww zpupKrJ-x>Pe4_jA$yzDT6d=R(BY{AFZS>t%HJ}-*n+eR+lc`#Cggr_@w7bzZ%VIr# zK}q$uG6`R4lUQBK$|d&O27D(S4OHdyV-(5+Myjx8yB>O(`#X&9aw0wSU^x{_{eh$` z#F*r$+1YLL!DM-jVuE3n>G=LGn3c>g|IAwbLkjl^9gWfsE{vNNE=mqm$=ia;f1W6N z88cA1T=q5ps!IuG>x^x8Vh+iP>!#d~$}SOQU2)JL`dX9jmoVn`DHh)(;P-L<22dDH zcei{9R*khm0`!f#e;>4bwHQ5H&%vwRh^Tdf7{y!=@NGIBQAXRx8GK4IJ=EJ-yGRCS zM}iSDl<^{@v)2AI4`hs!5l))X2;5~2s>P~KKMk&>bkeII4B#DvzF0lj1>TmXR^~t^ z5eI{P&Oa&Kq+d0~@hH=R#TUtW8J1Kh(_)9%|1|WNUuP7#yHcw8zK-R>)uqd;cqUNn z<^^T@!Q(0ZFQKS!6eG0)b?=JSXCU4LP0`7~G!2KFZx|z;_1>_ge8ykhrug0XXm2=0 zsg!>j6>w}@NdDf>RF>hi$Z_^kp=w9)>~T{@!s|Ayx0xd4sUr(Ne4sQV23mlnfyWGe z$hUMya}ZWcG^tacJKR)b?iVbEtH6L5HR>tO^a*^48qVQ9Sd0VdK8`=Tyde-s$x?KD zg0-be->RP+yU^{>UB_Mw?5x4Rgq}(r*6HRyFex%cp2`iN8BE@*IlT2pSa)L~@gU&M zdarMkpn|hM8QgmhOKv=yKjU&pD;*3z(58~ok>iN8$a zmRvDw@Y0c&;25T-VkHwkd}&0}8!}2tsUNCx_QV^uH(l`kSTTmBU2gk2SIn-UZs{5Y zP(2cx77m&rM?Axsms%THQF4KopildVj}dKtdjPBknujGq*n!a@_ypw4?-VlwYm_0@ zU`+!wC>p>-qJ8@?o4@)!t>8J1auZd0cJ%%D>qH3GD7CmMx$70d9t89oBp&Ne7ST0~fgyvyrKx3S zNA&TJ)3-KGpM$$c{fLCnU(z~O-uUm$QQJ2H7Dk@}S$BL~?PD2=v#RIvE zo9+utM*}{skKk_zzkm6~KJk{VYftM=9+QW*%Bi9u<5Mi#is$DctH~&<@{rM0y8TjR zJ*Qiz^@JaA18UinZgs6Hssg!e%7^ literal 0 HcmV?d00001 From d6cc1675064b783160b80daee15694cf57d44306 Mon Sep 17 00:00:00 2001 From: spderman3333 <118777573+spderman3333@users.noreply.github.com> Date: Thu, 20 Feb 2025 20:50:30 -0800 Subject: [PATCH 108/155] Fixed Veggie pizza slice having 40u of reagent space (#35343) * Fixed Veg pizza slice having 40u of reagent space * Changed FoodPizzaVegetableSlice to hold 10u rather than 6u * Fixed donk pocket slice having 50u reagent space. --- .../Entities/Objects/Consumable/Food/Baked/pizza.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml index f8990b7f52..1426d53adb 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml @@ -226,7 +226,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 40 + maxVol: 10 reagents: - ReagentId: Nutriment Quantity: 4 @@ -283,7 +283,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 50 + maxVol: 10 reagents: - ReagentId: Nutriment Quantity: 4.5 From b41a348ebf912d6a178a1fb51e92759af68b8a2a Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Fri, 21 Feb 2025 17:01:29 +0100 Subject: [PATCH 109/155] fix rubber hammer attack rotation (#35357) --- Resources/Prototypes/Entities/Objects/Fun/toys.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 6255ce4998..212c85935e 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -1621,6 +1621,7 @@ - type: DisarmMalus malus: 0 - type: MeleeWeapon + wideAnimationRotation: -135 soundHit: collection: RubberHammer params: From 54bb2a31b77ceadafa62b44fe2b91f408063b76a Mon Sep 17 00:00:00 2001 From: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Date: Fri, 21 Feb 2025 19:01:31 +0100 Subject: [PATCH 110/155] Adds Colored Light Bulbs (#35333) * goober * changes parenting --- .../Entities/Objects/Power/lights.yml | 154 ++++++++++++++---- .../Graphs/utilities/lighting.yml | 121 ++++++++++++++ .../Recipes/Construction/lighting.yml | 78 ++++++++- 3 files changed, 315 insertions(+), 38 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Power/lights.yml b/Resources/Prototypes/Entities/Objects/Power/lights.yml index 0e4d0056c7..66fec56eeb 100644 --- a/Resources/Prototypes/Entities/Objects/Power/lights.yml +++ b/Resources/Prototypes/Entities/Objects/Power/lights.yml @@ -305,17 +305,25 @@ - type: entity parent: BaseLightTube - name: cyan crystal light tube + name: crystal light tube description: A high power high energy bulb which has a small colored crystal inside. - id: LightTubeCrystalCyan + id: BaseLightTubeCrystal + abstract: true components: - type: LightBulb - color: "#47f8ff" lightEnergy: 3 lightRadius: 8 lightSoftness: 0.5 BurningTemperature: 350 PowerUse: 60 + +- type: entity + parent: BaseLightTubeCrystal + name: cyan crystal light tube + id: LightTubeCrystalCyan + components: + - type: LightBulb + color: "#47f8ff" - type: Construction graph: CyanLight node: icon @@ -325,17 +333,12 @@ - id: ShardCrystalCyan - type: entity - parent: LightTubeCrystalCyan + parent: BaseLightTubeCrystal name: blue crystal light tube id: LightTubeCrystalBlue components: - type: LightBulb color: "#39a1ff" - lightEnergy: 3 - lightRadius: 8 - lightSoftness: 0.5 - BurningTemperature: 350 - PowerUse: 60 - type: Construction graph: BlueLight node: icon @@ -345,17 +348,12 @@ - id: ShardCrystalBlue - type: entity - parent: LightTubeCrystalCyan + parent: BaseLightTubeCrystal name: pink crystal light tube id: LightTubeCrystalPink components: - type: LightBulb color: "#ff66cc" - lightEnergy: 3 - lightRadius: 8 - lightSoftness: 0.5 - BurningTemperature: 350 - PowerUse: 60 - type: Construction graph: PinkLight node: icon @@ -365,17 +363,12 @@ - id: ShardCrystalPink - type: entity - parent: LightTubeCrystalCyan + parent: BaseLightTubeCrystal name: orange crystal light tube id: LightTubeCrystalOrange components: - type: LightBulb color: "#ff8227" - lightEnergy: 3 - lightRadius: 8 - lightSoftness: 0.5 - BurningTemperature: 350 - PowerUse: 60 - type: Construction graph: OrangeLight node: icon @@ -385,17 +378,12 @@ - id: ShardCrystalOrange - type: entity - parent: LightTubeCrystalCyan + parent: BaseLightTubeCrystal name: red crystal light tube id: LightTubeCrystalRed components: - type: LightBulb color: "#fb4747" - lightEnergy: 3 - lightRadius: 8 - lightSoftness: 0.5 - BurningTemperature: 350 - PowerUse: 60 - type: Construction graph: RedLight node: icon @@ -411,11 +399,6 @@ components: - type: LightBulb color: "#52ff39" - lightEnergy: 3 - lightRadius: 8 - lightSoftness: 0.5 - BurningTemperature: 350 - PowerUse: 60 - type: Construction graph: GreenLight node: icon @@ -423,3 +406,110 @@ refineResult: - id: SheetGlass1 - id: ShardCrystalGreen + + +- type: entity + parent: BaseLightbulb + name: crystal light bulb + description: A high power high energy bulb which has a small colored crystal inside. + id: BaseLightbulbCrystal + abstract: true + components: + - type: LightBulb + color: "#47f8ff" + lightEnergy: 1 + lightRadius: 6 + lightSoftness: 0.5 + BurningTemperature: 350 + PowerUse: 60 + bulb: Bulb + +- type: entity + parent: BaseLightbulbCrystal + name: cyan crystal light bulb + id: LightBulbCrystalCyan + components: + - type: LightBulb + color: "#47f8ff" + - type: Construction + graph: CyanLightBulb + node: icon + - type: ToolRefinable + refineResult: + - id: SheetGlass1 + - id: ShardCrystalCyan + +- type: entity + parent: BaseLightbulbCrystal + name: blue crystal light bulb + id: LightBulbCrystalBlue + components: + - type: LightBulb + color: "#39a1ff" + - type: Construction + graph: BlueLightBulb + node: icon + - type: ToolRefinable + refineResult: + - id: SheetGlass1 + - id: ShardCrystalBlue + +- type: entity + parent: BaseLightbulbCrystal + name: pink crystal light bulb + id: LightBulbCrystalPink + components: + - type: LightBulb + color: "#ff66cc" + - type: Construction + graph: PinkLightBulb + node: icon + - type: ToolRefinable + refineResult: + - id: SheetGlass1 + - id: ShardCrystalPink + +- type: entity + parent: BaseLightbulbCrystal + name: orange crystal light bulb + id: LightBulbCrystalOrange + components: + - type: LightBulb + color: "#ff8227" + - type: Construction + graph: OrangeLightBulb + node: icon + - type: ToolRefinable + refineResult: + - id: SheetGlass1 + - id: ShardCrystalOrange + +- type: entity + parent: BaseLightbulbCrystal + name: red crystal light bulb + id: LightBulbCrystalRed + components: + - type: LightBulb + color: "#fb4747" + - type: Construction + graph: RedLightBulb + node: icon + - type: ToolRefinable + refineResult: + - id: SheetGlass1 + - id: ShardCrystalRed + +- type: entity + parent: BaseLightbulbCrystal + name: green crystal light bulb + id: LightBulbCrystalGreen + components: + - type: LightBulb + color: "#52ff39" + - type: Construction + graph: GreenLightBulb + node: icon + - type: ToolRefinable + refineResult: + - id: SheetGlass1 + - id: ShardCrystalGreen diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/lighting.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/lighting.yml index 977be3f4d6..d7e48b6646 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/lighting.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/lighting.yml @@ -118,3 +118,124 @@ doAfter: 1 - node: icon entity: LightTubeCrystalGreen + +- type: constructionGraph + id: CyanLightBulb + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 1 + doAfter: 1 + - tag: CrystalCyan + name: cyan crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + color: #52ff39 + doAfter: 1 + - node: icon + entity: LightBulbCrystalCyan + +- type: constructionGraph + id: BlueLightBulb + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 1 + doAfter: 1 + - tag: CrystalBlue + name: blue crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + doAfter: 1 + - node: icon + entity: LightBulbCrystalBlue + +- type: constructionGraph + id: PinkLightBulb + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 1 + doAfter: 1 + - tag: CrystalPink + name: pink crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + doAfter: 1 + - node: icon + entity: LightBulbCrystalPink + +- type: constructionGraph + id: OrangeLightBulb + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 1 + doAfter: 1 + - tag: CrystalOrange + name: orange crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + doAfter: 1 + - node: icon + entity: LightBulbCrystalOrange + +- type: constructionGraph + id: RedLightBulb + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 1 + doAfter: 1 + - tag: CrystalRed + name: red crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + doAfter: 1 + - node: icon + entity: LightBulbCrystalRed + +- type: constructionGraph + id: GreenLightBulb + start: start + graph: + - node: start + edges: + - to: icon + steps: + - material: Glass + amount: 1 + doAfter: 1 + - tag: CrystalGreen + name: green crystal shard + icon: + sprite: Objects/Materials/Shards/crystal.rsi + state: shard1 + doAfter: 1 + - node: icon + entity: LightBulbCrystalGreen diff --git a/Resources/Prototypes/Recipes/Construction/lighting.yml b/Resources/Prototypes/Recipes/Construction/lighting.yml index 0533f70f1a..d6aeddc7e8 100644 --- a/Resources/Prototypes/Recipes/Construction/lighting.yml +++ b/Resources/Prototypes/Recipes/Construction/lighting.yml @@ -5,7 +5,7 @@ startNode: start targetNode: icon category: construction-category-utilities - description: A high powered light tube containing a cyan crystal + description: A high powered light tube containing a cyan crystal. icon: { sprite: Objects/Power/light_tube.rsi, state: normal } objectType: Item @@ -16,7 +16,7 @@ startNode: start targetNode: icon category: construction-category-utilities - description: A high powered light tube containing a blue crystal + description: A high powered light tube containing a blue crystal. icon: { sprite: Objects/Power/light_tube.rsi, state: normal } objectType: Item @@ -27,7 +27,7 @@ startNode: start targetNode: icon category: construction-category-utilities - description: A high powered light tube containing a pink crystal + description: A high powered light tube containing a pink crystal. icon: { sprite: Objects/Power/light_tube.rsi, state: normal } objectType: Item @@ -38,7 +38,7 @@ startNode: start targetNode: icon category: construction-category-utilities - description: A high powered light tube containing an orange crystal + description: A high powered light tube containing an orange crystal. icon: { sprite: Objects/Power/light_tube.rsi, state: normal } objectType: Item @@ -49,7 +49,7 @@ startNode: start targetNode: icon category: construction-category-utilities - description: A high powered light tube containing a red crystal + description: A high powered light tube containing a red crystal. icon: { sprite: Objects/Power/light_tube.rsi, state: normal } objectType: Item @@ -60,6 +60,72 @@ startNode: start targetNode: icon category: construction-category-utilities - description: A high powered light tube containing a green crystal + description: A high powered light tube containing a green crystal. icon: { sprite: Objects/Power/light_tube.rsi, state: normal } objectType: Item + +- type: construction + name: cyan light bulb + id: CyanLightBulb + graph: CyanLightBulb + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light bulb containing a cyan crystal. + icon: { sprite: Objects/Power/light_bulb.rsi, state: normal } + objectType: Item + +- type: construction + name: blue light bulb + id: BlueLightBulb + graph: BlueLightBulb + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light bulb containing a blue crystal. + icon: { sprite: Objects/Power/light_bulb.rsi, state: normal } + objectType: Item + +- type: construction + name: pink light bulb + id: PinkLightBulb + graph: PinkLightBulb + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light bulb containing a pink crystal. + icon: { sprite: Objects/Power/light_bulb.rsi, state: normal } + objectType: Item + +- type: construction + name: orange light bulb + id: OrangeLightBulb + graph: OrangeLightBulb + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light bulb containing an orange crystal. + icon: { sprite: Objects/Power/light_bulb.rsi, state: normal } + objectType: Item + +- type: construction + name: red light bulb + id: RedLightBulb + graph: RedLightBulb + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light bulb containing a red crystal. + icon: { sprite: Objects/Power/light_bulb.rsi, state: normal } + objectType: Item + +- type: construction + name: green light bulb + id: GreenLightBulb + graph: GreenLightBulb + startNode: start + targetNode: icon + category: construction-category-utilities + description: A high powered light bulb containing a green crystal. + icon: { sprite: Objects/Power/light_bulb.rsi, state: normal } + objectType: Item From 17f3db1936cb959aacd5705115df8552cf05ac77 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 21 Feb 2025 18:02:40 +0000 Subject: [PATCH 111/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8d5068bdcf..3057acf09a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: SaphireLattice - changes: - - message: Explosives throw a container they are in - type: Tweak - id: 7487 - time: '2024-10-04T08:43:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32428 - author: SaphireLattice changes: - message: Syndicate C4 now starts a countdown on signal, rather than exploding @@ -3897,3 +3890,11 @@ id: 7986 time: '2025-02-20T16:51:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35054 +- author: Boaz1111 + changes: + - message: Added colored light bulbs! You can make them just like colored light + tubes, in the crafting menu. + type: Add + id: 7987 + time: '2025-02-21T18:01:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35333 From f5eafc7ed3921563eb701e23ddeccb23d3030da5 Mon Sep 17 00:00:00 2001 From: Milon Date: Fri, 21 Feb 2025 20:30:06 +0100 Subject: [PATCH 112/155] make the detailed examine verb predicted (#35362) can we stop predicting things --- .../DetailExaminableComponent.cs | 9 ---- .../DetailExaminable/DetailExaminableystem.cs | 44 ------------------ .../Implants/SubdermalImplantSystem.cs | 2 +- .../Station/Systems/StationSpawningSystem.cs | 2 +- .../DetailExaminableComponent.cs | 10 +++++ .../DetailExaminable/DetailExaminableystem.cs | 45 +++++++++++++++++++ 6 files changed, 57 insertions(+), 55 deletions(-) delete mode 100644 Content.Server/DetailExaminable/DetailExaminableComponent.cs delete mode 100644 Content.Server/DetailExaminable/DetailExaminableystem.cs create mode 100644 Content.Shared/DetailExaminable/DetailExaminableComponent.cs create mode 100644 Content.Shared/DetailExaminable/DetailExaminableystem.cs diff --git a/Content.Server/DetailExaminable/DetailExaminableComponent.cs b/Content.Server/DetailExaminable/DetailExaminableComponent.cs deleted file mode 100644 index 3cefb75869..0000000000 --- a/Content.Server/DetailExaminable/DetailExaminableComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Content.Server.DetailExaminable -{ - [RegisterComponent] - public sealed partial class DetailExaminableComponent : Component - { - [DataField("content", required: true)] [ViewVariables(VVAccess.ReadWrite)] - public string Content = ""; - } -} diff --git a/Content.Server/DetailExaminable/DetailExaminableystem.cs b/Content.Server/DetailExaminable/DetailExaminableystem.cs deleted file mode 100644 index 85ca532607..0000000000 --- a/Content.Server/DetailExaminable/DetailExaminableystem.cs +++ /dev/null @@ -1,44 +0,0 @@ -using Content.Shared.Examine; -using Content.Shared.IdentityManagement; -using Content.Shared.Verbs; -using Robust.Shared.Utility; - -namespace Content.Server.DetailExaminable -{ - public sealed class DetailExaminableSystem : EntitySystem - { - [Dependency] private readonly ExamineSystemShared _examineSystem = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent>(OnGetExamineVerbs); - } - - private void OnGetExamineVerbs(EntityUid uid, DetailExaminableComponent component, GetVerbsEvent args) - { - if (Identity.Name(args.Target, EntityManager) != MetaData(args.Target).EntityName) - return; - - var detailsRange = _examineSystem.IsInDetailsRange(args.User, uid); - - var verb = new ExamineVerb() - { - Act = () => - { - var markup = new FormattedMessage(); - markup.AddMarkupOrThrow(component.Content); - _examineSystem.SendExamineTooltip(args.User, uid, markup, false, false); - }, - Text = Loc.GetString("detail-examinable-verb-text"), - Category = VerbCategory.Examine, - Disabled = !detailsRange, - Message = detailsRange ? null : Loc.GetString("detail-examinable-verb-disabled"), - Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/examine.svg.192dpi.png")) - }; - - args.Verbs.Add(verb); - } - } -} diff --git a/Content.Server/Implants/SubdermalImplantSystem.cs b/Content.Server/Implants/SubdermalImplantSystem.cs index 15b1d76b0d..c306e406a1 100644 --- a/Content.Server/Implants/SubdermalImplantSystem.cs +++ b/Content.Server/Implants/SubdermalImplantSystem.cs @@ -23,7 +23,7 @@ using System.Numerics; using Content.Shared.Movement.Pulling.Components; using Content.Shared.Movement.Pulling.Systems; using Content.Server.IdentityManagement; -using Content.Server.DetailExaminable; +using Content.Shared.DetailExaminable; using Content.Shared.Store.Components; using Robust.Shared.Collections; using Robust.Shared.Map.Components; diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index de4b36df26..a77716eddf 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -1,5 +1,4 @@ using Content.Server.Access.Systems; -using Content.Server.DetailExaminable; using Content.Server.Humanoid; using Content.Server.IdentityManagement; using Content.Server.Mind.Commands; @@ -9,6 +8,7 @@ using Content.Shared.Access.Components; using Content.Shared.Access.Systems; using Content.Shared.CCVar; using Content.Shared.Clothing; +using Content.Shared.DetailExaminable; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Prototypes; using Content.Shared.PDA; diff --git a/Content.Shared/DetailExaminable/DetailExaminableComponent.cs b/Content.Shared/DetailExaminable/DetailExaminableComponent.cs new file mode 100644 index 0000000000..616906de45 --- /dev/null +++ b/Content.Shared/DetailExaminable/DetailExaminableComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.DetailExaminable; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class DetailExaminableComponent : Component +{ + [DataField(required: true), AutoNetworkedField] + public string Content = string.Empty; +} diff --git a/Content.Shared/DetailExaminable/DetailExaminableystem.cs b/Content.Shared/DetailExaminable/DetailExaminableystem.cs new file mode 100644 index 0000000000..ebb8f6202b --- /dev/null +++ b/Content.Shared/DetailExaminable/DetailExaminableystem.cs @@ -0,0 +1,45 @@ +using Content.Shared.Examine; +using Content.Shared.IdentityManagement; +using Content.Shared.Verbs; +using Robust.Shared.Utility; + +namespace Content.Shared.DetailExaminable; + +public sealed class DetailExaminableSystem : EntitySystem +{ + [Dependency] private readonly ExamineSystemShared _examine = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetExamineVerbs); + } + + private void OnGetExamineVerbs(Entity ent, ref GetVerbsEvent args) + { + if (Identity.Name(args.Target, EntityManager) != MetaData(args.Target).EntityName) + return; + + var detailsRange = _examine.IsInDetailsRange(args.User, ent); + + var user = args.User; + + var verb = new ExamineVerb + { + Act = () => + { + var markup = new FormattedMessage(); + markup.AddMarkupPermissive(ent.Comp.Content); + _examine.SendExamineTooltip(user, ent, markup, false, false); + }, + Text = Loc.GetString("detail-examinable-verb-text"), + Category = VerbCategory.Examine, + Disabled = !detailsRange, + Message = detailsRange ? null : Loc.GetString("detail-examinable-verb-disabled"), + Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/examine.svg.192dpi.png")) + }; + + args.Verbs.Add(verb); + } +} From 732d9dc2b7c5cab7aa183f532a636a84f428ca82 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 22 Feb 2025 04:05:22 +0100 Subject: [PATCH 113/155] Fix prying shut unpowered doors (#35380) --- Content.Shared/Doors/DoorEvents.cs | 9 +++++++-- Content.Shared/Doors/Systems/SharedAirlockSystem.cs | 2 +- Content.Shared/Doors/Systems/SharedDoorSystem.cs | 6 +++--- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Content.Shared/Doors/DoorEvents.cs b/Content.Shared/Doors/DoorEvents.cs index 849ea83730..1b6612358c 100644 --- a/Content.Shared/Doors/DoorEvents.cs +++ b/Content.Shared/Doors/DoorEvents.cs @@ -44,15 +44,20 @@ namespace Content.Shared.Doors /// /// /// This event is raised both when the door is initially closed, and when it is just about to become "partially" - /// closed (opaque & collidable). If canceled while partially closing, it will start opening again. Useful in case + /// closed (opaque & collidable). If canceled while partially closing, it will start opening again. Useful in case /// an entity entered the door just as it was about to become "solid". /// public sealed class BeforeDoorClosedEvent : CancellableEntityEventArgs { + /// + /// If true, this check is being performed when the door is partially closing. + /// + public bool Partial; public bool PerformCollisionCheck; - public BeforeDoorClosedEvent(bool performCollisionCheck) + public BeforeDoorClosedEvent(bool performCollisionCheck, bool partial = false) { + Partial = partial; PerformCollisionCheck = performCollisionCheck; } } diff --git a/Content.Shared/Doors/Systems/SharedAirlockSystem.cs b/Content.Shared/Doors/Systems/SharedAirlockSystem.cs index bdd119004e..5bbde04aed 100644 --- a/Content.Shared/Doors/Systems/SharedAirlockSystem.cs +++ b/Content.Shared/Doors/Systems/SharedAirlockSystem.cs @@ -42,7 +42,7 @@ public abstract class SharedAirlockSystem : EntitySystem // the initial power-check. if (TryComp(uid, out DoorComponent? door) - && !door.Partial + && !args.Partial && !CanChangeState(uid, airlock)) { args.Cancel(); diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index 23bea0cdf1..a0d48b7d67 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -427,7 +427,7 @@ public abstract partial class SharedDoorSystem : EntitySystem /// The uid of the door /// The doorcomponent of the door /// The user (if any) opening the door - public bool CanClose(EntityUid uid, DoorComponent? door = null, EntityUid? user = null) + public bool CanClose(EntityUid uid, DoorComponent? door = null, EntityUid? user = null, bool partial = false) { if (!Resolve(uid, ref door)) return false; @@ -437,7 +437,7 @@ public abstract partial class SharedDoorSystem : EntitySystem if (door.State is DoorState.Welded or DoorState.Closed) return false; - var ev = new BeforeDoorClosedEvent(door.PerformCollisionCheck); + var ev = new BeforeDoorClosedEvent(door.PerformCollisionCheck, partial); RaiseLocalEvent(uid, ev); if (ev.Cancelled) return false; @@ -472,7 +472,7 @@ public abstract partial class SharedDoorSystem : EntitySystem return false; // Make sure no entity walked into the airlock when it started closing. - if (!CanClose(uid, door)) + if (!CanClose(uid, door, partial: true)) { door.NextStateChange = GameTiming.CurTime + door.OpenTimeTwo; door.State = DoorState.Open; From 30f673793b44d400cb6f6a7f33e294f3d998fcfa Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Sat, 22 Feb 2025 04:20:44 -0500 Subject: [PATCH 114/155] Fix sink draining sound (#34173) --- Content.Server/Fluids/EntitySystems/DrainSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Fluids/EntitySystems/DrainSystem.cs b/Content.Server/Fluids/EntitySystems/DrainSystem.cs index 215c58804e..974d6f1ec1 100644 --- a/Content.Server/Fluids/EntitySystems/DrainSystem.cs +++ b/Content.Server/Fluids/EntitySystems/DrainSystem.cs @@ -141,7 +141,7 @@ public sealed class DrainSystem : SharedDrainSystem if (!_solutionContainerSystem.ResolveSolution((uid, manager), DrainComponent.SolutionName, ref drain.Solution, out var drainSolution)) continue; - if (drainSolution.AvailableVolume <= 0) + if (drainSolution.Volume <= 0 && !drain.AutoDrain) { _ambientSoundSystem.SetAmbience(uid, false); continue; @@ -158,7 +158,7 @@ public sealed class DrainSystem : SharedDrainSystem _puddles.Clear(); _lookup.GetEntitiesInRange(Transform(uid).Coordinates, drain.Range, _puddles); - if (_puddles.Count == 0) + if (_puddles.Count == 0 && drainSolution.Volume <= 0) { _ambientSoundSystem.SetAmbience(uid, false); continue; From 879234c576f09df20a36e06c8ce51e5a6c5c037d Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 22 Feb 2025 09:21:51 +0000 Subject: [PATCH 115/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3057acf09a..92b4ab1c3b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: SaphireLattice - changes: - - message: Syndicate C4 now starts a countdown on signal, rather than exploding - instantly. - type: Tweak - id: 7488 - time: '2024-10-04T09:34:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32423 - author: slarticodefast changes: - message: Light bulbs now fit into the trash bag again. @@ -3898,3 +3890,10 @@ id: 7987 time: '2025-02-21T18:01:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35333 +- author: themias + changes: + - message: Fixed sink draining noise continuous playback + type: Fix + id: 7988 + time: '2025-02-22T09:20:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34173 From f32ca4efef2f79fb8bb9740b6ee137df20a19339 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 23 Feb 2025 00:37:00 +1100 Subject: [PATCH 116/155] Minor SpriteFade stuff (#35385) --- Content.Client/Sprite/SpriteFadeSystem.cs | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/Content.Client/Sprite/SpriteFadeSystem.cs b/Content.Client/Sprite/SpriteFadeSystem.cs index 676a6e583d..3323dd660f 100644 --- a/Content.Client/Sprite/SpriteFadeSystem.cs +++ b/Content.Client/Sprite/SpriteFadeSystem.cs @@ -20,12 +20,21 @@ public sealed class SpriteFadeSystem : EntitySystem private readonly HashSet _comps = new(); + private EntityQuery _spriteQuery; + private EntityQuery _fadeQuery; + private EntityQuery _fadingQuery; + private const float TargetAlpha = 0.4f; private const float ChangeRate = 1f; public override void Initialize() { base.Initialize(); + + _spriteQuery = GetEntityQuery(); + _fadeQuery = GetEntityQuery(); + _fadingQuery = GetEntityQuery(); + SubscribeLocalEvent(OnFadingShutdown); } @@ -42,28 +51,26 @@ public sealed class SpriteFadeSystem : EntitySystem base.FrameUpdate(frameTime); var player = _playerManager.LocalEntity; - var spriteQuery = GetEntityQuery(); var change = ChangeRate * frameTime; if (TryComp(player, out TransformComponent? playerXform) && _stateManager.CurrentState is GameplayState state && - spriteQuery.TryGetComponent(player, out var playerSprite)) + _spriteQuery.TryGetComponent(player, out var playerSprite)) { - var fadeQuery = GetEntityQuery(); var mapPos = _transform.GetMapCoordinates(_playerManager.LocalEntity!.Value, xform: playerXform); // Also want to handle large entities even if they may not be clickable. foreach (var ent in state.GetClickableEntities(mapPos)) { if (ent == player || - !fadeQuery.HasComponent(ent) || - !spriteQuery.TryGetComponent(ent, out var sprite) || + !_fadeQuery.HasComponent(ent) || + !_spriteQuery.TryGetComponent(ent, out var sprite) || sprite.DrawDepth < playerSprite.DrawDepth) { continue; } - if (!TryComp(ent, out var fading)) + if (!_fadingQuery.TryComp(ent, out var fading)) { fading = AddComp(ent); fading.OriginalAlpha = sprite.Color.A; @@ -85,7 +92,7 @@ public sealed class SpriteFadeSystem : EntitySystem if (_comps.Contains(comp)) continue; - if (!spriteQuery.TryGetComponent(uid, out var sprite)) + if (!_spriteQuery.TryGetComponent(uid, out var sprite)) continue; var newColor = Math.Min(sprite.Color.A + change, comp.OriginalAlpha); From ee31a1f2933ba5e1290a453350e8ce2d927907d8 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Sat, 22 Feb 2025 10:56:54 -0500 Subject: [PATCH 117/155] Wizard: Repulse Spell (#35377) --- .../Events/RepulseAttractActionEvent.cs | 8 +++++++ .../RepulseAttract/RepulseAttractSystem.cs | 12 +++++++++++ .../Locale/en-US/store/spellbook-catalog.ftl | 7 ++++-- .../Prototypes/Catalog/spellbook_catalog.yml | 18 +++++++++++++++- Resources/Prototypes/Magic/repulse_spell.yml | 20 ++++++++++++++++++ .../Objects/Magic/magicactions.rsi/meta.json | 3 +++ .../Magic/magicactions.rsi/repulse.png | Bin 0 -> 245 bytes 7 files changed, 65 insertions(+), 3 deletions(-) create mode 100644 Content.Shared/RepulseAttract/Events/RepulseAttractActionEvent.cs create mode 100644 Resources/Prototypes/Magic/repulse_spell.yml create mode 100644 Resources/Textures/Objects/Magic/magicactions.rsi/repulse.png diff --git a/Content.Shared/RepulseAttract/Events/RepulseAttractActionEvent.cs b/Content.Shared/RepulseAttract/Events/RepulseAttractActionEvent.cs new file mode 100644 index 0000000000..ac164d4327 --- /dev/null +++ b/Content.Shared/RepulseAttract/Events/RepulseAttractActionEvent.cs @@ -0,0 +1,8 @@ +using Content.Shared.Actions; + +namespace Content.Shared.RepulseAttract.Events; + +// Action event to repulse/attract +// TODO: Give speech support later for wizard +// TODO: When actions are refactored, give action targeting data (to change between single target, all around, etc) +public sealed partial class RepulseAttractActionEvent : InstantActionEvent; diff --git a/Content.Shared/RepulseAttract/RepulseAttractSystem.cs b/Content.Shared/RepulseAttract/RepulseAttractSystem.cs index 9363d7bbec..f95a38d2eb 100644 --- a/Content.Shared/RepulseAttract/RepulseAttractSystem.cs +++ b/Content.Shared/RepulseAttract/RepulseAttractSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Wieldable; using Robust.Shared.Map; using Robust.Shared.Physics.Components; using System.Numerics; +using Content.Shared.RepulseAttract.Events; using Content.Shared.Weapons.Melee; namespace Content.Shared.RepulseAttract; @@ -28,7 +29,9 @@ public sealed class RepulseAttractSystem : EntitySystem _physicsQuery = GetEntityQuery(); SubscribeLocalEvent(OnMeleeAttempt, before: [typeof(UseDelayOnMeleeHitSystem)], after: [typeof(SharedWieldableSystem)]); + SubscribeLocalEvent(OnRepulseAttractAction); } + private void OnMeleeAttempt(Entity ent, ref MeleeHitEvent args) { if (_delay.IsDelayed(ent.Owner)) @@ -37,6 +40,15 @@ public sealed class RepulseAttractSystem : EntitySystem TryRepulseAttract(ent, args.User); } + private void OnRepulseAttractAction(Entity ent, ref RepulseAttractActionEvent args) + { + if (args.Handled) + return; + + var position = _xForm.GetMapCoordinates(args.Performer); + args.Handled = TryRepulseAttract(position, args.Performer, ent.Comp.Speed, ent.Comp.Range, ent.Comp.Whitelist, ent.Comp.CollisionMask); + } + public bool TryRepulseAttract(Entity ent, EntityUid user) { var position = _xForm.GetMapCoordinates(ent.Owner); diff --git a/Resources/Locale/en-US/store/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl index 73d8118fc5..982f0491ed 100644 --- a/Resources/Locale/en-US/store/spellbook-catalog.ftl +++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl @@ -9,9 +9,12 @@ spellbook-voidapplause-name = Void Applause spellbook-voidapplause-desc = Swap places with the target, doesn't it make you want to do the boogie? spellbook-force-wall-name = Force Wall -spellbook-force-wall-desc = Make three walls of pure force that you can pass through, but other's can't. +spellbook-force-wall-desc = Make three walls of pure force that you can pass through, but others can't. -spellbook-polymoprh-spider-name = Spider Polymoprh +spellbook-repulse-name = Repulse +spellbook-repulse-desc = Tell people to GITTAH`WEIGH and push 'em away from you. + +spellbook-polymorph-spider-name = Spider Polymorph spellbook-polymorph-spider-desc = Transforms you into a spider, man! spellbook-polymorph-rod-name = Rod Polymorph diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml index 768475a03b..3fcddc4c7c 100644 --- a/Resources/Prototypes/Catalog/spellbook_catalog.yml +++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml @@ -75,11 +75,27 @@ WizCoin: 3 categories: - SpellbookDefensive + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +- type: listing + id: SpellbookRepulse + name: spellbook-repulse-name + description: spellbook-repulse-desc + productAction: ActionRepulse + cost: + WizCoin: 2 + categories: + - SpellbookDefensive + conditions: + - !type:ListingLimitedStockCondition + stock: 1 # Utility - type: listing id: SpellbookPolymorphSpider - name: spellbook-polymoprh-spider-name + name: spellbook-polymorph-spider-name description: spellbook-polymorph-spider-desc productAction: ActionPolymorphWizardSpider cost: diff --git a/Resources/Prototypes/Magic/repulse_spell.yml b/Resources/Prototypes/Magic/repulse_spell.yml new file mode 100644 index 0000000000..77f919e6ff --- /dev/null +++ b/Resources/Prototypes/Magic/repulse_spell.yml @@ -0,0 +1,20 @@ +- type: entity + id: ActionRepulse + name: Repulse + description: Pushes entities away from the user. + components: + - type: RepulseAttract + speed: 10 + range: 5 + whitelist: + components: + - MobMover + - Item + - type: InstantAction + useDelay: 40 + raiseOnAction: true + itemIconStyle: BigAction + icon: + sprite: Objects/Magic/magicactions.rsi + state: repulse + event: !type:RepulseAttractActionEvent diff --git a/Resources/Textures/Objects/Magic/magicactions.rsi/meta.json b/Resources/Textures/Objects/Magic/magicactions.rsi/meta.json index a1112f0c6d..3868dbefa1 100644 --- a/Resources/Textures/Objects/Magic/magicactions.rsi/meta.json +++ b/Resources/Textures/Objects/Magic/magicactions.rsi/meta.json @@ -33,6 +33,9 @@ }, { "name": "item_recall" + }, + { + "name": "repulse" } ] } diff --git a/Resources/Textures/Objects/Magic/magicactions.rsi/repulse.png b/Resources/Textures/Objects/Magic/magicactions.rsi/repulse.png new file mode 100644 index 0000000000000000000000000000000000000000..6e51a48c106e7e4a894b57df3df11dbddb28fdf6 GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7f6y z#WAE}&f95$d<_a5ZN;y>VwW_RP2@}c+^9Q~gE4saKmBhE-yG|EYG1EmUBK3HUGQ*a zdmckv5aW_p54V&(te0(A_3XHzYdG>@k*~?$6{QZ0TrM9?!;b z@W;*)!>R6_QW262KHH==if|q7wEDoerH*SWyMf1B)~ynnKX&YY$Rr`gFgyQTYs$N& pCMT06O&Ke^cpn7rlCJfM>qJYD@<);T3K0RSA}S2+Lx literal 0 HcmV?d00001 From 1ef28203ea272d95881ee98ae7b594998c462ed5 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 22 Feb 2025 17:17:14 +0100 Subject: [PATCH 118/155] Comment out broken guidebook test speech code (#35398) This code blatantly doesn't work and causes compile failures with https://github.com/space-wizards/RobustToolbox/pull/5540. It's only used for testing purposes, so we're just removing it. Basically taken from https://github.com/space-wizards/space-station-14/pull/33610 in another PR, so I can merge this first separately. --- Content.Client/Guidebook/GuidebookSystem.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.Client/Guidebook/GuidebookSystem.cs b/Content.Client/Guidebook/GuidebookSystem.cs index 675a025d7a..25c8ead0ec 100644 --- a/Content.Client/Guidebook/GuidebookSystem.cs +++ b/Content.Client/Guidebook/GuidebookSystem.cs @@ -150,7 +150,9 @@ public sealed class GuidebookSystem : EntitySystem if (!TryComp(uid, out var speech) || speech.SpeechSounds is null) return; - _audioSystem.PlayGlobal(speech.SpeechSounds, Filter.Local(), false, speech.AudioParams); + // This code is broken because SpeechSounds isn't a file name or sound specifier directly. + // Commenting out to avoid compile failure with https://github.com/space-wizards/RobustToolbox/pull/5540 + // _audioSystem.PlayGlobal(speech.SpeechSounds, Filter.Local(), false, speech.AudioParams); } public void FakeClientActivateInWorld(EntityUid activated) From b912dedbfce4670015cd35a71dea948936a87138 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Sat, 22 Feb 2025 20:45:50 +0300 Subject: [PATCH 119/155] New Feature: Admin Only messages in AHelp (#35283) * Feature * Update * Update * Update * Update Resources/Locale/en-US/administration/bwoink.ftl Co-authored-by: Pieter-Jan Briers * Yes --------- Co-authored-by: Pieter-Jan Briers --- .../Administration/Systems/BwoinkSystem.cs | 4 ++-- .../Administration/UI/Bwoink/BwoinkControl.xaml | 4 +++- .../Administration/UI/Bwoink/BwoinkControl.xaml.cs | 2 ++ .../Systems/Bwoink/AHelpUIController.cs | 12 ++++++------ .../Administration/Systems/BwoinkSystem.cs | 12 ++++++------ Content.Shared/Administration/SharedBwoinkSystem.cs | 5 ++++- Resources/Locale/en-US/administration/bwoink.ftl | 7 +++++++ 7 files changed, 30 insertions(+), 16 deletions(-) diff --git a/Content.Client/Administration/Systems/BwoinkSystem.cs b/Content.Client/Administration/Systems/BwoinkSystem.cs index 5166dc8416..7adf0069b2 100644 --- a/Content.Client/Administration/Systems/BwoinkSystem.cs +++ b/Content.Client/Administration/Systems/BwoinkSystem.cs @@ -19,11 +19,11 @@ namespace Content.Client.Administration.Systems OnBwoinkTextMessageRecieved?.Invoke(this, message); } - public void Send(NetUserId channelId, string text, bool playSound) + public void Send(NetUserId channelId, string text, bool playSound, bool adminOnly) { // Reuse the channel ID as the 'true sender'. // Server will ignore this and if someone makes it not ignore this (which is bad, allows impersonation!!!), that will help. - RaiseNetworkEvent(new BwoinkTextMessage(channelId, channelId, text, playSound: playSound)); + RaiseNetworkEvent(new BwoinkTextMessage(channelId, channelId, text, playSound: playSound, adminOnly: adminOnly)); SendInputTextUpdated(channelId, false); } diff --git a/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml b/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml index 39ea50edbe..42d6f4b354 100644 --- a/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml +++ b/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml @@ -7,7 +7,9 @@ - + + + public abstract class SharedRoofSystem : EntitySystem { - [Dependency] private readonly SharedMapSystem _maps = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + + private HashSet> _roofSet = new(); + + /// + /// Returns whether the specified tile is roof-occupied. + /// + /// Returns false if no data or not rooved. + public bool IsRooved(Entity grid, Vector2i index) + { + var roof = grid.Comp2; + var chunkOrigin = SharedMapSystem.GetChunkIndices(index, RoofComponent.ChunkSize); + + if (roof.Data.TryGetValue(chunkOrigin, out var bitMask)) + { + var chunkRelative = SharedMapSystem.GetChunkRelative(index, RoofComponent.ChunkSize); + var bitFlag = (ulong) 1 << (chunkRelative.X + chunkRelative.Y * RoofComponent.ChunkSize); + + var isRoof = (bitMask & bitFlag) == bitFlag; + + // Early out, otherwise check for components on tile. + if (isRoof) + return true; + } + + _roofSet.Clear(); + _lookup.GetLocalEntitiesIntersecting(grid.Owner, index, _roofSet); + + foreach (var isRoofEnt in _roofSet) + { + if (!isRoofEnt.Comp.Enabled) + continue; + + return true; + } + + return false; + } public void SetRoof(Entity grid, Vector2i index, bool value) { if (!Resolve(grid, ref grid.Comp1, ref grid.Comp2, false)) return; - if (!_maps.TryGetTile(grid.Comp1, index, out var tile)) - return; + var chunkOrigin = SharedMapSystem.GetChunkIndices(index, RoofComponent.ChunkSize); + var roof = grid.Comp2; - var mask = (tile.Flags & (byte)TileFlag.Roof); - var rooved = mask != 0x0; + if (!roof.Data.TryGetValue(chunkOrigin, out var chunkData)) + { + // No value to remove so leave it. + if (!value) + { + return; + } - if (rooved == value) - return; + chunkData = 0; + } - Tile newTile; + var chunkRelative = SharedMapSystem.GetChunkRelative(index, RoofComponent.ChunkSize); + var bitFlag = (ulong) 1 << (chunkRelative.X + chunkRelative.Y * RoofComponent.ChunkSize); if (value) { - newTile = tile.WithFlag((byte)(tile.Flags | (ushort)TileFlag.Roof)); + // Already set + if ((chunkData & bitFlag) == bitFlag) + return; + + chunkData |= bitFlag; } else { - newTile = tile.WithFlag((byte)(tile.Flags & ~(ushort)TileFlag.Roof)); + // Not already set + if ((chunkData & bitFlag) == 0x0) + return; + + chunkData &= ~bitFlag; } - _maps.SetTile((grid.Owner, grid.Comp1), index, newTile); + roof.Data[chunkOrigin] = chunkData; + Dirty(grid.Owner, roof); } } diff --git a/Content.Shared/Maps/ContentTileDefinition.cs b/Content.Shared/Maps/ContentTileDefinition.cs index 86ceac77be..a9ad016b87 100644 --- a/Content.Shared/Maps/ContentTileDefinition.cs +++ b/Content.Shared/Maps/ContentTileDefinition.cs @@ -120,11 +120,4 @@ namespace Content.Shared.Maps TileId = id; } } - - [Flags] - public enum TileFlag : byte - { - None = 0, - Roof = 1 << 0, - } } diff --git a/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs b/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs index 114b6b20b9..9dee35da4e 100644 --- a/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs +++ b/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs @@ -26,11 +26,4 @@ public sealed partial class BiomeTileLayer : IBiomeLayer [DataField(required: true)] public ProtoId Tile = string.Empty; - - // TODO: Need some good engine solution to this, see FlagSerializer for what needs changing. - /// - /// Flags to set on the tile when placed. - /// - [DataField] - public byte Flags = 0; } diff --git a/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs b/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs index 32a7823273..b06574eb5b 100644 --- a/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs +++ b/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs @@ -129,7 +129,7 @@ public abstract class SharedBiomeSystem : EntitySystem if (layer is not BiomeTileLayer tileLayer) continue; - if (TryGetTile(indices, noiseCopy, tileLayer.Invert, tileLayer.Threshold, ProtoManager.Index(tileLayer.Tile), tileLayer.Flags, tileLayer.Variants, out tile)) + if (TryGetTile(indices, noiseCopy, tileLayer.Invert, tileLayer.Threshold, ProtoManager.Index(tileLayer.Tile), tileLayer.Variants, out tile)) { return true; } @@ -142,7 +142,7 @@ public abstract class SharedBiomeSystem : EntitySystem /// /// Gets the underlying biome tile, ignoring any existing tile that may be there. /// - private bool TryGetTile(Vector2i indices, FastNoiseLite noise, bool invert, float threshold, ContentTileDefinition tileDef, byte tileFlags, List? variants, [NotNullWhen(true)] out Tile? tile) + private bool TryGetTile(Vector2i indices, FastNoiseLite noise, bool invert, float threshold, ContentTileDefinition tileDef, List? variants, [NotNullWhen(true)] out Tile? tile) { var found = noise.GetNoise(indices.X, indices.Y); found = invert ? found * -1 : found; @@ -163,7 +163,7 @@ public abstract class SharedBiomeSystem : EntitySystem variant = _tile.PickVariant(tileDef, (int) variantValue); } - tile = new Tile(tileDef.TileId, flags: tileFlags, variant); + tile = new Tile(tileDef.TileId, variant); return true; } diff --git a/Content.Shared/Weather/SharedWeatherSystem.cs b/Content.Shared/Weather/SharedWeatherSystem.cs index ca870afc9e..382af64565 100644 --- a/Content.Shared/Weather/SharedWeatherSystem.cs +++ b/Content.Shared/Weather/SharedWeatherSystem.cs @@ -1,3 +1,5 @@ +using Content.Shared.Light.Components; +using Content.Shared.Light.EntitySystems; using Content.Shared.Maps; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; @@ -17,6 +19,7 @@ public abstract class SharedWeatherSystem : EntitySystem [Dependency] private readonly MetaDataSystem _metadata = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly SharedRoofSystem _roof = default!; private EntityQuery _blockQuery; @@ -38,12 +41,12 @@ public abstract class SharedWeatherSystem : EntitySystem } } - public bool CanWeatherAffect(EntityUid uid, MapGridComponent grid, TileRef tileRef) + public bool CanWeatherAffect(EntityUid uid, MapGridComponent grid, TileRef tileRef, RoofComponent? roofComp = null) { if (tileRef.Tile.IsEmpty) return true; - if ((tileRef.Tile.Flags & (byte) TileFlag.Roof) == (byte) TileFlag.Roof) + if (Resolve(uid, ref roofComp, false) && _roof.IsRooved((uid, grid, roofComp), tileRef.GridIndices)) return false; var tileDef = (ContentTileDefinition) _tileDefManager[tileRef.Tile.TypeId]; diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 278517e0e6..dd6b3d36bc 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -21,6 +21,7 @@ - type: Tag tags: - Wall + - type: IsRoof - type: Sprite drawdepth: Walls - type: Icon diff --git a/Resources/Prototypes/Procedural/biome_templates.yml b/Resources/Prototypes/Procedural/biome_templates.yml index 45293f582f..588d95f40d 100644 --- a/Resources/Prototypes/Procedural/biome_templates.yml +++ b/Resources/Prototypes/Procedural/biome_templates.yml @@ -544,7 +544,6 @@ - !type:BiomeTileLayer threshold: -1.0 tile: FloorAsteroidSand - flags: 1 # Asteroid - type: biomeTemplate From f9c9ffadcc170ffe5e43e3f6c82bc74101225668 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Sun, 23 Feb 2025 03:31:04 -0500 Subject: [PATCH 132/155] Amber Station Improvements (#35384) * Redid TEG, minor fixes around * Ran fixgridatmos, variantize, fixrotations, tileswalls --- Resources/Maps/amber.yml | 7465 +++++++++++++++++---------- Resources/Prototypes/Maps/amber.yml | 16 +- 2 files changed, 4625 insertions(+), 2856 deletions(-) diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index eb2dba6e11..297f723165 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -1,10 +1,23 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Map + engineVersion: 247.1.0 + forkId: "" + forkVersion: "" + time: 02/22/2025 05:21:22 + entityCount: 23494 +maps: +- 1 +grids: +- 2 +- 23224 +orphans: [] +nullspace: [] tilemap: 46: Space 68: FloorArcadeBlue2 48: FloorAsteroidSand + 11: FloorAstroAsteroidSand 1: FloorAstroGrass 0: FloorAstroSnow 74: FloorBar @@ -67,7 +80,6 @@ entities: - type: MovedGrids - type: Broadphase - type: OccluderTree - - type: LoadedMap - uid: 2 components: - type: MetaData @@ -81,91 +93,91 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: CQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDwAAAAAADwAAAAAADwAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAABDwAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACGgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADwAAAAADDwAAAAAADwAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAADGgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADwAAAAAADwAAAAAADwAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADwAAAAADDwAAAAACDwAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAADGgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABDwAAAAACDwAAAAAADwAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAABGgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: CQAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAACCQAAAAABCQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAAACQAAAAACCQAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAACQAAAAAACQAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: IwAAAAACIwAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABIwAAAAADIwAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAAGgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAACCQAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAACHAAAAAABSQAAAAAASQAAAAAAHAAAAAABHAAAAAADSQAAAAACSQAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAABKQAAAAAAKwAAAAABKwAAAAADKwAAAAADDgAAAAAACQAAAAACHAAAAAABDgAAAAAAHAAAAAAASQAAAAAASQAAAAABHAAAAAABHAAAAAABSQAAAAADSQAAAAAAHAAAAAADDgAAAAAAKwAAAAADKwAAAAABKwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAD + tiles: IwAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAACQAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAADCQAAAAACHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAADIwAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAABIwAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAABHAAAAAAAHAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABHAAAAAABSQAAAAAASQAAAAABHAAAAAACHAAAAAADSQAAAAADSQAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACKQAAAAAAKwAAAAABKwAAAAAAKwAAAAACDgAAAAAACQAAAAABHAAAAAABDgAAAAAAHAAAAAABSQAAAAAASQAAAAABHAAAAAABHAAAAAADSQAAAAACSQAAAAAAHAAAAAAADgAAAAAAKwAAAAACKwAAAAACKwAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAIwAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAIwAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAAIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABIwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAAQAAAAABAQAAAAAAAQAAAAACDgAAAAAAIwAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAABIwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAC + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADHAAAAAABHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAIwAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABIwAAAAAACQAAAAABCQAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAABIwAAAAADCQAAAAABCQAAAAABCQAAAAABIwAAAAACIwAAAAAAIwAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAAQAAAAADAQAAAAABAQAAAAADDgAAAAAAIwAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABIwAAAAACIwAAAAABIwAAAAACIwAAAAABIwAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAB version: 6 -1,-5: ind: -1,-5 - tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: CQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABHAAAAAAAHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACHAAAAAABHAAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACLwAAAAABLwAAAAADLwAAAAABLwAAAAABLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAABLwAAAAAALwAAAAAAAQAAAAACLwAAAAAALwAAAAACLwAAAAABAQAAAAABAQAAAAAAAQAAAAAALwAAAAAALwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAAAQAAAAAALwAAAAACLwAAAAAALwAAAAACAQAAAAADAQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABLwAAAAADLwAAAAABLwAAAAACAQAAAAABAQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAADLwAAAAABLwAAAAACLwAAAAAAAQAAAAACAQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAACCQAAAAAADgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACwAAAAAALAAAAAAACwAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACwAAAAAECwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAAHAAAAAAAHAAAAAACDgAAAAAALAAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACLwAAAAAALwAAAAACLwAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAADLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAABAQAAAAADLwAAAAADLwAAAAABLwAAAAAAAQAAAAAAAQAAAAACAQAAAAACLwAAAAABLwAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABAQAAAAABLwAAAAADLwAAAAADLwAAAAADAQAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACLwAAAAADLwAAAAADLwAAAAADAQAAAAACAQAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAACLwAAAAAALwAAAAAALwAAAAACAQAAAAADAQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AQAAAAAALwAAAAADLwAAAAAALwAAAAACAQAAAAABAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACAQAAAAAALwAAAAABLwAAAAACLwAAAAACAQAAAAADAQAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAALwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAABCQAAAAACCQAAAAAADgAAAAAAMQAAAAAADgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAABMQAAAAABMQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAACLwAAAAACLwAAAAABLwAAAAAAAQAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABAQAAAAAALwAAAAACLwAAAAAALwAAAAACAQAAAAADAQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAALwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACCQAAAAAACQAAAAABDgAAAAAAMQAAAAADDgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAACMQAAAAABMQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACQAAAAACCQAAAAACCQAAAAADCAAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAABCQAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADDgAAAAAACQAAAAACCQAAAAABHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADCQAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACQAAAAADCQAAAAABCQAAAAAACAAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAAHQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAACQAAAAADCQAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAABCQAAAAAACQAAAAACCQAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAAADgAAAAAACQAAAAADCQAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAACQAAAAABDgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAADCQAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAABCQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: MwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAANwAAAAADNwAAAAABNwAAAAAANwAAAAADCQAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAANwAAAAACNwAAAAACNwAAAAADNwAAAAADDgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAAOAAAAAAAOAAAAAABOAAAAAABOAAAAAABOAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAACOAAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAAOAAAAAADOAAAAAAAOAAAAAADOAAAAAAAOAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAOAAAAAABOAAAAAACOAAAAAAAOAAAAAAAOAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAABCAAAAAAACQAAAAACCQAAAAAB + tiles: MwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAADMwAAAAADMwAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAANwAAAAADNwAAAAAANwAAAAABNwAAAAABCQAAAAABMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAABMwAAAAACMwAAAAABCQAAAAACCQAAAAACCQAAAAABDgAAAAAANwAAAAADNwAAAAAANwAAAAAANwAAAAADDgAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAAAMwAAAAADMwAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAOAAAAAACOAAAAAABOAAAAAACOAAAAAABOAAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAAOAAAAAADOAAAAAAAOAAAAAADOAAAAAAAOAAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAOAAAAAABOAAAAAADOAAAAAADOAAAAAADOAAAAAACHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAAOAAAAAADOAAAAAACOAAAAAABOAAAAAADOAAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCAAAAAAACQAAAAABCQAAAAAB version: 6 -2,-3: ind: -2,-3 - tiles: DgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAADIwAAAAABIwAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAACDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAADHAAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAAHAAAAAADHAAAAAADHAAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAAAHAAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAADCQAAAAABHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAA + tiles: DgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAIwAAAAAAIwAAAAACDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAADDgAAAAAAIwAAAAAAIwAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACDgAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAAAMwAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACMwAAAAADMwAAAAABMwAAAAABMwAAAAABMwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAADHAAAAAAAHAAAAAAAHAAAAAADMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAAHAAAAAAAHAAAAAADHAAAAAADMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAABHAAAAAADHAAAAAAAHAAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAAHAAAAAACCQAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAD version: 6 -2,-4: ind: -2,-4 - tiles: DgAAAAAAHAAAAAACHAAAAAADOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAADHAAAAAABHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAOQAAAAADOQAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAAIwAAAAAAIwAAAAACDgAAAAAAHAAAAAACHAAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAIwAAAAACIwAAAAAB + tiles: DgAAAAAAHAAAAAADHAAAAAACOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACOgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABOgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAAOQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAABDgAAAAAAOQAAAAABDgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAABCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAAIwAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAAIwAAAAABIwAAAAABDgAAAAAAHAAAAAABHAAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAACIwAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAABDgAAAAAAIwAAAAABIwAAAAAB version: 6 -2,-5: ind: -2,-5 - tiles: CQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: HAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAADHAAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAADHAAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAAALgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAADMwAAAAABMwAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAADMwAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAD + tiles: DgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAHAAAAAADDgAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAABDgAAAAAAHAAAAAABDgAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAAALgAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACDgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAADHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAACIwAAAAADIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAACMwAAAAABMwAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACDgAAAAAAIwAAAAABIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAALwAAAAABDgAAAAAADgAAAAAAMwAAAAADMwAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAIwAAAAACIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAB version: 6 -2,1: ind: -2,1 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAABAQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAABAQAAAAAADgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAADAQAAAAAAAQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAADAQAAAAADAQAAAAADDgAAAAAADgAAAAAA version: 6 -2,2: ind: -2,2 - tiles: LAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAAHAAAAAADHAAAAAABLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAACCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAADLgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAADLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAABCQAAAAACCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAAAHAAAAAADLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAADHAAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: CQAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAACMwAAAAAAMwAAAAACCQAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAAMwAAAAAAMwAAAAADDgAAAAAACQAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAABCAAAAAAACAAAAAAACAAAAAAACQAAAAACMwAAAAABMwAAAAABDgAAAAAACQAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACMwAAAAACMwAAAAABMwAAAAABCQAAAAACDgAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAMwAAAAADMwAAAAABMwAAAAAAMwAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAAHAAAAAACDgAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAABMwAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABMwAAAAACMwAAAAAAMwAAAAABCQAAAAACDgAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAADMwAAAAACMwAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAAMwAAAAACMwAAAAABDgAAAAAACQAAAAACDgAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAADMwAAAAADCAAAAAAACAAAAAAACAAAAAAACQAAAAADMwAAAAADMwAAAAAADgAAAAAACQAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAACMwAAAAACMwAAAAABCQAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADHAAAAAACHAAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAACDgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADDgAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAAC + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACDgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAABDgAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAC version: 6 -3,-4: ind: -3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAADCQAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAAAIwAAAAABIwAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABIwAAAAACIwAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAAC + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAAAIwAAAAACIwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABIwAAAAABIwAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAADMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAAACQAAAAAB version: 6 -3,-5: ind: -3,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAB + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAC version: 6 -3,0: ind: -3,0 - tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAAAHAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAAAHAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABDgAAAAAACQAAAAABDgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAACDgAAAAAACQAAAAACDgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 -3,2: ind: -3,2 @@ -173,23 +185,23 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: HAAAAAABDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HAAAAAACDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAACLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADDgAAAAAAHAAAAAADHAAAAAADHAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAACLAAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAD + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABLgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAACLAAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAD version: 6 -4,-4: ind: -4,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAA + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -205,31 +217,31 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAACAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAABAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAAQAAAAACAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: IQAAAAACIQAAAAACDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDwAAAAADDwAAAAADDwAAAAACCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAACCQAAAAABDwAAAAACMgAAAAAADwAAAAABCQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDwAAAAAADwAAAAACDwAAAAABCQAAAAABHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAA + tiles: IQAAAAABIQAAAAABDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDwAAAAADDwAAAAACDwAAAAACCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAADCQAAAAACCQAAAAACDwAAAAABMgAAAAAADwAAAAADCQAAAAABHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADwAAAAABDwAAAAADDwAAAAAACQAAAAABHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: CQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACGwAAAAAADgAAAAAAGwAAAAAAAQAAAAABAQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABAQAAAAACAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAAAQAAAAADDgAAAAAADgAAAAAAIwAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAIwAAAAACIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIQAAAAACIQAAAAADDgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABIQAAAAABIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAB + tiles: CQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADAQAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAAQAAAAADAQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABAQAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAAAQAAAAAADgAAAAAADgAAAAAAIwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAIwAAAAAAIwAAAAABIwAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAAIwAAAAABIwAAAAADIwAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACDgAAAAAAIwAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIQAAAAACIQAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAIQAAAAADIQAAAAADDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAADIQAAAAADIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAAC version: 6 0,-4: ind: 0,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAABCQAAAAABCQAAAAAACQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAABIwAAAAACIwAAAAADDgAAAAAAAQAAAAABAQAAAAAAAQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAC + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACCQAAAAADCQAAAAACCQAAAAADDgAAAAAAMQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAAMQAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAADIwAAAAAAIwAAAAACIwAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAIwAAAAABIwAAAAACDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAAB version: 6 0,-5: ind: 0,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAA version: 6 0,0: ind: 0,0 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADLwAAAAABLwAAAAACLwAAAAAALwAAAAABLwAAAAACLwAAAAADLwAAAAADLwAAAAADLwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAAADgAAAAAALwAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAACwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADLgAAAAAALAAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABLwAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAADLwAAAAABLwAAAAADLwAAAAACLwAAAAADLwAAAAABLwAAAAAALwAAAAABLwAAAAACLwAAAAACDgAAAAAALwAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABGwAAAAAADgAAAAAADgAAAAAA version: 6 0,1: ind: 0,1 - tiles: CQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA + tiles: CQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA version: 6 0,2: ind: 0,2 @@ -237,19 +249,19 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: HgAAAAAADgAAAAAASgAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAASgAAAAAASgAAAAAASgAAAAADSgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAAGwAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACAwAAAAABGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAAAwAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAADCQAAAAAD + tiles: HgAAAAAADgAAAAAASgAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAASgAAAAAASgAAAAACSgAAAAADSgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAAHAAAAAADHAAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACAwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAAAwAAAAABHAAAAAACHAAAAAABHAAAAAABDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAADDgAAAAAACQAAAAACCQAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: CQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABDgAAAAAAHAAAAAACDgAAAAAAHAAAAAACCQAAAAABDwAAAAACCQAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAACQAAAAACDwAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADHAAAAAACDgAAAAAAHAAAAAACCQAAAAADCQAAAAACCQAAAAADHAAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAC + tiles: CQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAADHAAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADDgAAAAAAHAAAAAABCQAAAAACDwAAAAABCQAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAAACQAAAAABDwAAAAADCQAAAAAACQAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAACCQAAAAAACQAAAAABHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAD version: 6 1,-3: ind: 1,-3 - tiles: DgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAACJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAACIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAACIwAAAAABIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAA + tiles: DgAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAACIwAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAIwAAAAAAIwAAAAABIwAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADIwAAAAACIwAAAAAAIwAAAAABIwAAAAABJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABIwAAAAABIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAAAIwAAAAABIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAECQAAAAAACQAAAAADCQAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAIwAAAAABIwAAAAACDgAAAAAAMwAAAAACMwAAAAAADgAAAAAAQQAAAAAAQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAAIwAAAAADIwAAAAADDgAAAAAAMwAAAAAAMwAAAAABDgAAAAAAQQAAAAABQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACIwAAAAABIwAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAAIwAAAAADIwAAAAACDgAAAAAAMwAAAAADMwAAAAABDgAAAAAAQQAAAAACQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAAMwAAAAACMwAAAAABDgAAAAAAQQAAAAAAQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAAAMQAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAACMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAACIwAAAAABDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAACIwAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALAAAAAAA version: 6 1,-5: ind: 1,-5 @@ -257,11 +269,11 @@ entities: version: 6 1,0: ind: 1,0 - tiles: DgAAAAAADgAAAAAAAwAAAAABAwAAAAACHAAAAAADHAAAAAADHAAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAAwAAAAACAwAAAAADHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAACQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABHAAAAAACHAAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACHAAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAB + tiles: DgAAAAAADgAAAAAAAwAAAAADAwAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAAAwAAAAAAAwAAAAACHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAAADgAAAAAACQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAABHAAAAAADHAAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADHAAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABLwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAA version: 6 1,1: ind: 1,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAACBAAAAAAACQAAAAAACQAAAAABCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAADRwAAAAAARwAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAABAAAAAABCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAACBAAAAAAECQAAAAAACQAAAAACCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAARwAAAAACRwAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAABAAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,2: ind: 1,2 @@ -269,55 +281,55 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: CQAAAAADDgAAAAAAQAAAAAAAQAAAAAADDwAAAAABQAAAAAACQAAAAAAAQAAAAAADQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAAQAAAAAABQAAAAAADDwAAAAACQAAAAAAAQAAAAAADDgAAAAAAQAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAAAQAAAAAAADwAAAAACQAAAAAACQAAAAAABQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAACQAAAAAABQAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAADIwAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAADIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAACIwAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAAACAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAADDgAAAAAAQAAAAAAAQAAAAAADDwAAAAADQAAAAAABQAAAAAADQAAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAADDgAAAAAAQAAAAAACQAAAAAACDwAAAAABQAAAAAABQAAAAAADDgAAAAAAQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAACDwAAAAAAQAAAAAACQAAAAAAAQAAAAAABQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAADIwAAAAABIwAAAAACIwAAAAACIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAADIwAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAAAIwAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAACCAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: CQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAAOQAAAAAAOQAAAAAAOQAAAAABOQAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAABOQAAAAADOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAAOQAAAAAAOQAAAAABOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABGgAAAAABLwAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACGgAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABGgAAAAADLwAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAADGgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABGgAAAAABLwAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAAGgAAAAACDgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACQAAAAAAAQAAAAAACQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADGgAAAAABLwAAAAADCQAAAAADDgAAAAAAQAAAAAACQAAAAAADQAAAAAABQAAAAAABQAAAAAADQAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAAQAAAAAACQAAAAAACDwAAAAAAQAAAAAACQAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAC + tiles: CQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAADgAAAAAAOQAAAAACOQAAAAACOQAAAAAAOQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAAAOQAAAAADOQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACOQAAAAABOQAAAAAAOQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAADHAAAAAACHAAAAAABDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAAAHAAAAAABHAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAAGgAAAAAALwAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACGgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAAGgAAAAABLwAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABGgAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABGgAAAAACLwAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADGgAAAAADDgAAAAAACQAAAAABDgAAAAAAQAAAAAABQAAAAAAAQAAAAAACQAAAAAACQAAAAAABQAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACGgAAAAABLwAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAACQAAAAAABQAAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAACDwAAAAACQAAAAAADQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAC version: 6 2,-3: ind: 2,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACDgAAAAAAHAAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACIQAAAAADIQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAAHAAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACIQAAAAACIQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAAAwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAADMQAAAAACDgAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAACLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAARwAAAAABLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAA version: 6 2,0: ind: 2,0 - tiles: CQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAAIwAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAAIwAAAAACDgAAAAAAIwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA version: 6 2,1: ind: 2,1 - tiles: CQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAADCQAAAAAABAAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABRwAAAAACGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAABDgAAAAAADgAAAAAARwAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAADCQAAAAABBAAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAABCQAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACRwAAAAABGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAADDgAAAAAADgAAAAAARwAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: CQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA + tiles: CQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAADLwAAAAABLwAAAAACGgAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAADGgAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACGgAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAACLwAAAAABLwAAAAABGgAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAADGgAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAABGgAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAACGgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADGgAAAAABCQAAAAACCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAABGgAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAADLwAAAAACLwAAAAABGgAAAAADCQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAASAAAAAACSAAAAAADSAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABLAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAASAAAAAABSAAAAAACSAAAAAACHAAAAAADHAAAAAACDgAAAAAAHAAAAAACSQAAAAAASQAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAASAAAAAACSAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAASAAAAAABSAAAAAADSAAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACLAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAADSAAAAAABSAAAAAACSAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAACSQAAAAABSQAAAAADLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAABSAAAAAACSAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAABLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAGwAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAAARgAAAAADGwAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAACDgAAAAAAGwAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAABRgAAAAACGwAAAAAARgAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAABDgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 3,0: ind: 3,0 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,1: ind: 3,1 @@ -329,7 +341,7 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAAQAAAAAAAQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAADQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAABRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAAADgAAAAAALAAAAAAALAAAAAAAQAAAAAADDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAACDgAAAAAAQAAAAAACQAAAAAACLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAAQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAABDgAAAAAAQAAAAAAAQAAAAAABQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAABQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAAMwAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAAADgAAAAAALAAAAAAALAAAAAAAQAAAAAADDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAACQAAAAAABDgAAAAAAQAAAAAADQAAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 4,0: ind: 4,0 @@ -341,7 +353,7 @@ entities: version: 6 6,-2: ind: 6,-2 - tiles: QAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABRwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: QAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,-6: ind: 1,-6 @@ -349,15 +361,15 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAABDgAAAAAADgAAAAAARwAAAAABMwAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAABLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAABRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAADDgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAABMwAAAAACMwAAAAACRwAAAAAAMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAABDgAAAAAAMwAAAAACMwAAAAADDgAAAAAARwAAAAABLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAADLAAAAAAASQAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAARwAAAAAAMwAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAADMwAAAAACLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAALAAAAAAARwAAAAABRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABLgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABHAAAAAABDgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAACMwAAAAABMwAAAAAARwAAAAACMwAAAAACDgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAABLAAAAAAALAAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAACDgAAAAAAMwAAAAACMwAAAAAAMwAAAAADLAAAAAAASQAAAAADHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAAASQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAAECQAAAAADCQAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAALgAAAAAARwAAAAABCQAAAAADDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABDgAAAAAABAAAAAACBAAAAAADDgAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAACRwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAADCQAAAAACCQAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAARwAAAAABCQAAAAADDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACDgAAAAAABAAAAAADBAAAAAAEDgAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAABRwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,2: ind: -4,2 @@ -377,11 +389,11 @@ entities: version: 6 0,-6: ind: 0,-6 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAARwAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABBAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACBAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAADPAAAAAAGIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABPAAAAAAFDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAARwAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAAABAAAAAAEDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADBAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACRwAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAABPAAAAAAEIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABPAAAAAAGDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 6,-3: ind: 6,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,1: ind: -4,1 @@ -389,7 +401,7 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAAMwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAADDgAAAAAAQAAAAAABDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAADDgAAAAAARwAAAAAAQAAAAAACDgAAAAAA + tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAADMwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAAQAAAAAABQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAPQAAAAACDgAAAAAAQAAAAAADDgAAAAAAQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAACDgAAAAAARwAAAAACQAAAAAACDgAAAAAA version: 6 -6,-5: ind: -6,-5 @@ -397,23 +409,23 @@ entities: version: 6 3,-6: ind: 3,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAACSgAAAAACSgAAAAADSgAAAAACSgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADLgAAAAAASQAAAAABSQAAAAABHAAAAAABHAAAAAACSgAAAAACSgAAAAABSgAAAAACSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABSQAAAAABSQAAAAAASQAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAABSgAAAAABSgAAAAACSgAAAAABSgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAAASQAAAAACHAAAAAADHAAAAAAASgAAAAABSgAAAAACSgAAAAADSgAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADSQAAAAABSQAAAAABSQAAAAABHAAAAAACHAAAAAABHAAAAAABDgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: PAAAAAACIwAAAAABDgAAAAAALAAAAAAAPAAAAAACDgAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABRwAAAAABLAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAABPAAAAAAFIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADPAAAAAACPAAAAAACLAAAAAAALgAAAAAALAAAAAAAPAAAAAADIwAAAAAAIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABPAAAAAAEIwAAAAACRwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABPAAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABSgAAAAADDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAALAAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAASgAAAAABDgAAAAAASgAAAAACSgAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: PAAAAAAAIwAAAAABDgAAAAAALAAAAAAAPAAAAAAGDgAAAAAAIwAAAAADIwAAAAABIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADRwAAAAACLAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAADPAAAAAAFIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACPAAAAAAFPAAAAAABLAAAAAAALgAAAAAALAAAAAAAPAAAAAABIwAAAAABIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAAPAAAAAAAIwAAAAABRwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAFDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABPAAAAAAFDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAASgAAAAABDgAAAAAADgAAAAAASgAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAALAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAASgAAAAABDgAAAAAASgAAAAAASgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-6: ind: 4,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAADgAAAAAAPAAAAAACIwAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAGIwAAAAACDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAADgAAAAAADgAAAAAAIwAAAAACPAAAAAAEDgAAAAAAIwAAAAABIwAAAAABDgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACDgAAAAAAPAAAAAAAIwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAAIwAAAAABDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGDgAAAAAADgAAAAAAIwAAAAAAPAAAAAACDgAAAAAAIwAAAAACIwAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAABDgAAAAAARwAAAAACDgAAAAAARwAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAACDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAARwAAAAAADgAAAAAARwAAAAACDgAAAAAARwAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-4: ind: 5,-4 @@ -425,7 +437,7 @@ entities: version: 6 0,-7: ind: 0,-7 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 1,-7: ind: 1,-7 @@ -433,11 +445,11 @@ entities: version: 6 -3,-6: ind: -3,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAD version: 6 -2,-6: ind: -2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,-5: ind: -4,-5 @@ -502,6 +514,16 @@ entities: 14556: -21,3 14557: -21,2 14559: -23,2 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFF7F' + id: Bot + decals: + 20359: -5,-11 + 20360: -5,-9 + 20361: -2,-12 + 20362: -2,-8 - node: color: '#FFFFFFFF' id: Bot @@ -561,6 +583,15 @@ entities: id: BotGreyscale decals: 18583: 18,0 + - node: + zIndex: 1 + color: '#DE3A3A96' + id: BotGreyscale + decals: + 20363: -25,6 + 20364: -25,7 + 20365: -22,2 + 20366: -23,6 - node: color: '#FBB2FFFF' id: BotGreyscale @@ -1718,8 +1749,6 @@ entities: 12897: -17,-51 12898: -16,-51 12899: -15,-51 - 12900: -14,-51 - 12901: -14,-52 - node: zIndex: 1 color: '#334E6DC8' @@ -2006,6 +2035,15 @@ entities: 10329: -1,-32 10330: -1,-33 10331: 0,-33 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFF7F' + id: Dirt + decals: + 20356: 1,-12 + 20357: 1,-9 + 20358: -1,-8 - node: cleanable: True zIndex: 5 @@ -2201,6 +2239,30 @@ entities: 19385: 14,27 19455: -44,-38 19683: -10,-42 + 20109: -3,-12 + 20147: 6,-11 + 20148: 7,-10 + 20149: 6,-9 + 20150: 8,-11 + 20202: 8,4 + 20203: 10,6 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFF7F' + id: DirtHeavy + decals: + 20314: -3,-12 + 20316: -2,-11 + 20317: -3,-11 + 20318: -2,-9 + 20319: -1,-9 + 20320: 0,-10 + 20321: -1,-11 + 20352: -5,-11 + 20353: -5,-9 + 20354: -2,-12 + 20355: -2,-8 - node: cleanable: True zIndex: 5 @@ -3046,15 +3108,10 @@ entities: 8742: 5,-4 8743: 5,-4 8744: 4,-4 - 8751: 0,-9 - 8753: 4,-9 8754: 2,-11 - 8757: -5,-11 8760: 5,-9 - 8761: 5,-7 8762: 3,-8 8763: 3,-9 - 8774: 4,-13 8868: -11,10 9034: -66,-14 9035: -66,-13 @@ -3267,7 +3324,6 @@ entities: 11882: -34,7 11883: -34,6 11884: -34,5 - 11885: -34,3 11886: -34,4 11918: -15,23 11919: -9,21 @@ -3746,7 +3802,6 @@ entities: 14752: -35,9 14753: -34,4 14754: -34,4 - 14755: -34,3 14756: -27,4 14757: -27,5 14758: -28,5 @@ -5054,6 +5109,104 @@ entities: 19725: -13,-42 19728: -13,-41 19729: -13,-40 + 20091: -35,5 + 20092: -35,6 + 20093: -35,7 + 20094: -34,8 + 20095: -33,6 + 20096: -33,5 + 20097: -33,4 + 20099: -34,0 + 20100: -34,-1 + 20101: -33,-1 + 20102: -34,1 + 20204: -1,-13 + 20205: -1,-14 + 20206: 2,-11 + 20208: -5,-8 + 20209: -4,-7 + 20210: -5,-7 + 20226: 10,0 + 20227: 10,-1 + 20228: 9,0 + 20229: 7,0 + 20230: 7,0 + 20231: 6,-2 + 20232: 9,-4 + 20233: 7,-5 + 20234: 5,-5 + 20235: 4,-5 + 20236: 9,-5 + 20237: 10,-5 + 20238: 10,-4 + 20239: 10,-2 + 20240: 6,-2 + 20241: 3,-2 + 20242: 2,-3 + 20243: 4,-4 + 20244: -2,-3 + 20245: -4,-4 + 20246: -5,-3 + 20247: -11,-5 + 20248: -4,-5 + 20249: 0,-4 + 20250: 4,-3 + 20251: 4,-2 + 20252: 8,-1 + 20253: 8,-3 + 20254: 12,-3 + 20255: 13,-3 + 20256: 12,-5 + 20257: 12,-7 + 20258: 12,-7 + 20259: 5,-15 + 20260: 2,-15 + 20261: 1,-16 + 20262: -1,-16 + 20263: -2,-16 + 20264: -3,-16 + 20265: -3,-15 + 20266: -4,-16 + 20267: -6,-16 + 20268: -5,-14 + 20269: -6,-15 + 20270: -6,-14 + 20271: -6,-13 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFF7F' + id: DirtHeavyMonotile + decals: + 20322: -4,-11 + 20323: -4,-10 + 20324: -4,-9 + 20325: -1,-9 + 20326: 0,-8 + 20328: 1,-9 + 20329: 0,-10 + 20330: 0,-11 + 20331: -2,-11 + 20332: -2,-13 + 20333: 0,-10 + 20334: -2,-10 + 20335: -5,-12 + 20336: -2,-13 + 20337: 1,-14 + 20338: -4,-14 + 20339: -5,-14 + 20340: -5,-15 + 20341: 1,-15 + 20342: 3,-15 + 20343: 5,-15 + 20344: 4,-12 + 20345: 4,-8 + 20346: 2,-8 + 20347: 2,-10 + 20348: 1,-11 + 20349: -3,-8 + 20350: -2,-6 + 20351: -4,-6 - node: cleanable: True zIndex: 5 @@ -5399,6 +5552,8 @@ entities: 19717: -24,-34 19726: -12,-41 19727: -13,-41 + 20114: -1,-14 + 20115: -1,-13 - node: cleanable: True zIndex: 5 @@ -6862,6 +7017,50 @@ entities: 19426: 24,16 19427: 27,16 19428: 28,16 + 20103: -40,-1 + 20104: -35,5 + 20105: -35,13 + 20106: -37,9 + 20107: -34,3 + 20108: -34,3 + 20120: -1,-10 + 20121: -2,-10 + 20124: 0,-14 + 20125: -1,-14 + 20126: 1,-10 + 20127: 2,-10 + 20128: 2,-9 + 20211: -4,-8 + 20212: 8,-4 + 20213: 7,-3 + 20214: 8,-3 + 20215: 8,-2 + 20216: 9,-2 + 20217: 9,-1 + 20218: 3,0 + 20219: 7,0 + 20220: 8,0 + 20221: 9,4 + 20222: 8,5 + 20223: 12,2 + 20224: 12,1 + 20225: 12,0 + 20272: -6,-12 + 20273: -6,-11 + 20274: -6,-10 + 20275: -6,-9 + 20276: -5,-8 + 20277: -5,-7 + 20278: -6,-7 + 20279: -6,-8 + 20284: -6,-13 + 20285: -5,-14 + 20286: -5,-15 + 20287: -8,-15 + 20288: -7,-14 + 20289: -9,-15 + 20290: -8,-14 + 20291: -9,-21 - node: cleanable: True zIndex: 5 @@ -7252,14 +7451,7 @@ entities: 11663: -9,-16 11664: -9,-15 11672: -2,-14 - 11674: -2,-9 - 11675: -3,-9 11676: -4,-8 - 11677: -5,-10 - 11678: -4,-10 - 11679: -3,-10 - 11680: -3,-11 - 11681: -4,-11 11683: 2,-11 11684: 2,-10 11685: 3,-8 @@ -7982,6 +8174,21 @@ entities: 19680: -6,-45 19681: -9,-46 19682: -8,-46 + 20132: -3,-16 + 20133: -3,-15 + 20134: -2,-15 + 20135: -2,-16 + 20136: 4,-15 + 20137: 5,-15 + 20138: 6,-15 + 20139: 4,-12 + 20140: 4,-8 + 20141: 10,-8 + 20142: 10,-12 + 20143: 8,-5 + 20144: 6,-5 + 20145: 0,-8 + 20146: 2,-10 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8187,7 +8394,6 @@ entities: id: FullTileOverlayGreyscale decals: 14249: -15,-50 - 14250: -13,-51 14256: -19,-48 14260: -20,-50 14261: -21,-50 @@ -9887,7 +10093,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: - 17245: -2,-12 + 20295: -4,-11 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW @@ -9899,7 +10105,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: - 17244: 0,-12 + 20294: 0,-11 - node: zIndex: 1 color: '#D381C996' @@ -9923,7 +10129,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE decals: - 17243: -2,-8 + 20296: -4,-9 - node: zIndex: 1 color: '#D381C996' @@ -9941,7 +10147,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSW decals: - 17242: 0,-8 + 20297: 0,-9 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -10096,9 +10302,7 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 17239: -2,-11 - 17240: -2,-10 - 17241: -2,-9 + 20299: -4,-10 - node: color: '#52B4E996' id: WarnLineGreyscaleN @@ -10131,7 +10335,9 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 17237: -1,-12 + 20300: -3,-11 + 20301: -2,-11 + 20302: -1,-11 - node: zIndex: 1 color: '#D381C996' @@ -10166,7 +10372,9 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 17238: -1,-8 + 20303: -3,-9 + 20304: -2,-9 + 20305: -1,-9 - node: zIndex: 1 color: '#D381C996' @@ -10187,9 +10395,7 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 17234: 0,-9 - 17235: 0,-10 - 17236: 0,-11 + 20298: 0,-10 - node: color: '#FFFFFFFF' id: WarnLineN @@ -10811,6 +11017,17 @@ entities: 20025: 67,-81 20026: 65,-81 20027: 65,-80 + 20157: 6,-9 + 20158: 7,-10 + 20159: 8,-9 + 20160: 7,-9 + 20161: 8,-10 + 20162: 6,-10 + 20167: 10,-12 + 20168: 10,-8 + 20169: 8,-12 + 20170: 7,-12 + 20171: 6,-12 - node: cleanable: True zIndex: 4 @@ -10968,6 +11185,17 @@ entities: 20015: -1,-98 20016: -1,-96 20017: -1,-95 + 20153: 6,-11 + 20154: 6,-10 + 20155: 7,-10 + 20156: 7,-11 + 20163: 7,-11 + 20164: 6,-10 + 20165: 4,-12 + 20192: 8,4 + 20193: 8,5 + 20194: 9,5 + 20195: 10,6 - node: cleanable: True zIndex: 4 @@ -11081,6 +11309,20 @@ entities: 15378: 9,-102 15686: -12,-95 15687: -13,-95 + - node: + cleanable: True + zIndex: 5 + color: '#FFFFFF7F' + id: burnt3 + decals: + 20166: 4,-8 + 20172: 6,-8 + 20196: 9,6 + 20197: 11,5 + 20198: 9,5 + 20199: 9,4 + 20200: 8,4 + 20201: 10,4 - node: cleanable: True zIndex: 4 @@ -11639,6 +11881,15 @@ entities: 19995: 10,-93 19996: 9,-93 19997: 9,-94 + 20151: 8,-11 + 20152: 8,-9 + 20173: 7,-8 + 20174: 8,-8 + 20187: 8,6 + 20188: 7,5 + 20189: 9,4 + 20190: 10,4 + 20191: 10,5 - node: cleanable: True zIndex: 5 @@ -11895,7 +12146,7 @@ entities: 0: 7645 -5,-4: 0: 52431 - 1: 256 + 2: 256 -4,-3: 0: 53727 -5,-3: @@ -11910,7 +12161,7 @@ entities: 0: 65437 -4,0: 0: 13243 - 2: 2048 + 3: 2048 -3,-4: 0: 65501 -3,-3: @@ -11921,8 +12172,8 @@ entities: 0: 53247 -3,0: 0: 15 - 2: 13056 - 1: 3072 + 3: 13056 + 2: 3072 -3,-5: 0: 36863 -2,-4: @@ -11935,7 +12186,7 @@ entities: 0: 65535 -2,0: 0: 15 - 1: 3840 + 2: 3840 -2,-5: 0: 36349 -1,-4: @@ -11948,13 +12199,13 @@ entities: 0: 65535 -1,0: 0: 15 - 1: 3840 + 2: 3840 0,-4: - 0: 65523 + 0: 30707 0,-3: - 0: 65535 + 0: 30583 0,-2: - 0: 61695 + 0: 61559 0,-1: 0: 65535 -4,-8: @@ -11983,23 +12234,23 @@ entities: 0: 56793 -2,-8: 0: 61495 - 3: 136 + 1: 136 -2,-7: 0: 8176 -2,-6: 0: 64988 -2,-9: 0: 13299 - 3: 32768 + 1: 32768 -1,-8: - 3: 51 + 1: 51 0: 63500 -1,-6: 0: 65535 -1,-5: 0: 4095 -1,-9: - 3: 12288 + 1: 12288 0: 35059 -1,-7: 0: 3822 @@ -12014,7 +12265,7 @@ entities: -4,-12: 0: 62719 -4,-13: - 0: 62199 + 0: 62203 -5,-12: 0: 45279 -4,-11: @@ -12060,11 +12311,11 @@ entities: 0,-9: 0: 48056 -4,-16: - 1: 17663 + 2: 17663 -5,-16: - 1: 255 + 2: 255 -4,-15: - 1: 100 + 2: 100 0: 45056 -5,-15: 0: 65024 @@ -12075,9 +12326,9 @@ entities: -5,-13: 0: 53759 -4,-17: - 1: 17663 + 2: 17663 -3,-16: - 1: 17 + 2: 17 0: 52428 -3,-15: 0: 47308 @@ -12085,63 +12336,63 @@ entities: 0: 35775 -3,-17: 0: 52360 - 1: 19 + 2: 19 -2,-16: 0: 13175 - 1: 32768 + 2: 32768 -2,-15: 0: 64435 -2,-14: 0: 65339 -2,-17: 0: 13119 - 1: 2048 + 2: 2048 -1,-15: 0: 65328 - 1: 8 + 2: 8 -1,-14: 0: 65295 -1,-16: - 1: 59392 + 2: 59392 0,-15: - 1: 15 + 2: 15 0: 65280 0,-14: 0: 65295 0,-13: 0: 65535 -4,-18: - 1: 59592 + 2: 59592 -5,-18: - 1: 40960 + 2: 40960 -5,-17: - 1: 255 + 2: 255 -4,-20: - 1: 51400 + 2: 51400 -4,-21: - 1: 51404 + 2: 51404 -4,-19: - 1: 51400 + 2: 51400 -3,-18: - 1: 12288 + 2: 12288 0: 34952 -3,-21: - 1: 18575 + 2: 18575 -3,-20: 0: 2176 -3,-19: 0: 34952 -2,-20: 0: 4913 - 1: 34816 + 2: 34816 -2,-19: 0: 15347 -2,-18: 0: 45875 - 1: 136 + 2: 136 -2,-21: 0: 4096 - 1: 17203 + 2: 17203 -1,-19: 0: 16 -1,-17: @@ -12150,7 +12401,7 @@ entities: 0: 43688 -4,1: 0: 62259 - 2: 128 + 3: 128 -5,1: 0: 43690 -4,2: @@ -12164,14 +12415,14 @@ entities: -4,4: 0: 21759 -3,1: - 2: 513 - 1: 8208 + 3: 513 + 2: 8208 -3,2: 0: 65280 - 1: 8 + 2: 8 -3,3: 0: 13119 - 1: 32768 + 2: 32768 -3,4: 0: 47283 -2,1: @@ -12179,37 +12430,37 @@ entities: 5: 1092 -2,2: 0: 65280 - 1: 10 + 2: 10 -2,3: 0: 13 - 1: 61696 + 2: 61696 -1,1: - 2: 1365 + 3: 1365 -1,2: 0: 65280 - 1: 10 + 2: 10 -1,3: 0: 15 - 1: 5120 + 2: 5120 -2,4: - 1: 8 + 2: 8 0: 16176 -1,4: 0: 61420 0,0: 0: 15 - 1: 3328 - 2: 512 + 2: 3328 + 3: 512 0,1: 6: 273 - 2: 3276 + 3: 3276 0,2: 0: 65280 - 1: 6 - 2: 8 + 2: 6 + 3: 8 0,3: 0: 19663 - 1: 256 + 2: 256 -5,4: 0: 62395 -4,5: @@ -12217,29 +12468,29 @@ entities: -5,5: 0: 8079 -4,6: - 1: 50272 + 2: 50272 -3,5: 0: 8099 -3,6: 0: 119 - 1: 53248 + 2: 53248 -3,7: - 1: 4401 + 2: 4401 -3,8: - 1: 4401 + 2: 4401 -2,5: 0: 13104 - 1: 2184 + 2: 2184 -2,6: 0: 63 - 1: 6144 + 2: 6144 -1,6: 0: 3311 - 1: 4096 + 2: 4096 -1,5: 0: 61038 -1,7: - 1: 2 + 2: 2 0,4: 0: 65535 0,5: @@ -12248,30 +12499,28 @@ entities: 0: 36863 -8,-4: 0: 15 - 1: 768 + 2: 768 -9,-4: 0: 26239 -8,-3: 0: 44782 -9,-3: 0: 34958 - 1: 12288 + 2: 12288 -8,-2: - 0: 64522 - 7: 512 + 0: 65034 -9,-2: 0: 64904 - 1: 3 + 2: 3 -8,-1: 0: 60942 -9,-1: - 0: 35037 - 1: 12288 + 0: 51421 -8,0: 0: 26190 -7,-4: 0: 17479 - 1: 256 + 2: 256 -7,-3: 0: 65535 -7,-2: @@ -12284,20 +12533,17 @@ entities: 0: 65359 -6,-4: 0: 15 - 1: 2304 + 2: 2304 -6,-3: 0: 53727 -6,-2: - 0: 64527 - 7: 512 + 0: 65039 -6,-1: - 0: 65420 - 7: 2 + 0: 65422 -6,-5: 0: 64511 -6,0: - 0: 59907 - 8: 1024 + 0: 60931 -8,-8: 0: 65535 -8,-9: @@ -12380,28 +12626,29 @@ entities: 0: 65262 -8,-17: 0: 24576 - 1: 206 - -7,-15: - 1: 256 + 2: 206 -7,-16: - 1: 238 + 2: 750 + -7,-15: + 2: 98 + 0: 57344 -7,-14: - 0: 58470 + 0: 58478 -6,-16: - 1: 17663 + 2: 17663 -6,-14: - 0: 48043 - -6,-17: - 1: 17663 + 0: 48042 -6,-15: - 1: 196 - 0: 32768 + 0: 40960 + 2: 196 + -6,-17: + 2: 17663 -8,-20: 0: 1 - 1: 512 + 2: 512 -8,-21: 0: 4096 - 1: 32 + 2: 32 -9,-20: 0: 61423 -9,-19: @@ -12409,26 +12656,25 @@ entities: -9,-18: 0: 61423 -8,-18: - 1: 40960 + 2: 40960 -9,-17: 0: 65519 -7,-17: - 1: 511 + 2: 511 -7,-18: - 1: 40960 + 2: 40960 -6,-18: - 1: 40960 + 2: 40960 -9,0: - 0: 59528 - 1: 34 + 0: 51404 + 2: 4096 -8,1: - 0: 6 - 1: 24576 + 0: 1030 + 2: 24576 -9,1: - 0: 52462 - 1: 4096 + 0: 61164 -8,2: - 1: 2 + 2: 2 0: 61056 -9,2: 0: 60668 @@ -12462,115 +12708,114 @@ entities: 0: 62990 -8,6: 0: 7 - 1: 1792 + 2: 1792 -9,6: - 1: 52288 + 2: 52288 -8,7: - 1: 4224 + 2: 4224 -8,8: - 1: 18163 + 2: 18163 -9,7: - 1: 64716 + 2: 64716 -7,5: 0: 26159 -7,6: - 1: 4368 + 2: 4368 -7,7: - 1: 4369 + 2: 4369 -7,8: - 1: 55569 + 2: 55569 -6,5: 0: 3903 -6,6: - 1: 16454 + 2: 16454 -6,7: - 1: 2 + 2: 2 0: 35968 -6,8: - 1: 4978 + 2: 4978 -5,6: 0: 4369 - 1: 16452 + 2: 16452 -5,7: 0: 14128 - 1: 8 + 2: 8 -5,8: 0: 1 - 1: 2248 + 2: 2248 -9,8: - 1: 15 + 2: 15 -8,9: - 1: 8 + 2: 8 -7,9: - 1: 19038 + 2: 19038 -7,10: - 1: 136 + 2: 136 -6,9: - 1: 61440 + 2: 61440 -6,10: - 1: 116 + 2: 116 -5,9: - 1: 61440 + 2: 61440 -5,10: - 1: 196 + 2: 196 -4,8: - 1: 29456 + 2: 29456 -4,9: - 1: 23118 + 2: 23118 -4,10: - 1: 50 + 2: 50 -12,-4: - 1: 3712 - 2: 57344 + 2: 3712 + 3: 57344 -13,-4: 0: 48896 - 2: 7 - 1: 8 + 3: 7 + 2: 8 -12,-3: 0: 1 - 1: 62126 + 2: 62126 -13,-3: 0: 11 - 2: 59136 - 1: 6144 + 3: 59136 + 2: 6144 -12,-2: - 2: 59185 - 1: 2254 + 3: 59185 + 2: 2254 -13,-2: - 2: 140 - 1: 2114 + 3: 140 + 2: 2114 -12,-1: - 2: 140 - 1: 34816 + 3: 140 + 2: 34816 -11,-4: - 1: 1841 - 2: 61440 + 2: 1841 + 3: 61440 -11,-3: - 1: 61759 + 2: 61759 -11,-2: - 1: 5 + 2: 5 0: 36352 -12,0: - 1: 35562 + 2: 35562 -11,-5: - 1: 8048 + 2: 8048 -11,-1: 0: 34958 - 1: 8704 + 2: 8704 -10,-4: 0: 59647 - 2: 4096 + 3: 4096 -10,-3: - 1: 61633 + 2: 61633 -10,-2: 0: 65280 - 1: 12 + 2: 12 -10,-1: 0: 13311 - 1: 32768 -10,0: 0: 13105 - 1: 34816 + 2: 34944 -12,-8: 0: 64991 -12,-9: @@ -12581,17 +12826,17 @@ entities: 0: 56349 -13,-7: 0: 51404 - 1: 17 + 2: 17 -12,-6: 0: 52701 -13,-6: 0: 3838 -12,-5: - 2: 305 - 1: 4800 + 3: 305 + 2: 4800 -13,-5: - 2: 60552 - 1: 4672 + 3: 60552 + 2: 4672 -11,-8: 0: 65535 -11,-7: @@ -12608,7 +12853,7 @@ entities: 0: 61695 -10,-5: 0: 3087 - 1: 256 + 2: 256 -10,-9: 0: 65287 -12,-12: @@ -12619,7 +12864,7 @@ entities: 0: 61058 -12,-11: 0: 4367 - 1: 1024 + 2: 1024 -13,-11: 0: 34958 -12,-10: @@ -12628,7 +12873,7 @@ entities: 0: 49080 -13,-9: 0: 52424 - 1: 272 + 2: 272 -11,-10: 0: 65399 -11,-13: @@ -12637,7 +12882,7 @@ entities: 0: 61152 -11,-11: 0: 14 - 1: 1024 + 2: 1024 -10,-12: 0: 32738 -10,-11: @@ -12647,7 +12892,7 @@ entities: -10,-13: 0: 65294 -12,-15: - 1: 3 + 2: 3 0: 30464 -12,-14: 0: 30576 @@ -12657,174 +12902,173 @@ entities: 0: 60629 -11,-15: 0: 7936 - 1: 10 + 2: 10 -11,-14: 0: 56799 -10,-15: 0: 3968 - 1: 2 + 2: 2 -10,-14: 0: 61166 -10,-16: - 1: 16384 + 2: 16384 -10,-20: - 1: 4 + 2: 4 0: 3072 -10,-21: - 1: 17536 + 2: 17536 -10,-19: 0: 12 - 1: 1024 + 2: 1024 -10,-18: - 1: 4 + 2: 4 0: 3072 -10,-17: 0: 12 - 1: 1024 + 2: 1024 -9,-21: 0: 64170 -12,1: - 1: 65416 + 2: 65416 -13,1: - 1: 65392 + 2: 65392 -12,2: - 2: 3840 - 1: 61440 + 3: 3840 + 2: 61440 -13,2: - 2: 43008 - 1: 21026 + 3: 43008 + 2: 21026 -12,3: - 2: 3855 - 1: 61440 + 3: 3855 + 2: 61440 -13,3: - 2: 43016 - 1: 21026 + 3: 43016 + 2: 21026 -12,4: - 2: 3855 - 1: 61440 + 3: 3855 + 2: 61440 -11,1: - 1: 63265 + 2: 63265 0: 8 -11,3: - 1: 34560 - 2: 2048 + 2: 34560 + 3: 2048 -11,0: 0: 52416 -10,1: 0: 51 - 1: 47104 - 2: 16384 + 2: 12424 -10,3: - 2: 49408 - 1: 4096 + 3: 49408 + 2: 4096 0: 140 -11,4: - 1: 15 + 2: 15 -10,2: - 1: 290 + 2: 290 0: 32960 -10,4: - 1: 8471 - 2: 3816 + 2: 8471 + 3: 3816 -13,4: - 2: 43016 - 1: 21026 + 3: 43016 + 2: 21026 -12,5: - 2: 8207 - 1: 53760 + 3: 8207 + 2: 53760 -13,5: - 2: 8200 - 1: 53794 + 3: 8200 + 2: 53794 -12,6: - 2: 21872 - 1: 8706 + 3: 21872 + 2: 8706 -12,7: - 2: 85 - 1: 61986 + 3: 85 + 2: 61986 -12,8: - 1: 127 + 2: 127 -13,7: - 1: 61986 - 2: 85 + 2: 61986 + 3: 85 -11,5: - 1: 61952 + 2: 61952 -11,7: - 1: 61440 + 2: 61440 -11,8: - 1: 15 + 2: 15 -11,6: - 1: 2 + 2: 2 -10,5: - 1: 5760 + 2: 5760 0: 57344 -10,7: - 1: 61440 + 2: 61440 -10,8: - 1: 15 + 2: 15 -10,6: - 1: 6 + 2: 6 -13,8: - 1: 127 + 2: 127 -16,-4: 0: 65327 -16,-5: 0: 61440 - 1: 145 + 2: 145 -16,-3: 0: 65327 -17,-4: 0: 62578 -16,-2: - 1: 240 + 2: 240 -16,-1: - 1: 35071 + 2: 35071 -17,-1: - 1: 255 + 2: 255 -15,-1: - 1: 9215 + 2: 9215 -16,0: - 1: 34952 + 2: 34952 -15,-4: 0: 24576 - 1: 12 + 2: 12 -15,-3: - 1: 60416 + 2: 60416 -15,-2: - 1: 55720 + 2: 55720 -15,-5: - 1: 59561 + 2: 59561 -15,0: - 1: 8995 + 2: 8995 -14,-4: 0: 65280 - 1: 14 + 2: 14 -14,-3: 0: 15 - 1: 43776 + 2: 43776 -14,-2: - 1: 32682 + 2: 32682 -14,-1: - 1: 23 + 2: 23 -14,-5: - 1: 43695 + 2: 43695 -16,-8: - 1: 10098 + 2: 10098 -16,-7: - 1: 8995 + 2: 8995 -16,-6: - 1: 4083 + 2: 4083 -17,-6: - 1: 36848 + 2: 36848 -17,-5: - 1: 72 + 2: 72 -16,-9: - 1: 12848 + 2: 12848 -15,-8: 0: 32631 -15,-6: - 1: 14196 + 2: 14196 -15,-7: - 1: 10240 + 2: 10240 -14,-8: 0: 30711 -14,-7: @@ -12832,105 +13076,105 @@ entities: -14,-6: 0: 4095 -16,-12: - 1: 16369 + 2: 16369 -16,-13: - 1: 4369 - 2: 8738 + 2: 4369 + 3: 8738 -17,-12: - 1: 49137 + 2: 49137 -16,-11: - 1: 12850 + 2: 12850 -16,-10: - 1: 5272 - 2: 49668 + 2: 5272 + 3: 49668 -15,-12: - 1: 4083 + 2: 4083 -15,-10: - 1: 39248 - 2: 160 + 2: 39248 + 3: 160 -15,-13: - 1: 4352 - 2: 8208 + 2: 4352 + 3: 8208 0: 8 -14,-12: - 1: 3888 + 2: 3888 0: 8 -14,-10: - 2: 816 - 1: 1 + 3: 816 + 2: 1 0: 34944 -15,-9: - 1: 8 + 2: 8 -14,-9: - 1: 273 - 2: 2 + 2: 273 + 3: 2 -14,-13: 0: 52428 -16,-16: - 1: 319 + 2: 319 -16,-17: - 1: 12288 + 2: 12288 -17,-16: - 1: 20991 - 2: 8192 + 2: 20991 + 3: 8192 -16,-15: 0: 287 - 2: 4096 - 1: 8192 + 3: 4096 + 2: 8192 -16,-14: - 2: 12337 - 1: 450 + 3: 12337 + 2: 450 -17,-15: - 1: 33045 - 2: 12834 + 2: 33045 + 3: 12834 -17,-14: - 1: 361 - 2: 45200 + 2: 361 + 3: 45200 -17,-13: - 2: 43690 - 1: 4369 + 3: 43690 + 2: 4369 -15,-16: - 1: 15 + 2: 15 0: 57344 -15,-15: 0: 239 - 1: 4096 + 2: 4096 -15,-14: - 1: 1 + 2: 1 0: 61120 -14,-16: - 1: 63 + 2: 63 0: 53248 -14,-15: 0: 3295 - 1: 4096 + 2: 4096 -14,-14: 0: 57308 -13,-16: - 1: 33843 + 2: 33843 0: 4096 -13,-15: 0: 22387 -20,-4: - 1: 52428 + 2: 52428 -20,-5: - 1: 52424 + 2: 52424 -20,-3: - 1: 52428 + 2: 52428 -20,-2: - 1: 2252 + 2: 2252 -19,-4: - 1: 29184 + 2: 29184 -19,-3: - 1: 31744 + 2: 31744 -19,-2: - 1: 29596 + 2: 29596 -19,-1: - 1: 206 + 2: 206 -18,-2: - 1: 39188 + 2: 39188 -18,-1: - 1: 255 + 2: 255 -18,-4: 0: 25792 -18,-3: @@ -12938,104 +13182,107 @@ entities: -17,-3: 0: 628 -17,-2: - 1: 34928 + 2: 34928 -19,-5: - 1: 31891 + 2: 31891 -19,-6: - 1: 32448 + 2: 32448 -18,-6: - 1: 40944 + 2: 40944 -18,-5: - 1: 1113 + 2: 1113 -21,-16: - 1: 52460 + 2: 52460 -21,-17: - 1: 57344 + 2: 57344 -21,-15: - 1: 52428 + 2: 52428 -21,-14: - 1: 52428 + 2: 52428 -21,-13: - 1: 50252 + 2: 50252 -21,-12: - 1: 61164 + 2: 61164 -20,-16: - 1: 159 - 2: 32768 + 2: 159 + 3: 32768 -20,-14: - 1: 722 - 2: 32800 + 2: 722 + 3: 32800 -20,-17: - 1: 32768 + 2: 32768 -19,-16: - 1: 4607 - 2: 40960 + 2: 4607 + 3: 40960 -20,-15: - 2: 34952 + 3: 34952 -19,-15: - 1: 273 - 2: 47786 + 2: 273 + 3: 47786 -19,-14: - 2: 45072 - 1: 481 + 3: 45072 + 2: 481 -20,-13: - 2: 34952 + 3: 34952 -19,-13: - 1: 4369 - 2: 43690 + 2: 4369 + 3: 43690 -19,-17: - 1: 45056 + 2: 45056 -19,-12: - 1: 49137 + 2: 49137 -18,-16: - 1: 4607 - 2: 40960 + 2: 4607 + 3: 40960 -18,-15: - 1: 273 - 2: 47786 + 2: 273 + 3: 47786 -18,-14: - 2: 45072 - 1: 481 + 3: 45072 + 2: 481 -18,-13: - 1: 4369 - 2: 43690 + 2: 4369 + 3: 43690 -18,-17: - 1: 45056 + 2: 45056 -18,-12: - 1: 49073 + 2: 49073 -17,-17: - 1: 45056 + 2: 45056 1,-4: 0: 1136 - 1: 57344 + 2: 61440 + 1,-3: + 3: 52417 + 2: 4368 1,-2: + 3: 1 + 2: 240 0: 61440 - 2: 238 1,-1: 0: 65535 1,-5: 0: 65535 - 1,-3: - 1: 226 - 2: 57344 1,0: 0: 15 - 1: 20224 + 2: 20224 2,-4: 0: 119 - 1: 28672 + 2: 28672 2,-3: - 1: 25173 + 3: 4372 + 2: 17472 2,-2: + 2: 112 0: 61568 - 1: 100 + 3: 4 2,-1: 0: 32631 2,-5: 0: 65535 2,0: 0: 2063 - 1: 1792 + 2: 1792 3,-4: 0: 4090 3,-3: @@ -13119,9 +13366,9 @@ entities: 4,-9: 0: 16175 0,-16: - 1: 43520 + 2: 43520 1,-16: - 1: 45056 + 2: 45056 1,-15: 0: 65248 1,-14: @@ -13148,63 +13395,63 @@ entities: 0: 2240 1,-17: 0: 12 - 1: 2048 + 2: 2048 1,-18: 0: 32768 - 1: 136 + 2: 136 1,-20: - 1: 34816 + 2: 34816 2,-19: 0: 61182 2,-21: - 1: 7918 + 2: 7918 0: 16384 2,-20: 0: 20196 2,-18: 0: 61166 3,-21: - 1: 39167 + 2: 39167 3,-18: - 1: 58600 + 2: 58600 3,-20: - 1: 34952 + 2: 34952 4,-20: - 1: 4112 + 2: 4112 3,-19: - 1: 34952 + 2: 34952 4,-19: - 1: 4112 + 2: 4112 4,-18: - 1: 62960 - 2: 2560 + 2: 62960 + 3: 2560 1,1: - 2: 16657 - 1: 1028 + 3: 16657 + 2: 1028 1,2: 0: 65280 - 2: 4 - 1: 8 + 3: 4 + 2: 8 1,3: 0: 14207 1,4: 0: 65535 2,1: - 2: 1911 + 3: 1911 2,2: 0: 65280 - 1: 4 + 2: 4 2,3: 0: 49359 - 1: 256 + 2: 256 2,4: 0: 65535 3,1: - 1: 4113 + 2: 4113 0: 52416 3,2: 0: 65484 - 1: 1 + 2: 1 3,3: 0: 63679 3,4: @@ -13237,25 +13484,25 @@ entities: 0: 30719 3,7: 0: 7 - 1: 17408 - 2: 32768 + 2: 17408 + 3: 32768 3,8: - 1: 36452 - 2: 136 + 2: 36452 + 3: 136 4,4: 0: 47568 4,5: 0: 16369 4,6: 0: 13107 - 1: 8 + 2: 8 4,7: 0: 823 - 2: 12288 - 1: 16384 + 3: 12288 + 2: 16384 4,8: - 2: 307 - 1: 16068 + 3: 307 + 2: 16068 5,-4: 0: 44987 5,-3: @@ -13302,7 +13549,7 @@ entities: 0: 15291 5,-8: 0: 13311 - 1: 32768 + 2: 32768 5,-7: 0: 32627 5,-6: @@ -13311,9 +13558,9 @@ entities: 0: 7974 6,-8: 0: 35067 - 1: 4096 + 2: 4096 6,-7: - 1: 1 + 2: 1 0: 65416 6,-6: 0: 65520 @@ -13363,7 +13610,7 @@ entities: 0: 12275 7,-13: 0: 4113 - 1: 50176 + 2: 50176 8,-12: 0: 65520 8,-11: @@ -13383,50 +13630,50 @@ entities: 6,-14: 0: 15295 6,-16: - 1: 32768 - 7,-16: - 1: 14476 2: 32768 + 7,-16: + 2: 14476 + 3: 32768 7,-15: 0: 64432 7,-14: 0: 53247 7,-17: - 1: 19596 + 2: 19596 8,-16: - 2: 4096 + 3: 4096 8,-14: 0: 3838 8,-13: - 1: 36906 + 2: 36906 4,-21: - 1: 4112 + 2: 4112 5,-18: - 1: 62974 - 2: 2048 + 2: 62974 + 3: 2048 5,-19: - 1: 51200 + 2: 51200 6,-19: - 1: 4990 + 2: 4990 6,-18: - 1: 62960 - 2: 512 + 2: 62960 + 3: 512 6,-20: - 1: 51200 + 2: 51200 7,-20: - 1: 65530 - 2: 4 + 2: 65530 + 3: 4 7,-19: - 1: 17487 + 2: 17487 7,-18: - 1: 30068 - 2: 512 + 2: 30068 + 3: 512 7,-21: - 1: 64256 + 2: 64256 8,-20: - 1: 29456 + 2: 29456 8,-19: - 1: 2255 + 2: 2255 5,1: 0: 65522 5,2: @@ -13464,7 +13711,7 @@ entities: 6,5: 0: 36848 6,6: - 1: 2 + 2: 2 0: 34952 6,7: 0: 140 @@ -13472,17 +13719,17 @@ entities: 0: 40952 7,6: 0: 221 - 1: 24576 + 2: 24576 7,7: 0: 1 - 1: 2 + 2: 2 8,4: 0: 65523 8,5: 0: 4369 8,6: 0: 3327 - 1: 4096 + 2: 4096 9,-4: 0: 30583 9,-3: @@ -13497,7 +13744,7 @@ entities: 0: 65339 10,-4: 0: 49425 - 1: 192 + 2: 192 10,-3: 0: 8191 10,-2: @@ -13510,7 +13757,7 @@ entities: 0: 48682 11,-1: 0: 59 - 1: 12288 + 2: 12288 11,-4: 0: 59946 11,-3: @@ -13519,13 +13766,13 @@ entities: 0: 61175 12,-4: 0: 4367 - 1: 52224 + 2: 52224 12,-3: 0: 4353 - 1: 1028 + 2: 1028 12,-2: 0: 4353 - 1: 52420 + 2: 52420 9,-8: 0: 60943 9,-7: @@ -13542,9 +13789,9 @@ entities: 0: 47291 10,-7: 0: 14 - 1: 25600 + 2: 25600 10,-5: - 1: 33376 + 2: 33376 11,-8: 0: 25328 11,-7: @@ -13555,7 +13802,7 @@ entities: 0: 58976 12,-8: 0: 4415 - 1: 51200 + 2: 51200 12,-7: 0: 65489 12,-6: @@ -13569,25 +13816,25 @@ entities: 9,-10: 0: 61408 9,-13: - 1: 4096 + 2: 4096 10,-12: 0: 4368 10,-10: 0: 48952 10,-13: - 1: 4368 + 2: 4368 0: 140 10,-11: - 1: 8736 + 2: 8736 11,-11: 0: 21776 11,-10: 0: 28455 11,-12: - 1: 5456 + 2: 5456 12,-12: 0: 13107 - 1: 32768 + 2: 32768 12,-11: 0: 56785 12,-10: @@ -13595,27 +13842,27 @@ entities: 12,-9: 0: 16157 8,-15: - 1: 1634 + 2: 1634 9,-14: 0: 61439 9,-15: - 1: 17 + 2: 17 0: 60620 9,-16: 0: 52364 9,-17: 0: 51336 - 1: 32 + 2: 32 10,-16: 0: 56704 - 1: 2 + 2: 2 10,-15: 0: 57309 10,-14: 0: 57297 10,-17: - 2: 34816 - 1: 576 + 3: 34816 + 2: 576 11,-16: 0: 65520 11,-15: @@ -13625,8 +13872,8 @@ entities: 11,-13: 0: 127 11,-17: - 2: 62208 - 1: 3104 + 3: 62208 + 2: 3104 12,-16: 0: 56712 12,-15: @@ -13636,36 +13883,36 @@ entities: 12,-13: 0: 47935 9,-19: - 1: 62736 - 2: 2082 + 2: 62736 + 3: 2082 9,-20: - 2: 3136 + 3: 3136 9,-18: - 1: 2126 + 2: 2126 10,-20: - 1: 1792 + 2: 1792 10,-18: - 1: 25862 + 2: 25862 11,-20: - 2: 13056 - 1: 50304 + 3: 13056 + 2: 50304 11,-19: - 2: 30583 - 1: 8 + 3: 30583 + 2: 8 11,-18: - 2: 375 - 1: 17920 + 3: 375 + 2: 17920 11,-21: - 1: 6513 - 2: 142 + 2: 6513 + 3: 142 12,-20: - 2: 13107 + 3: 13107 12,-19: - 1: 5633 - 2: 24610 + 2: 5633 + 3: 24610 12,-18: - 1: 17425 - 2: 8366 + 2: 17425 + 3: 8366 9,1: 0: 8083 9,2: @@ -13674,7 +13921,7 @@ entities: 0: 65339 10,1: 0: 9010 - 1: 2176 + 2: 2176 10,2: 0: 56575 10,3: @@ -13684,38 +13931,38 @@ entities: 11,0: 0: 32624 11,1: - 1: 16 + 2: 16 0: 57344 11,2: 0: 65535 11,3: 0: 271 12,0: - 1: 51393 + 2: 51393 0: 768 - 2: 1024 + 3: 1024 12,1: - 1: 49665 + 2: 49665 12,2: 0: 30577 12,3: 0: 7 - 1: 17408 + 2: 17408 9,6: 0: 119 - 1: 8192 + 2: 8192 9,5: 0: 28398 10,4: 0: 62256 - 1: 128 + 2: 128 10,5: 0: 511 - 1: 49152 + 2: 49152 10,6: - 1: 3 + 2: 3 11,4: - 1: 80 + 2: 80 0: 61440 11,5: 0: 44799 @@ -13723,661 +13970,661 @@ entities: 0: 170 12,4: 0: 61440 - 1: 68 + 2: 68 12,5: 0: 241 - 1: 24576 + 2: 24576 12,-1: - 1: 4 + 2: 4 13,-4: 0: 1 - 1: 64 + 2: 64 13,-2: - 1: 4080 + 2: 4080 13,-5: 0: 62451 14,-2: - 1: 20478 + 2: 20478 14,-5: 0: 12336 14,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 14,0: - 2: 1038 - 1: 19264 + 3: 1038 + 2: 19264 15,-2: - 1: 20478 + 2: 20478 15,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 15,0: - 2: 1038 - 1: 19264 + 3: 1038 + 2: 19264 16,-2: - 1: 20478 + 2: 20478 13,-8: 0: 3 - 1: 17476 + 2: 17476 13,-7: 0: 62448 13,-6: 0: 65523 13,-9: - 1: 16388 + 2: 16388 0: 257 14,-7: 0: 12336 14,-6: - 1: 8224 + 2: 8224 13,-12: - 1: 64512 + 2: 64512 13,-11: 0: 65520 13,-10: 0: 4607 - 1: 49152 + 2: 49152 13,-13: 0: 13075 - 1: 2176 + 2: 2176 14,-12: - 1: 36864 + 2: 36864 0: 238 14,-11: 0: 4368 - 2: 19656 - 1: 32768 + 3: 19656 + 2: 32768 14,-10: 0: 17 - 2: 2188 - 1: 64 + 3: 2188 + 2: 64 14,-13: 0: 58606 15,-11: - 2: 401 - 1: 4710 + 3: 401 + 2: 4710 15,-10: - 2: 48 - 1: 3784 + 3: 48 + 2: 3784 15,-12: - 1: 8712 + 2: 8712 15,-13: - 1: 52832 + 2: 52832 16,-12: - 1: 8435 - 2: 35328 + 2: 8435 + 3: 35328 16,-11: - 2: 10937 - 1: 36864 + 3: 10937 + 2: 36864 0: 1024 16,-10: - 2: 383 - 1: 2176 + 3: 383 + 2: 2176 12,-17: 0: 34880 - 1: 162 + 2: 162 13,-16: 0: 4353 - 1: 17408 + 2: 17408 13,-15: 0: 12561 - 1: 2116 + 2: 2116 13,-14: 0: 48123 13,-17: 0: 4096 - 2: 16 - 1: 230 + 3: 16 + 2: 230 14,-14: 0: 65535 14,-16: - 1: 28 + 2: 28 0: 8192 14,-17: - 1: 4096 - 2: 2 + 2: 4096 + 3: 2 14,-15: 0: 57890 15,-16: - 1: 32775 - 2: 2176 + 2: 32775 + 3: 2176 15,-14: 0: 10016 15,-15: - 1: 28360 + 2: 28360 15,-17: - 1: 34944 + 2: 34944 16,-16: - 2: 61105 - 1: 14 + 3: 61105 + 2: 14 16,-15: - 2: 119 + 3: 119 16,-13: - 1: 4098 + 2: 4098 12,-21: - 1: 20480 - 2: 8977 + 2: 20480 + 3: 8977 13,-18: - 2: 8448 - 1: 4096 + 3: 8448 + 2: 4096 14,-19: - 1: 14540 + 2: 14540 14,-18: - 1: 21789 - 2: 2 + 2: 21789 + 3: 2 14,-20: - 1: 60416 - 2: 192 + 2: 60416 + 3: 192 15,-19: - 2: 57102 - 1: 8192 + 3: 57102 + 2: 8192 15,-18: - 2: 19 - 1: 32780 + 3: 19 + 2: 32780 15,-21: - 2: 7680 + 3: 7680 0: 64 15,-20: - 2: 3686 + 3: 3686 16,-20: - 2: 63235 - 1: 2216 + 3: 63235 + 2: 2216 16,-19: - 2: 48031 + 3: 48031 16,-18: - 2: 139 - 1: 31744 + 3: 139 + 2: 31744 16,-17: - 2: 49022 - 1: 16384 + 3: 49022 + 2: 16384 13,0: - 1: 20288 + 2: 20288 13,2: - 1: 65280 + 2: 65280 14,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 14,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 14,3: - 1: 14 + 2: 14 15,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 15,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 15,3: - 1: 14 + 2: 14 16,0: - 1: 19264 - 2: 1038 + 2: 19264 + 3: 1038 16,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 12,6: - 1: 2 + 2: 2 16,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 17,-2: - 1: 20478 + 2: 20478 17,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 17,0: - 2: 1038 - 1: 19264 + 3: 1038 + 2: 19264 17,-3: - 1: 32768 + 2: 32768 18,-3: - 1: 14316 + 2: 14316 18,-2: - 1: 59185 + 2: 59185 18,-1: - 1: 34956 + 2: 34956 18,-4: - 1: 32768 + 2: 32768 19,-4: - 1: 14316 + 2: 14316 19,-3: - 1: 1 + 2: 1 19,-1: - 1: 4407 + 2: 4407 18,0: - 1: 44456 - 2: 512 + 2: 44456 + 3: 512 19,0: - 1: 13105 + 2: 13105 19,-2: - 1: 60544 + 2: 60544 19,-5: - 1: 32896 + 2: 32896 20,-2: - 1: 311 + 2: 311 20,-7: - 2: 24576 + 3: 24576 19,-7: - 1: 32768 + 2: 32768 20,-6: - 1: 16912 - 2: 36078 + 2: 16912 + 3: 36078 19,-6: - 1: 200 + 2: 200 20,-5: - 1: 784 - 2: 60552 + 2: 784 + 3: 60552 20,-4: - 2: 18022 + 3: 18022 21,-6: - 2: 18367 - 1: 2048 + 3: 18367 + 2: 2048 21,-5: - 2: 55735 - 1: 8 + 3: 55735 + 2: 8 21,-8: - 1: 546 - 2: 34952 + 2: 546 + 3: 34952 21,-7: - 2: 34958 - 1: 512 + 3: 34958 + 2: 512 21,-4: - 2: 31612 + 3: 31612 21,-9: - 2: 36352 - 1: 231 + 3: 36352 + 2: 231 22,-8: - 2: 57339 - 1: 4 + 3: 57339 + 2: 4 22,-7: - 2: 4271 - 1: 57600 + 3: 4271 + 2: 57600 22,-6: - 2: 60621 - 1: 16 + 3: 60621 + 2: 16 22,-5: - 1: 1 - 2: 65534 + 2: 1 + 3: 65534 22,-9: - 2: 40908 - 1: 16434 + 3: 40908 + 2: 16434 22,-4: - 2: 15031 - 1: 8 + 3: 15031 + 2: 8 23,-8: - 2: 65295 + 3: 65295 23,-7: - 1: 13056 - 2: 52462 + 2: 13056 + 3: 52462 23,-6: - 2: 34511 - 1: 2096 + 3: 34511 + 2: 2096 23,-5: - 2: 52215 - 1: 12288 + 3: 52215 + 2: 12288 0: 1024 23,-9: - 2: 60943 + 3: 60943 0: 144 23,-4: - 2: 4 - 1: 336 + 3: 4 + 2: 336 24,-8: - 2: 4899 + 3: 4899 24,-7: - 2: 4371 + 3: 4371 24,-6: - 2: 275 - 1: 4640 + 3: 275 + 2: 4640 16,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 16,3: - 1: 14 + 2: 14 17,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 17,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 17,3: - 1: 14 + 2: 14 18,2: - 1: 65416 + 2: 65416 18,1: - 1: 34952 + 2: 34952 19,1: - 1: 4369 + 2: 4369 19,2: - 1: 13073 + 2: 13073 18,3: - 1: 8 + 2: 8 19,3: - 1: 3 + 2: 3 24,-9: - 2: 12545 + 3: 12545 0: 16 4,-24: - 1: 13107 + 2: 13107 4,-25: - 1: 4096 + 2: 4096 3,-24: - 1: 224 - 2: 12567 + 2: 224 + 3: 12567 4,-23: - 1: 4915 + 2: 4915 3,-23: - 2: 4415 - 1: 34816 - 4,-22: - 1: 4369 - 3,-22: - 1: 35016 - 2: 1 - 8,-21: - 1: 4352 - 17,-12: - 2: 53248 - 1: 11980 - 17,-11: - 2: 40129 - 1: 24588 - 17,-10: - 1: 199 - 17,-13: - 1: 17476 - 18,-12: - 2: 61426 - 1: 4096 - 18,-11: - 2: 30591 - 18,-10: - 1: 112 - 18,-13: - 1: 51336 - 19,-12: - 2: 65520 - 19,-11: - 2: 32766 - 1: 32768 - 19,-13: - 1: 4096 - 19,-10: - 2: 2 - 20,-12: - 2: 4352 - 1: 8940 - 20,-11: - 2: 32784 - 1: 14790 - 11,-23: - 2: 49152 - 11,-22: - 2: 43148 - 1: 1088 - 12,-23: - 2: 4096 - 12,-22: - 2: 273 - -4,-24: - 2: 238 - 1: 19456 - -4,-25: - 2: 57344 - -4,-23: - 1: 52292 - 2: 128 - -4,-22: - 1: 52428 - -3,-24: - 1: 487 - 2: 63000 - -3,-23: - 2: 51071 - 1: 4096 - -3,-25: - 1: 11840 - 2: 49152 - -3,-22: - 2: 4 - 1: 34816 - -2,-24: - 2: 49147 - -2,-23: - 2: 49416 - 1: 13024 - -2,-22: - 1: 13106 - 2: 68 - -2,-25: + 3: 4415 2: 34816 - 1: 640 - -1,-24: - 2: 65535 - -1,-23: - 1: 248 - 2: 39426 - -1,-22: - 1: 48 - 2: 32974 - -1,-25: - 2: 7492 - 1: 178 - 0,-24: - 2: 30481 - 1: 35054 - 0,-23: - 1: 58 - 2: 57284 - 0,-22: - 2: 29439 - -16,8: - 1: 204 - -16,7: - 1: 51336 - -15,8: - 1: 31 - -15,7: - 1: 61713 - -14,8: - 1: 127 - -14,7: - 1: 61986 - 2: 85 - -3,9: - 1: 18 - -16,2: - 1: 52360 - -16,3: - 1: 52364 - -16,4: - 1: 52364 - -16,1: - 1: 34952 - -15,1: - 1: 65315 - -15,2: - 1: 61713 - 2: 2048 - -15,3: - 1: 61713 - 2: 2056 - -15,4: - 1: 61713 - 2: 2056 - -14,1: - 1: 65280 - -14,2: - 2: 36608 - 1: 28672 - -14,3: - 2: 36623 - 1: 28672 - -14,4: - 2: 36623 - 1: 28672 - 0,-21: - 2: 2 - 0,-25: - 1: 43679 - 2: 256 - 1,-24: - 1: 547 - 2: 60620 - 1,-23: - 2: 52730 - 1,-22: - 1: 96 - 1,-25: - 1: 8449 - 2: 50910 - 2,-24: - 2: 61438 - 2,-23: - 2: 32552 - 2,-22: - 2: 231 - 1: 60928 - 2,-25: - 2: 24576 - 1: 3329 - 24,-10: + 4,-22: + 2: 4369 + 3,-22: + 2: 35016 + 3: 1 + 8,-21: + 2: 4352 + 17,-12: + 3: 53248 + 2: 11980 + 17,-11: + 3: 40129 + 2: 24588 + 17,-10: + 2: 199 + 17,-13: + 2: 17476 + 18,-12: + 3: 61426 2: 4096 - 23,-10: - 1: 52851 - 2: 12288 - -16,5: - 1: 52364 - -16,6: - 1: 34956 - -15,5: - 1: 46353 - 2: 16392 - -15,6: - 1: 4373 - -14,5: - 2: 8207 - 1: 53760 - -14,6: - 2: 21872 - 1: 8706 - -13,6: - 2: 21872 - 1: 8706 - 20,-13: - 1: 12850 - 2: 257 - 20,-10: - 1: 35879 - 2: 8 - 21,-12: - 1: 52851 - 21,-11: - 1: 264 - 2: 4096 - 21,-10: - 2: 33 - 1: 29124 - 22,-12: - 1: 4096 - 22,-11: - 1: 52851 - 22,-10: - 1: 52792 - 23,-11: - 1: 4096 - 16,-21: - 2: 48058 - 16,-14: - 1: 2 - 17,-16: - 1: 1 - 2: 65534 - 17,-15: - 2: 34021 - 1: 25360 - 17,-17: - 2: 65505 - 17,-14: - 1: 17612 - 18,-16: - 2: 62463 - 1: 3072 - 18,-15: - 2: 45055 - 1: 20480 - 18,-14: - 1: 35226 - 18,-17: - 2: 63482 - 19,-16: - 1: 4352 - 19,-15: - 2: 273 - 0: 4096 - 1: 25088 - 19,-14: - 1: 2671 - 2: 128 - 20,-14: - 1: 12816 - 2: 256 - 17,-20: - 2: 34989 - 1: 22032 - 17,-19: - 1: 34055 - 2: 2240 - 17,-18: - 1: 28417 - 2: 16 - 17,-21: - 2: 56817 - 1: 4 - 18,-20: - 2: 65527 - 18,-19: - 2: 56784 - 18,-18: - 1: 1999 - 2: 61440 - 18,-21: - 2: 12544 - 19,-19: - 2: 4384 - 19,-18: - 1: 4097 - 2: 34 - 19,-17: - 1: 256 - 16,-22: - 1: 3168 + 18,-11: + 3: 30591 + 18,-10: + 2: 112 + 18,-13: + 2: 51336 + 19,-12: + 3: 65520 + 19,-11: + 3: 32766 2: 32768 - 17,-22: - 2: 12288 - 20,-3: - 1: 60544 - 2: 8 - 21,-3: + 19,-13: + 2: 4096 + 19,-10: + 3: 2 + 20,-12: + 3: 4352 + 2: 8940 + 20,-11: + 3: 32784 + 2: 14790 + 11,-23: + 3: 49152 + 11,-22: + 3: 43148 + 2: 1088 + 12,-23: + 3: 4096 + 12,-22: + 3: 273 + -4,-24: + 3: 238 + 2: 19456 + -4,-25: + 3: 57344 + -4,-23: + 2: 52292 + 3: 128 + -4,-22: + 2: 52428 + -3,-24: + 2: 487 + 3: 63000 + -3,-23: + 3: 51071 + 2: 4096 + -3,-25: + 2: 11840 + 3: 49152 + -3,-22: + 3: 4 + 2: 34816 + -2,-24: + 3: 49147 + -2,-23: + 3: 49416 + 2: 13024 + -2,-22: + 2: 13106 + 3: 68 + -2,-25: + 3: 34816 + 2: 640 + -1,-24: + 3: 65535 + -1,-23: + 2: 248 + 3: 39426 + -1,-22: + 2: 48 + 3: 32974 + -1,-25: + 3: 7492 + 2: 178 + 0,-24: + 3: 30481 + 2: 35054 + 0,-23: + 2: 58 + 3: 57284 + 0,-22: + 3: 29439 + -16,8: + 2: 204 + -16,7: + 2: 51336 + -15,8: + 2: 31 + -15,7: + 2: 61713 + -14,8: 2: 127 - 1: 256 + -14,7: + 2: 61986 + 3: 85 + -3,9: + 2: 18 + -16,2: + 2: 52360 + -16,3: + 2: 52364 + -16,4: + 2: 52364 + -16,1: + 2: 34952 + -15,1: + 2: 65315 + -15,2: + 2: 61713 + 3: 2048 + -15,3: + 2: 61713 + 3: 2056 + -15,4: + 2: 61713 + 3: 2056 + -14,1: + 2: 65280 + -14,2: + 3: 36608 + 2: 28672 + -14,3: + 3: 36623 + 2: 28672 + -14,4: + 3: 36623 + 2: 28672 + 0,-21: + 3: 2 + 0,-25: + 2: 43679 + 3: 256 + 1,-24: + 2: 547 + 3: 60620 + 1,-23: + 3: 52730 + 1,-22: + 2: 96 + 1,-25: + 2: 8449 + 3: 50910 + 2,-24: + 3: 61438 + 2,-23: + 3: 32552 + 2,-22: + 3: 231 + 2: 60928 + 2,-25: + 3: 24576 + 2: 3329 + 24,-10: + 3: 4096 + 23,-10: + 2: 52851 + 3: 12288 + -16,5: + 2: 52364 + -16,6: + 2: 34956 + -15,5: + 2: 46353 + 3: 16392 + -15,6: + 2: 4373 + -14,5: + 3: 8207 + 2: 53760 + -14,6: + 3: 21872 + 2: 8706 + -13,6: + 3: 21872 + 2: 8706 + 20,-13: + 2: 12850 + 3: 257 + 20,-10: + 2: 35879 + 3: 8 + 21,-12: + 2: 52851 + 21,-11: + 2: 264 + 3: 4096 + 21,-10: + 3: 33 + 2: 29124 + 22,-12: + 2: 4096 + 22,-11: + 2: 52851 + 22,-10: + 2: 52792 + 23,-11: + 2: 4096 + 16,-21: + 3: 48058 + 16,-14: + 2: 2 + 17,-16: + 2: 1 + 3: 65534 + 17,-15: + 3: 34021 + 2: 25360 + 17,-17: + 3: 65505 + 17,-14: + 2: 17612 + 18,-16: + 3: 62463 + 2: 3072 + 18,-15: + 3: 45055 + 2: 20480 + 18,-14: + 2: 35226 + 18,-17: + 3: 63482 + 19,-16: + 2: 4352 + 19,-15: + 3: 273 + 0: 4096 + 2: 25088 + 19,-14: + 2: 2671 + 3: 128 + 20,-14: + 2: 12816 + 3: 256 + 17,-20: + 3: 34989 + 2: 22032 + 17,-19: + 2: 34055 + 3: 2240 + 17,-18: + 2: 28417 + 3: 16 + 17,-21: + 3: 56817 + 2: 4 + 18,-20: + 3: 65527 + 18,-19: + 3: 56784 + 18,-18: + 2: 1999 + 3: 61440 + 18,-21: + 3: 12544 + 19,-19: + 3: 4384 + 19,-18: + 2: 4097 + 3: 34 + 19,-17: + 2: 256 + 16,-22: + 2: 3168 + 3: 32768 + 17,-22: + 3: 12288 + 20,-3: + 2: 60544 + 3: 8 + 21,-3: + 3: 127 + 2: 256 22,-3: - 2: 37 + 3: 37 -1,-26: - 1: 24576 + 2: 24576 0,-26: - 1: 52352 + 2: 52352 1,-26: - 1: 4672 - 2: 60416 + 2: 4672 + 3: 60416 2,-26: - 2: 29440 - 1: 35856 + 3: 29440 + 2: 35856 3,-25: - 1: 768 + 2: 768 -20,-12: - 1: 36848 + 2: 36848 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -14394,6 +14641,21 @@ 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 immutable: True moles: @@ -14424,21 +14686,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -14484,36 +14731,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -14526,8 +14743,8 @@ entities: id: docking284 localAnchorB: 20,28.5 localAnchorA: 19,28.5 - damping: 33.95499 - stiffness: 304.7793 + damping: 33.955 + stiffness: 304.7794 - uid: 23224 components: - type: MetaData @@ -14787,6 +15004,8 @@ entities: - 15208 - uid: 2583 components: + - type: MetaData + name: Deer Garden Air Alarm - type: Transform rot: 3.141592653589793 rad pos: 3.5,-54.5 @@ -14852,6 +15071,8 @@ entities: - 23085 - uid: 3722 components: + - type: MetaData + name: EVA Air Alarm - type: Transform pos: -0.5,-54.5 parent: 2 @@ -15456,14 +15677,16 @@ entities: parent: 2 - type: DeviceList devices: - - 23101 + - 23516 - 23102 - - 9572 + - 23101 - 2693 - - 15626 - 15625 - - 23098 - - 23099 + - 15626 + - 23514 + - 23513 + - 23477 + - 23519 - uid: 14047 components: - type: MetaData @@ -15960,13 +16183,17 @@ entities: - 15672 - uid: 20239 components: + - type: MetaData + name: Captain's Room Air Alarm - type: Transform pos: -25.5,-49.5 parent: 2 - type: DeviceList devices: - - 4869 - - 4911 + - 23374 + - 23375 + - 23373 + - 23372 - uid: 21678 components: - type: Transform @@ -16126,6 +16353,17 @@ entities: - 15172 - 15171 - 23202 + - uid: 23444 + components: + - type: MetaData + name: TEG Burn Chamber + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 23477 - proto: AirCanister entities: - uid: 790 @@ -16178,6 +16416,16 @@ entities: - type: Transform pos: 29.5,-8.5 parent: 2 + - uid: 23505 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 23506 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 - proto: Airlock entities: - uid: 5908 @@ -16982,16 +17230,16 @@ entities: pos: 6.5,-13.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 4602: + 3167: - DoorStatus: DoorBolt - - uid: 4602 + - uid: 3167 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-14.5 + pos: 3.5,-14.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 @@ -18060,6 +18308,11 @@ entities: invokeCounter: 1 - proto: AirlockHeadOfPersonnelLocked entities: + - uid: 202 + components: + - type: Transform + pos: -13.5,-50.5 + parent: 2 - uid: 662 components: - type: Transform @@ -18070,11 +18323,6 @@ entities: - type: Transform pos: -14.5,-49.5 parent: 2 - - uid: 9716 - components: - - type: Transform - pos: -12.5,-50.5 - parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - uid: 7950 @@ -19053,7 +19301,7 @@ entities: - uid: 3014 components: - type: Transform - pos: 2.5,-9.5 + pos: 0.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -19173,9 +19421,6 @@ entities: - type: Transform pos: -17.5,-55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14019 - uid: 10682 components: - type: Transform @@ -19837,6 +20082,15 @@ entities: deviceLists: - 13796 - 14984 + - uid: 23477 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23444 + - 14019 - proto: AltarConvertMaint entities: - uid: 9055 @@ -19967,6 +20221,8 @@ entities: parent: 2 - uid: 2303 components: + - type: MetaData + name: Power Bank APC - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-19.5 @@ -20101,14 +20357,6 @@ entities: rot: 3.141592653589793 rad pos: 44.5,0.5 parent: 2 - - uid: 8965 - components: - - type: MetaData - name: Perma APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,6.5 - parent: 2 - uid: 9734 components: - type: MetaData @@ -20154,6 +20402,12 @@ entities: - type: Transform pos: 4.5,-20.5 parent: 2 + - uid: 10317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,4.5 + parent: 2 - uid: 10322 components: - type: Transform @@ -20227,6 +20481,8 @@ entities: parent: 2 - uid: 11807 components: + - type: MetaData + name: Front Engi APC - type: Transform rot: 3.141592653589793 rad pos: -10.5,-14.5 @@ -21359,16 +21615,6 @@ entities: - type: Transform pos: 4.5,-90.5 parent: 2 - - uid: 6991 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 2 - - uid: 7003 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 2 - uid: 7027 components: - type: Transform @@ -21379,11 +21625,6 @@ entities: - type: Transform pos: -2.5,-91.5 parent: 2 - - uid: 7054 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 2 - uid: 7070 components: - type: Transform @@ -22299,6 +22540,11 @@ entities: - type: Transform pos: -11.5,-94.5 parent: 2 + - uid: 8657 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 - uid: 9102 components: - type: Transform @@ -22364,11 +22610,6 @@ entities: - type: Transform pos: 51.5,2.5 parent: 2 - - uid: 10729 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 2 - uid: 10745 components: - type: Transform @@ -22484,11 +22725,6 @@ entities: - type: Transform pos: -48.5,-19.5 parent: 2 - - uid: 13132 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 2 - uid: 13899 components: - type: Transform @@ -22649,11 +22885,6 @@ entities: - type: Transform pos: -47.5,-5.5 parent: 2 - - uid: 16335 - components: - - type: Transform - pos: -37.5,7.5 - parent: 2 - uid: 16841 components: - type: Transform @@ -22934,11 +23165,6 @@ entities: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 17456 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - uid: 17577 components: - type: Transform @@ -23089,11 +23315,6 @@ entities: - type: Transform pos: 61.5,-3.5 parent: 2 - - uid: 18063 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 2 - uid: 18124 components: - type: Transform @@ -26779,31 +27000,6 @@ entities: - type: Transform pos: -39.5,14.5 parent: 2 - - uid: 22179 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 2 - - uid: 22180 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 2 - - uid: 22181 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 2 - - uid: 22182 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 2 - - uid: 22183 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 2 - uid: 22411 components: - type: Transform @@ -27344,6 +27540,96 @@ entities: - type: Transform pos: 20.5,28.5 parent: 23224 + - uid: 23423 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 23424 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 23425 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 23426 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 23427 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 23428 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 23429 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 23430 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 23431 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 23432 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 23433 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 23434 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 23435 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 23436 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 23437 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 23438 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 23439 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 23440 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 7764 @@ -27749,10 +28035,10 @@ entities: - type: Transform pos: 64.5,-82.5 parent: 2 - - uid: 20818 + - uid: 23331 components: - type: Transform - pos: -25.5,-55.5 + pos: -24.5,-56.5 parent: 2 - proto: BedsheetBlack entities: @@ -27775,10 +28061,10 @@ entities: parent: 2 - proto: BedsheetCaptain entities: - - uid: 16725 + - uid: 22180 components: - type: Transform - pos: -25.5,-55.5 + pos: -24.5,-56.5 parent: 2 - proto: BedsheetCE entities: @@ -27981,6 +28267,24 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,14.5 parent: 2 + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 - uid: 2010 components: - type: Transform @@ -27991,16 +28295,6 @@ entities: - type: Transform pos: 32.5,-58.5 parent: 2 - - uid: 2954 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 2 - - uid: 2989 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - uid: 3501 components: - type: Transform @@ -28017,9 +28311,16 @@ entities: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 6106 + - uid: 6850 components: - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 - uid: 7261 @@ -28039,6 +28340,12 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,29.5 parent: 2 + - uid: 9084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 - uid: 12822 components: - type: Transform @@ -28273,11 +28580,10 @@ entities: parent: 2 - proto: BoozeDispenser entities: - - uid: 16007 + - uid: 6425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-44.5 + pos: -3.5,-44.5 parent: 2 - proto: BoozeDispenserMachineCircuitboard entities: @@ -28396,6 +28702,11 @@ entities: - type: Transform pos: 27.50103,29.672012 parent: 2 + - uid: 23498 + components: + - type: Transform + pos: 2.5092506,-13.285645 + parent: 2 - proto: BoxFlashbang entities: - uid: 3955 @@ -28422,11 +28733,6 @@ entities: - type: Transform pos: -38.58369,-52.07165 parent: 2 - - uid: 15660 - components: - - type: Transform - pos: -11.92763,-48.280685 - parent: 2 - proto: BoxFolderClipboard entities: - uid: 4370 @@ -28466,11 +28772,6 @@ entities: - type: Transform pos: -0.4829991,16.537148 parent: 2 - - uid: 15661 - components: - - type: Transform - pos: -11.744785,-48.486874 - parent: 2 - proto: BoxFolderWhite entities: - uid: 7125 @@ -28597,7 +28898,7 @@ entities: - uid: 711 components: - type: Transform - pos: -36.213997,-2.385151 + pos: -37.06757,-5.2868567 parent: 2 - uid: 3559 components: @@ -28801,24 +29102,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,1.5 parent: 2 - - uid: 1696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 2 - - uid: 1784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 2 - - uid: 1810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 2 - uid: 3694 components: - type: Transform @@ -28831,6 +29114,11 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,18.5 parent: 2 + - uid: 6436 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 2 - uid: 8323 components: - type: Transform @@ -28854,6 +29142,12 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-48.5 parent: 2 + - uid: 12015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-54.5 + parent: 2 - uid: 12483 components: - type: Transform @@ -28942,6 +29236,23 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 2 + - uid: 23445 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 23446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 2 + - uid: 23447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 - proto: ButtonFrameExit entities: - uid: 1561 @@ -29131,11 +29442,6 @@ entities: - type: Transform pos: -4.5,-9.5 parent: 2 - - uid: 202 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 2 - uid: 219 components: - type: Transform @@ -29144,7 +29450,7 @@ entities: - uid: 279 components: - type: Transform - pos: -4.5,-7.5 + pos: -35.5,6.5 parent: 2 - uid: 329 components: @@ -29796,6 +30102,21 @@ entities: - type: Transform pos: 25.5,-10.5 parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 - uid: 1486 components: - type: Transform @@ -29989,18 +30310,23 @@ entities: - uid: 1770 components: - type: Transform - pos: -2.5,-11.5 + pos: 10.5,-12.5 parent: 2 - - uid: 1777 + - uid: 1784 components: - type: Transform - pos: -2.5,-7.5 + pos: -4.5,-7.5 parent: 2 - uid: 1807 components: - type: Transform pos: 16.5,32.5 parent: 2 + - uid: 1810 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 - uid: 1815 components: - type: Transform @@ -30101,6 +30427,11 @@ entities: - type: Transform pos: 62.5,-52.5 parent: 2 + - uid: 1895 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 - uid: 1896 components: - type: Transform @@ -30251,6 +30582,11 @@ entities: - type: Transform pos: 3.5,-39.5 parent: 2 + - uid: 2150 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 - uid: 2156 components: - type: Transform @@ -30321,6 +30657,16 @@ entities: - type: Transform pos: -16.5,31.5 parent: 2 + - uid: 2237 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 - uid: 2247 components: - type: Transform @@ -30354,7 +30700,7 @@ entities: - uid: 2320 components: - type: Transform - pos: -0.5,-7.5 + pos: -0.5,-12.5 parent: 2 - uid: 2334 components: @@ -30401,6 +30747,11 @@ entities: - type: Transform pos: -22.5,4.5 parent: 2 + - uid: 2401 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 - uid: 2423 components: - type: Transform @@ -30536,6 +30887,11 @@ entities: - type: Transform pos: -18.5,28.5 parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 - uid: 2502 components: - type: Transform @@ -30601,6 +30957,16 @@ entities: - type: Transform pos: -13.5,-62.5 parent: 2 + - uid: 2700 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 - uid: 2705 components: - type: Transform @@ -30881,6 +31247,16 @@ entities: - type: Transform pos: 19.5,-7.5 parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 - uid: 2922 components: - type: Transform @@ -30901,6 +31277,21 @@ entities: - type: Transform pos: -8.5,9.5 parent: 2 + - uid: 2954 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 - uid: 2993 components: - type: Transform @@ -31131,6 +31522,11 @@ entities: - type: Transform pos: 3.5,-38.5 parent: 2 + - uid: 3811 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 - uid: 3815 components: - type: Transform @@ -31156,6 +31552,11 @@ entities: - type: Transform pos: 34.5,23.5 parent: 2 + - uid: 3833 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 - uid: 3877 components: - type: Transform @@ -31201,6 +31602,11 @@ entities: - type: Transform pos: -5.5,-41.5 parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 - uid: 4065 components: - type: Transform @@ -31226,6 +31632,11 @@ entities: - type: Transform pos: -8.5,-43.5 parent: 2 + - uid: 4344 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 - uid: 4362 components: - type: Transform @@ -31246,11 +31657,26 @@ entities: - type: Transform pos: 9.5,11.5 parent: 2 + - uid: 4513 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 - uid: 4556 components: - type: Transform pos: 2.5,-36.5 parent: 2 + - uid: 4557 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 - uid: 4590 components: - type: Transform @@ -31286,6 +31712,16 @@ entities: - type: Transform pos: -29.5,-61.5 parent: 2 + - uid: 4741 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 - uid: 4790 components: - type: Transform @@ -31331,11 +31767,6 @@ entities: - type: Transform pos: -31.5,-48.5 parent: 2 - - uid: 4989 - components: - - type: Transform - pos: -36.5,3.5 - parent: 2 - uid: 4999 components: - type: Transform @@ -31361,20 +31792,10 @@ entities: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 5138 - components: - - type: Transform - pos: -35.5,3.5 - parent: 2 - uid: 5144 components: - type: Transform - pos: -1.5,-11.5 - parent: 2 - - uid: 5173 - components: - - type: Transform - pos: -35.5,4.5 + pos: -33.5,6.5 parent: 2 - uid: 5205 components: @@ -31566,6 +31987,11 @@ entities: - type: Transform pos: 57.5,-55.5 parent: 2 + - uid: 5527 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 - uid: 5535 components: - type: Transform @@ -31851,6 +32277,26 @@ entities: - type: Transform pos: 1.5,23.5 parent: 2 + - uid: 6553 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 - uid: 6570 components: - type: Transform @@ -31926,6 +32372,11 @@ entities: - type: Transform pos: -50.5,-34.5 parent: 2 + - uid: 6876 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 - uid: 6878 components: - type: Transform @@ -31971,6 +32422,11 @@ entities: - type: Transform pos: 15.5,-59.5 parent: 2 + - uid: 7006 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 - uid: 7009 components: - type: Transform @@ -32011,6 +32467,11 @@ entities: - type: Transform pos: -8.5,-17.5 parent: 2 + - uid: 7054 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 - uid: 7055 components: - type: Transform @@ -32301,16 +32762,16 @@ entities: - type: Transform pos: -50.5,-51.5 parent: 2 - - uid: 7857 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - uid: 7861 components: - type: Transform pos: 25.5,13.5 parent: 2 + - uid: 7864 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 - uid: 7874 components: - type: Transform @@ -32611,16 +33072,31 @@ entities: - type: Transform pos: -50.5,-33.5 parent: 2 - - uid: 8674 + - uid: 8695 components: - type: Transform - pos: -35.5,5.5 + pos: 7.5,-12.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + pos: 9.5,-8.5 parent: 2 - uid: 8715 components: - type: Transform pos: -21.5,-9.5 parent: 2 + - uid: 8761 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 8786 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 - uid: 8855 components: - type: Transform @@ -32829,23 +33305,13 @@ entities: - uid: 9233 components: - type: Transform - pos: 0.5,-7.5 + pos: 10.5,-11.5 parent: 2 - uid: 9251 components: - type: Transform pos: 2.5,-44.5 parent: 2 - - uid: 9261 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 2 - - uid: 9294 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - uid: 9388 components: - type: Transform @@ -32886,6 +33352,11 @@ entities: - type: Transform pos: -50.5,-12.5 parent: 2 + - uid: 9598 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 - uid: 9637 components: - type: Transform @@ -33206,6 +33677,11 @@ entities: - type: Transform pos: -22.5,-51.5 parent: 2 + - uid: 9881 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 - uid: 9917 components: - type: Transform @@ -33236,6 +33712,11 @@ entities: - type: Transform pos: -24.5,-47.5 parent: 2 + - uid: 9929 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 - uid: 9948 components: - type: Transform @@ -33256,6 +33737,11 @@ entities: - type: Transform pos: -25.5,-53.5 parent: 2 + - uid: 9953 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 - uid: 9962 components: - type: Transform @@ -33271,11 +33757,6 @@ entities: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 9987 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 2 - uid: 9991 components: - type: Transform @@ -33406,6 +33887,11 @@ entities: - type: Transform pos: -52.5,-50.5 parent: 2 + - uid: 10195 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 - uid: 10206 components: - type: Transform @@ -33426,26 +33912,31 @@ entities: - type: Transform pos: 29.5,11.5 parent: 2 + - uid: 10213 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 - uid: 10215 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 10216 + - uid: 10217 components: - type: Transform - pos: 9.5,-5.5 + pos: -26.5,-57.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + pos: -25.5,-57.5 parent: 2 - uid: 10233 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 10240 - components: - - type: Transform - pos: 3.5,-12.5 - parent: 2 - uid: 10248 components: - type: Transform @@ -33841,11 +34332,6 @@ entities: - type: Transform pos: 1.5,-14.5 parent: 2 - - uid: 10592 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 2 - uid: 10605 components: - type: Transform @@ -33856,26 +34342,11 @@ entities: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 10624 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 2 - - uid: 10674 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 2 - uid: 10675 components: - type: Transform pos: 2.5,-3.5 parent: 2 - - uid: 10676 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 2 - uid: 10677 components: - type: Transform @@ -33891,6 +34362,11 @@ entities: - type: Transform pos: 50.5,-31.5 parent: 2 + - uid: 10729 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 - uid: 10731 components: - type: Transform @@ -33936,11 +34412,6 @@ entities: - type: Transform pos: 2.5,14.5 parent: 2 - - uid: 10856 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 2 - uid: 10871 components: - type: Transform @@ -34011,6 +34482,11 @@ entities: - type: Transform pos: 6.5,1.5 parent: 2 + - uid: 11036 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 - uid: 11083 components: - type: Transform @@ -34061,11 +34537,6 @@ entities: - type: Transform pos: 10.5,-0.5 parent: 2 - - uid: 11202 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 2 - uid: 11203 components: - type: Transform @@ -34106,6 +34577,11 @@ entities: - type: Transform pos: -57.5,-51.5 parent: 2 + - uid: 11273 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 - uid: 11289 components: - type: Transform @@ -34126,6 +34602,11 @@ entities: - type: Transform pos: -22.5,-2.5 parent: 2 + - uid: 11444 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 - uid: 11474 components: - type: Transform @@ -34971,6 +35452,16 @@ entities: - type: Transform pos: -0.5,-3.5 parent: 2 + - uid: 12008 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 - uid: 12017 components: - type: Transform @@ -35116,11 +35607,6 @@ entities: - type: Transform pos: -11.5,24.5 parent: 2 - - uid: 12256 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 2 - uid: 12257 components: - type: Transform @@ -35156,11 +35642,6 @@ entities: - type: Transform pos: -7.5,-3.5 parent: 2 - - uid: 12477 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 2 - uid: 12484 components: - type: Transform @@ -35171,11 +35652,6 @@ entities: - type: Transform pos: 4.5,-3.5 parent: 2 - - uid: 12499 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 2 - uid: 12509 components: - type: Transform @@ -35356,31 +35832,11 @@ entities: - type: Transform pos: 16.5,-4.5 parent: 2 - - uid: 12992 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 2 - - uid: 13004 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 2 - - uid: 13024 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - uid: 13028 components: - type: Transform pos: -20.5,-5.5 parent: 2 - - uid: 13034 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 2 - uid: 13067 components: - type: Transform @@ -35456,11 +35912,6 @@ entities: - type: Transform pos: 48.5,-47.5 parent: 2 - - uid: 13296 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 2 - uid: 13307 components: - type: Transform @@ -35596,11 +36047,6 @@ entities: - type: Transform pos: 26.5,29.5 parent: 2 - - uid: 13678 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 2 - uid: 13679 components: - type: Transform @@ -38106,16 +38552,6 @@ entities: - type: Transform pos: 37.5,25.5 parent: 2 - - uid: 17419 - components: - - type: Transform - pos: -34.5,6.5 - parent: 2 - - uid: 17488 - components: - - type: Transform - pos: -36.5,2.5 - parent: 2 - uid: 17493 components: - type: Transform @@ -40166,11 +40602,6 @@ entities: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 20497 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 - uid: 20498 components: - type: Transform @@ -40741,11 +41172,6 @@ entities: - type: Transform pos: -25.5,-56.5 parent: 2 - - uid: 20828 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 2 - uid: 20840 components: - type: Transform @@ -42086,31 +42512,16 @@ entities: - type: Transform pos: 49.5,20.5 parent: 2 - - uid: 21875 - components: - - type: Transform - pos: -34.5,4.5 - parent: 2 - uid: 21889 components: - type: Transform pos: 35.5,24.5 parent: 2 - - uid: 21898 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 - uid: 21916 components: - type: Transform pos: 16.5,31.5 parent: 2 - - uid: 21917 - components: - - type: Transform - pos: -33.5,4.5 - parent: 2 - uid: 21935 components: - type: Transform @@ -42226,6 +42637,11 @@ entities: - type: Transform pos: 30.5,-4.5 parent: 2 + - uid: 22083 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 - uid: 22084 components: - type: Transform @@ -42256,6 +42672,11 @@ entities: - type: Transform pos: 52.5,-31.5 parent: 2 + - uid: 22183 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 - uid: 22227 components: - type: Transform @@ -42681,6 +43102,26 @@ entities: - type: Transform pos: 38.5,14.5 parent: 2 + - uid: 23336 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 23384 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 23502 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 23503 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 - proto: CableApcStack entities: - uid: 1898 @@ -42708,10 +43149,10 @@ entities: - type: Transform pos: -4.0583553,-23.375748 parent: 2 - - uid: 18969 + - uid: 21851 components: - type: Transform - pos: -34.510525,5.670819 + pos: -34.52512,5.592678 parent: 2 - proto: CableApcStack10 entities: @@ -43194,11 +43635,6 @@ entities: - type: Transform pos: -36.5,-12.5 parent: 2 - - uid: 1682 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 2 - uid: 1686 components: - type: Transform @@ -43694,11 +44130,6 @@ entities: - type: Transform pos: -54.5,25.5 parent: 2 - - uid: 2918 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 2 - uid: 2964 components: - type: Transform @@ -43829,11 +44260,6 @@ entities: - type: Transform pos: 21.5,9.5 parent: 2 - - uid: 3572 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 2 - uid: 3622 components: - type: Transform @@ -44109,11 +44535,6 @@ entities: - type: Transform pos: 4.5,-25.5 parent: 2 - - uid: 4765 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 2 - uid: 4792 components: - type: Transform @@ -44319,11 +44740,6 @@ entities: - type: Transform pos: 22.5,-13.5 parent: 2 - - uid: 6041 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 2 - uid: 6052 components: - type: Transform @@ -44894,11 +45310,6 @@ entities: - type: Transform pos: 63.5,4.5 parent: 2 - - uid: 8523 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 2 - uid: 8548 components: - type: Transform @@ -45869,16 +46280,6 @@ entities: - type: Transform pos: 29.5,-18.5 parent: 2 - - uid: 10213 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 2 - - uid: 10217 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 2 - uid: 10220 components: - type: Transform @@ -48309,6 +48710,41 @@ entities: - type: Transform pos: 48.5,-29.5 parent: 2 + - uid: 23416 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 23417 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 23418 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 23419 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 23420 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 23421 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 23422 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 - proto: CableHVStack entities: - uid: 3391 @@ -49528,11 +49964,6 @@ entities: - type: Transform pos: -14.5,-48.5 parent: 2 - - uid: 4060 - components: - - type: Transform - pos: -36.5,3.5 - parent: 2 - uid: 4062 components: - type: Transform @@ -49598,11 +50029,6 @@ entities: - type: Transform pos: 31.5,-17.5 parent: 2 - - uid: 4344 - components: - - type: Transform - pos: -33.5,3.5 - parent: 2 - uid: 4355 components: - type: Transform @@ -50383,11 +50809,6 @@ entities: - type: Transform pos: 43.5,8.5 parent: 2 - - uid: 8670 - components: - - type: Transform - pos: -35.5,3.5 - parent: 2 - uid: 8683 components: - type: Transform @@ -50998,6 +51419,11 @@ entities: - type: Transform pos: 38.5,-21.5 parent: 2 + - uid: 10314 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 - uid: 10319 components: - type: Transform @@ -51068,6 +51494,11 @@ entities: - type: Transform pos: -32.5,14.5 parent: 2 + - uid: 10676 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 - uid: 10738 components: - type: Transform @@ -51608,6 +52039,16 @@ entities: - type: Transform pos: -7.5,-13.5 parent: 2 + - uid: 11837 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 - uid: 11928 components: - type: Transform @@ -52498,6 +52939,11 @@ entities: - type: Transform pos: -56.5,-11.5 parent: 2 + - uid: 16672 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 - uid: 16741 components: - type: Transform @@ -53688,16 +54134,6 @@ entities: - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 20484 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - - uid: 20485 - components: - - type: Transform - pos: -35.5,-2.5 - parent: 2 - uid: 20486 components: - type: Transform @@ -54238,11 +54674,6 @@ entities: - type: Transform pos: 25.5,13.5 parent: 2 - - uid: 21394 - components: - - type: Transform - pos: -34.5,3.5 - parent: 2 - uid: 21764 components: - type: Transform @@ -54368,11 +54799,6 @@ entities: - type: Transform pos: 31.5,-4.5 parent: 2 - - uid: 22083 - components: - - type: Transform - pos: -34.5,6.5 - parent: 2 - uid: 22121 components: - type: Transform @@ -54563,11 +54989,6 @@ entities: - type: Transform pos: -24.5,-11.5 parent: 2 - - uid: 22622 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 - uid: 22624 components: - type: Transform @@ -54643,6 +55064,26 @@ entities: - type: Transform pos: 44.5,15.5 parent: 2 + - uid: 23344 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 23354 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 23355 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 23356 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 - proto: CableMVStack entities: - uid: 3393 @@ -54860,6 +55301,11 @@ entities: - type: Transform pos: 29.5,-41.5 parent: 2 + - uid: 23472 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 - proto: Carpet entities: - uid: 752 @@ -55181,6 +55627,16 @@ entities: - type: Transform pos: -28.5,-45.5 parent: 2 + - uid: 5799 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 - uid: 6182 components: - type: Transform @@ -55196,26 +55652,11 @@ entities: - type: Transform pos: -25.5,-51.5 parent: 2 - - uid: 9881 - components: - - type: Transform - pos: -26.5,-54.5 - parent: 2 - - uid: 9953 - components: - - type: Transform - pos: -25.5,-54.5 - parent: 2 - uid: 9964 components: - type: Transform pos: -11.5,-50.5 parent: 2 - - uid: 9965 - components: - - type: Transform - pos: -11.5,-51.5 - parent: 2 - uid: 9966 components: - type: Transform @@ -55261,6 +55702,21 @@ entities: - type: Transform pos: -23.5,-50.5 parent: 2 + - uid: 23332 + components: + - type: Transform + pos: -24.5,-55.5 + parent: 2 + - uid: 23342 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 + - uid: 23363 + components: + - type: Transform + pos: -24.5,-56.5 + parent: 2 - proto: CarpetChapel entities: - uid: 2686 @@ -58806,6 +59262,12 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-53.5 parent: 2 + - uid: 9510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-65.5 + parent: 2 - uid: 9523 components: - type: Transform @@ -60007,11 +60469,6 @@ entities: - type: Transform pos: 39.5,-64.5 parent: 2 - - uid: 18745 - components: - - type: Transform - pos: 39.5,-65.5 - parent: 2 - uid: 18746 components: - type: Transform @@ -60739,6 +61196,101 @@ entities: - type: Transform pos: 23.5,-3.5 parent: 2 + - uid: 23441 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 23453 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 23470 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 23478 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 23479 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 23482 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 23483 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 23484 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 23485 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 23486 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 23487 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 23488 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 23489 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 23490 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 23491 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 23492 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 23493 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 23494 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 23495 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 - proto: CelloInstrument entities: - uid: 5831 @@ -61701,6 +62253,12 @@ entities: rot: 1.5707963267948966 rad pos: 38.543137,2.6380181 parent: 2 + - uid: 6364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.534529,-50.386753 + parent: 2 - uid: 6601 components: - type: Transform @@ -62182,7 +62740,7 @@ entities: - uid: 20240 components: - type: Transform - pos: -24.514952,-51.179676 + pos: -26.335978,-54.32237 parent: 2 - proto: CigarSpent entities: @@ -62568,6 +63126,24 @@ entities: - type: Transform pos: -3.5,-55.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: 13130 components: - type: Transform @@ -62790,6 +63366,11 @@ entities: - type: Transform pos: 38.5,-61.5 parent: 2 + - uid: 20242 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 - uid: 21805 components: - type: Transform @@ -62807,6 +63388,16 @@ entities: - type: Transform pos: 16.5,-15.5 parent: 2 + - uid: 23381 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 23382 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 - proto: ClosetSteelBase entities: - uid: 2309 @@ -62831,6 +63422,11 @@ entities: - type: Transform pos: 12.5,-2.5 parent: 2 + - uid: 23383 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 - proto: ClothingBackpackClown entities: - uid: 12498 @@ -62979,6 +63575,41 @@ entities: - type: Transform pos: -28.528223,-21.415022 parent: 2 +- proto: ClothingBeltPlant + entities: + - uid: 17443 + components: + - type: Transform + pos: -41.50936,2.407198 + parent: 2 + - type: Storage + storedItems: + 698: + position: 0,0 + _rotation: South + 699: + position: 1,0 + _rotation: South + 20615: + position: 2,0 + _rotation: South + 17456: + position: 3,0 + _rotation: South + 17487: + position: 4,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 698 + - 699 + - 20615 + - 17456 + - 17487 - proto: ClothingBeltPlantFilled entities: - uid: 3461 @@ -64833,6 +65464,13 @@ entities: - type: Transform pos: 0.5,-57.5 parent: 2 +- proto: CrateEmergencyRadiation + entities: + - uid: 16581 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 - proto: CrateEmptySpawner entities: - uid: 14 @@ -64865,6 +65503,11 @@ entities: - type: Transform pos: -13.5,-95.5 parent: 2 + - uid: 10609 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 - uid: 10747 components: - type: Transform @@ -64965,11 +65608,6 @@ entities: - type: Transform pos: 32.5,15.5 parent: 2 - - uid: 23120 - components: - - type: Transform - pos: 0.5,-39.5 - parent: 2 - uid: 23121 components: - type: Transform @@ -64980,6 +65618,46 @@ entities: - type: Transform pos: -0.5,-25.5 parent: 2 +- proto: CrateEngineering + entities: + - uid: 15897 + components: + - type: MetaData + name: power crate + - type: Transform + pos: -5.5,-19.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: + - 16335 + - 11897 + - 16007 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateEngineeringAMEJar entities: - uid: 19547 @@ -65020,6 +65698,35 @@ entities: - type: Transform pos: 26.5,-16.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: + - 22984 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 5322 components: - type: Transform @@ -65140,32 +65847,40 @@ entities: - type: Transform pos: -2.5,-32.5 parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3245 + - 3383 + - 3246 + - 1024 + - 3244 + - 3676 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True + air: + volume: 200 + immutable: False + temperature: 234.9976 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 12674 components: - type: Transform @@ -65256,7 +65971,7 @@ entities: parent: 2 - proto: CrateServiceBureaucracy entities: - - uid: 3167 + - uid: 6106 components: - type: Transform pos: -22.5,-46.5 @@ -65280,6 +65995,24 @@ entities: - type: Transform pos: 28.5,-0.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 - proto: CrateTechBoardRandom entities: - uid: 12128 @@ -65497,11 +66230,22 @@ entities: - type: Transform pos: -4.5,-26.5 parent: 2 + - uid: 4644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-56.5 + parent: 2 - uid: 14090 components: - type: Transform pos: -52.5,-21.5 parent: 2 + - uid: 23352 + components: + - type: Transform + pos: -10.5,-50.5 + parent: 2 - proto: CurtainsCyanOpen entities: - uid: 3193 @@ -66051,10 +66795,10 @@ entities: parent: 2 - proto: DefaultStationBeaconTEG entities: - - uid: 6506 + - uid: 4989 components: - type: Transform - pos: -0.5,-9.5 + pos: -1.5,-9.5 parent: 2 - proto: DefaultStationBeaconTelecoms entities: @@ -66394,12 +67138,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-20.5 parent: 2 - - uid: 9892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-55.5 - parent: 2 - uid: 9893 components: - type: Transform @@ -67977,6 +68715,12 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-55.5 parent: 2 + - uid: 6212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-55.5 + parent: 2 - uid: 6215 components: - type: Transform @@ -71377,12 +72121,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-52.5 parent: 2 - - uid: 9885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-55.5 - parent: 2 - uid: 9888 components: - type: Transform @@ -71477,6 +72215,12 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-27.5 parent: 2 + - uid: 16725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-56.5 + parent: 2 - uid: 16904 components: - type: Transform @@ -71911,10 +72655,10 @@ entities: parent: 2 - proto: DresserCaptainFilled entities: - - uid: 20236 + - uid: 23337 components: - type: Transform - pos: -26.5,-55.5 + pos: -24.5,-55.5 parent: 2 - proto: DresserChiefEngineerFilled entities: @@ -72006,6 +72750,13 @@ entities: - type: Transform pos: 19.665367,-52.405754 parent: 2 +- proto: DrinkBlueCuracaoBottleFull + entities: + - uid: 15660 + components: + - type: Transform + pos: -11.304882,-51.25939 + parent: 2 - proto: DrinkCafeLatte entities: - uid: 13074 @@ -72032,8 +72783,10 @@ entities: - uid: 3245 components: - type: Transform - pos: -2.4337258,-32.333588 - parent: 2 + parent: 3241 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: DrinkDoctorsDelightGlass entities: - uid: 14103 @@ -72046,26 +72799,26 @@ entities: - uid: 20258 components: - type: Transform - pos: -26.689734,-54.180744 + pos: -26.356821,-56.123493 parent: 2 - proto: DrinkGinBottleFull entities: - uid: 17686 components: - type: Transform - pos: -26.391235,-54.158222 + pos: -26.690321,-56.14434 parent: 2 - proto: DrinkGlass entities: - uid: 3700 components: - type: Transform - pos: -0.6311126,-43.208096 + pos: -4.404274,-44.40526 parent: 2 - uid: 3704 components: - type: Transform - pos: -0.25592685,-43.343605 + pos: -4.195836,-44.207207 parent: 2 - uid: 17135 components: @@ -72075,7 +72828,7 @@ entities: - uid: 17137 components: - type: Transform - pos: -1.6301017,-41.40389 + pos: -1.5335453,-41.36549 parent: 2 - proto: DrinkGoldenCup entities: @@ -72134,7 +72887,7 @@ entities: - uid: 821 components: - type: Transform - pos: -26.630938,-54.356277 + pos: -26.669476,-56.206882 parent: 2 - proto: DrinkJuiceOrangeCarton entities: @@ -72157,13 +72910,29 @@ entities: - type: Transform pos: -7.242668,17.584934 parent: 2 +- proto: DrinkMelonLiquorBottleFull + entities: + - uid: 23349 + components: + - type: Transform + pos: -11.471631,-51.134304 + parent: 2 - proto: DrinkMilkCarton entities: - uid: 3244 components: - type: Transform - pos: -2.6525853,-32.28147 - parent: 2 + parent: 3241 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12256 + components: + - type: Transform + parent: 398 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: DrinkMopwataBottleRandom entities: - uid: 1380 @@ -72235,7 +73004,7 @@ entities: - uid: 3699 components: - type: Transform - pos: -0.5581603,-43.416573 + pos: -4.6439753,-44.21763 parent: 2 - uid: 7371 components: @@ -72285,8 +73054,17 @@ entities: - uid: 3246 components: - type: Transform - pos: -2.246133,-32.28147 - parent: 2 + parent: 3241 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12019 + components: + - type: Transform + parent: 398 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: DrinkSpaceGlue entities: - uid: 3898 @@ -72294,6 +73072,20 @@ entities: - type: Transform pos: 21.342222,-41.262074 parent: 2 +- proto: DrinkSpaceUpCan + entities: + - uid: 13024 + components: + - type: Transform + pos: -11.63838,-51.36363 + parent: 2 +- proto: DrinkSuiDreamGlass + entities: + - uid: 23351 + components: + - type: Transform + pos: -11.596693,-51.22812 + parent: 2 - proto: DrinkTeacup entities: - uid: 359 @@ -72328,7 +73120,7 @@ entities: - uid: 16986 components: - type: Transform - pos: -26.356236,-54.17032 + pos: -26.481882,-56.352818 parent: 2 - proto: DrinkVermouthBottleFull entities: @@ -72567,6 +73359,11 @@ entities: parent: 2 - type: Battery startingCharge: 30000 + - uid: 13159 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 - uid: 14438 components: - type: Transform @@ -72919,6 +73716,12 @@ entities: parent: 2 - type: Battery startingCharge: 30000 + - uid: 22182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 2 - uid: 22193 components: - type: Transform @@ -73060,6 +73863,18 @@ entities: parent: 2 - type: Battery startingCharge: 30000 + - uid: 23507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-23.5 + parent: 2 + - uid: 23508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 2 - proto: EmergencyMedipen entities: - uid: 9502 @@ -73260,6 +74075,11 @@ entities: - type: Transform pos: -31.5,-33.5 parent: 2 + - uid: 22179 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 - uid: 22185 components: - type: Transform @@ -73328,6 +74148,12 @@ entities: parent: 2 - proto: EZNutrientChemistryBottle entities: + - uid: 17456 + components: + - type: Transform + parent: 17443 + - type: Physics + canCollide: False - uid: 17701 components: - type: Transform @@ -73487,10 +74313,10 @@ entities: - type: Transform pos: -47.5,-43.5 parent: 2 - - uid: 20242 + - uid: 23380 components: - type: Transform - pos: -23.5,-50.5 + pos: -26.5,-51.5 parent: 2 - proto: filingCabinetRandom entities: @@ -76097,7 +76923,7 @@ entities: - uid: 20241 components: - type: Transform - pos: -24.681618,-50.804417 + pos: -26.71916,-54.26212 parent: 2 - proto: Floodlight entities: @@ -76145,6 +76971,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 6366 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 9834 components: - type: Transform @@ -76153,13 +76986,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 12124 - components: - - type: Transform - pos: -32.5,-35.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 12929 components: - type: Transform @@ -76175,13 +77001,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 14495 - components: - - type: Transform - pos: -40.5,1.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 15702 components: - type: Transform @@ -76189,14 +77008,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 19148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-45.5 - parent: 2 - - type: Fixtures - fixtures: {} - proto: FloorTileItemBar entities: - uid: 7398 @@ -76215,6 +77026,15 @@ entities: parent: 2 - type: Stack count: 30 +- proto: FloorTileItemSteelPavement + entities: + - uid: 5448 + components: + - type: Transform + pos: 16.463783,14.565649 + parent: 2 + - type: Stack + count: 10 - proto: FloraRockSolid entities: - uid: 19552 @@ -76431,7 +77251,7 @@ entities: - uid: 20417 components: - type: Transform - pos: -37.462013,-5.335156 + pos: -36.23775,-2.3289185 parent: 2 - proto: FoodBowlBigTrash entities: @@ -76445,7 +77265,7 @@ entities: - uid: 9642 components: - type: Transform - pos: -28.54685,-7.671031 + pos: -28.55009,-7.8430114 parent: 2 - proto: FoodBoxPizzaFilled entities: @@ -76481,6 +77301,15 @@ entities: - type: Transform pos: -27.418615,-45.588383 parent: 2 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 12477 + components: + - type: Transform + parent: 398 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: FoodCondimentBottleHotsauce entities: - uid: 12872 @@ -76521,6 +77350,13 @@ entities: - type: Transform pos: -4.502074,-32.16814 parent: 2 + - uid: 12499 + components: + - type: Transform + parent: 398 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: FoodDonutCaramel entities: - uid: 5594 @@ -76559,20 +77395,26 @@ entities: - uid: 3383 components: - type: Transform - pos: -2.3587275,-32.516136 - parent: 2 + parent: 3241 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 3676 components: - type: Transform - pos: -2.6524074,-32.45494 - parent: 2 + parent: 3241 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: FoodOnion entities: - uid: 1024 components: - type: Transform - pos: -2.5319834,-32.413868 - parent: 2 + parent: 3241 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: FoodPieBananaCream entities: - uid: 5033 @@ -76683,11 +77525,21 @@ entities: - type: Transform pos: 1.491024,-28.265974 parent: 2 + - uid: 10216 + components: + - type: Transform + pos: -33.625572,1.6481915 + parent: 2 - uid: 18407 components: - type: Transform pos: 30.276194,24.49647 parent: 2 + - uid: 20485 + components: + - type: Transform + pos: -33.302494,1.512681 + parent: 2 - proto: FoodTinPeachesMaintTrash entities: - uid: 2978 @@ -76721,6 +77573,14 @@ entities: - type: Transform pos: 38.637722,20.57708 parent: 2 +- proto: FuelDispenser + entities: + - uid: 23509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 2 - proto: GameMasterCircuitBoard entities: - uid: 16465 @@ -76830,6 +77690,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 23455 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasMixerFlipped entities: - uid: 1601 @@ -76840,14 +77707,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 16423 components: - type: Transform @@ -76886,20 +77745,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-44.5 parent: 2 - - uid: 6436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 2 - uid: 7680 components: - type: Transform @@ -76910,6 +77755,14 @@ entities: - type: Transform pos: 2.5,4.5 parent: 2 + - uid: 9892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPassiveVent entities: - uid: 2004 @@ -76948,26 +77801,20 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-31.5 parent: 2 + - uid: 2988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 4546 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-46.5 parent: 2 - - uid: 6850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-7.5 - parent: 2 - - uid: 6876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 6918 components: - type: Transform @@ -77041,6 +77888,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - proto: GasPipeBend entities: - uid: 645 @@ -77234,14 +78089,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 3108 components: - type: Transform @@ -77294,14 +78141,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 4572 components: - type: Transform @@ -77316,6 +78155,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4833 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4879 components: - type: Transform @@ -77399,14 +78253,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6553 + - uid: 6551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 6615 components: - type: Transform @@ -77437,13 +78291,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7006 - components: - - type: Transform - pos: 8.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 7552 components: - type: Transform @@ -77567,6 +78414,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9599 components: - type: Transform @@ -77583,6 +78438,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9957 components: - type: Transform @@ -77915,13 +78778,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14010 - components: - - type: Transform - pos: -16.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14011 components: - type: Transform @@ -77930,13 +78786,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14012 - components: - - type: Transform - pos: -18.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14080 components: - type: Transform @@ -78506,6 +79355,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23100 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 23119 components: - type: Transform @@ -78577,6 +79449,83 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23406 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23456 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23458 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeFourway entities: - uid: 676 @@ -78801,6 +79750,14 @@ entities: color: '#0055CCFF' - proto: GasPipeSensorMixedAir entities: + - uid: 1777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9725 components: - type: MetaData @@ -78817,21 +79774,21 @@ entities: baseName: gas pipe sensor - proto: GasPipeSensorTEGCold entities: - - uid: 10767 + - uid: 21319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 + rot: 3.141592653589793 rad + pos: -2.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GasPipeSensorTEGHot entities: - - uid: 8669 + - uid: 4798 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-6.5 + pos: 0.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -78916,6 +79873,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 256 components: - type: Transform @@ -78958,6 +79923,8 @@ entities: - type: Transform pos: 6.5,-5.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 461 components: - type: Transform @@ -79076,20 +80043,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 2 - uid: 1130 components: - type: Transform @@ -79098,43 +80051,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1254 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 2 - - uid: 1395 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1566 components: - type: Transform @@ -79267,13 +80189,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1710 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1716 components: - type: Transform @@ -79428,14 +80343,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 1968 components: - type: Transform @@ -79824,14 +80731,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 2182 components: - type: Transform @@ -79864,13 +80763,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2243 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2265 components: - type: Transform @@ -80012,14 +80904,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2517 components: - type: Transform @@ -80115,22 +80999,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 2958 components: - type: Transform @@ -80331,6 +81199,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 3641 components: - type: Transform @@ -80739,14 +81615,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 - - uid: 4833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 4850 components: - type: Transform @@ -80784,6 +81652,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4928 components: - type: Transform @@ -80807,6 +81683,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5028 components: - type: Transform @@ -80882,22 +81766,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 5163 components: - type: Transform @@ -81060,14 +81928,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 5819 components: - type: Transform @@ -81143,14 +82003,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 6308 components: - type: Transform @@ -81215,6 +82067,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6358 components: - type: Transform @@ -81223,16 +82083,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6366 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 2 - - uid: 6425 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 2 - uid: 6445 components: - type: Transform @@ -81261,6 +82111,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6467 components: - type: Transform @@ -81311,14 +82169,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 6552 components: - type: Transform @@ -81327,14 +82177,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 6565 components: - type: Transform @@ -81480,6 +82322,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6674 components: - type: Transform @@ -81681,6 +82531,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6888 components: - type: Transform @@ -81696,6 +82554,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6924 components: - type: Transform @@ -81736,6 +82602,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7018 components: - type: Transform @@ -81743,6 +82617,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 7035 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 7046 components: - type: Transform @@ -81867,6 +82748,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7633 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 7703 components: - type: Transform @@ -81913,6 +82801,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 7857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7863 components: - type: Transform @@ -82213,6 +83109,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 8670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8676 components: - type: Transform @@ -82221,6 +83133,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 8679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8681 components: - type: Transform @@ -82386,6 +83306,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8990 components: - type: Transform @@ -82394,14 +83322,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 9128 components: - type: Transform @@ -82441,6 +83361,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9261 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9283 components: - type: Transform @@ -82456,6 +83383,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9335 components: - type: Transform @@ -82848,14 +83783,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 9616 components: - type: Transform @@ -82886,6 +83813,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9887 components: - type: Transform @@ -82894,14 +83845,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 9955 components: - type: Transform @@ -82942,6 +83885,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10152 components: - type: Transform @@ -82957,13 +83908,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10154 - components: - - type: Transform - pos: -16.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10166 components: - type: Transform @@ -82979,13 +83923,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10200 - components: - - type: Transform - pos: -18.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 10201 components: - type: Transform @@ -83018,6 +83955,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10477 components: - type: Transform @@ -83125,11 +84070,10 @@ entities: - uid: 10556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 + pos: -2.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 10572 components: - type: Transform @@ -83242,6 +84186,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10654 components: - type: Transform @@ -83281,6 +84233,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10760 components: - type: Transform @@ -83364,14 +84324,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 10964 components: - type: Transform @@ -83419,14 +84371,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 11126 components: - type: Transform @@ -83479,14 +84423,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 11215 components: - type: Transform @@ -84688,6 +85624,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13264 components: - type: Transform @@ -86569,14 +87513,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14007 components: - type: Transform @@ -90529,6 +91465,8 @@ entities: - type: Transform pos: 34.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 17878 components: - type: Transform @@ -90552,6 +91490,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 18063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 18551 components: - type: Transform @@ -90613,6 +91559,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 18969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 19023 components: - type: Transform @@ -90629,6 +91583,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 19148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 19290 components: - type: Transform @@ -90707,6 +91669,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 20828 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 21054 components: - type: Transform @@ -90915,6 +91884,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 21875 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 21948 components: - type: Transform @@ -91738,14 +92714,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23107 components: - type: Transform @@ -91972,6 +92940,360 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23393 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23394 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23395 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23396 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23397 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23409 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23410 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23413 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23451 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23452 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23454 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 23469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 23475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 23510 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23511 + components: + - type: Transform + pos: -16.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23512 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeTJunction entities: - uid: 129 @@ -91990,14 +93312,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1308 components: - type: Transform @@ -92254,13 +93568,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4513 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 4566 components: - type: Transform @@ -92368,14 +93675,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 6498 components: - type: Transform @@ -92672,6 +93971,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9267 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9406 components: - type: Transform @@ -92727,6 +94033,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9630 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9634 components: - type: Transform @@ -92735,6 +94048,43 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9683 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9693 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9716 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10163 components: - type: Transform @@ -92797,6 +94147,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10987 components: - type: Transform @@ -93702,13 +95060,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15121 - components: - - type: Transform - pos: -19.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15161 components: - type: Transform @@ -93865,14 +95216,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17443 + - uid: 17488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-51.5 + rot: 3.141592653589793 rad + pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#03FCD3FF' - uid: 17795 components: - type: Transform @@ -93905,6 +95256,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 19570 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 21066 components: - type: Transform @@ -94108,6 +95466,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPort entities: - uid: 122 @@ -94154,6 +95528,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4495 components: - type: Transform @@ -94196,25 +95578,14 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-45.5 parent: 2 - - uid: 8761 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 2 - - uid: 9267 + - uid: 11112 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-10.5 + pos: -1.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 10060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 2 - uid: 12135 components: - type: Transform @@ -94253,56 +95624,30 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-13.5 parent: 2 -- proto: GasPressurePump - entities: - - uid: 67 + - uid: 23480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-10.5 + rot: 1.5707963267948966 rad + pos: -4.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#947507FF' + - uid: 23481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPressurePump + entities: - uid: 564 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,0.5 parent: 2 - - uid: 1124 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 2 - - uid: 1140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-4.5 - parent: 2 - - uid: 1223 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1607 components: - type: MetaData @@ -94347,6 +95692,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 2918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4517 components: - type: Transform @@ -94383,14 +95736,16 @@ entities: rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 2 - - uid: 10122 + - uid: 9885 components: + - type: MetaData + name: Burn Chamber Supply - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-12.5 + pos: 0.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#947507FF' - uid: 12512 components: - type: Transform @@ -94398,6 +95753,31 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23460 + components: + - type: MetaData + name: Burn Chamber Supply + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - proto: GasThermoMachineFreezer entities: - uid: 1626 @@ -94471,6 +95851,26 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 2 + - uid: 23403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasVentPump entities: - uid: 621 @@ -94668,17 +96068,6 @@ entities: - 13800 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-51.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20239 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4902 components: - type: Transform @@ -95981,17 +97370,6 @@ entities: - 14004 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-51.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14019 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23101 components: - type: Transform @@ -96099,6 +97477,50 @@ entities: - 23193 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14019 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14019 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 131 @@ -96281,17 +97703,6 @@ entities: - 13645 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-51.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 20239 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 5054 components: - type: Transform @@ -97590,17 +99001,6 @@ entities: - 14004 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 23098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-52.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14019 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 23102 components: - type: Transform @@ -97695,14 +99095,89 @@ entities: - 17445 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20239 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20239 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14019 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23519 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14019 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasVolumePump entities: + - uid: 10856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12148 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-35.5 parent: 2 + - uid: 13995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 18007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: Gauze entities: - uid: 18976 @@ -97719,6 +99194,15 @@ entities: parent: 2 - type: Stack count: 4 +- proto: GeigerCounter + entities: + - uid: 16335 + components: + - type: Transform + parent: 15897 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Girder entities: - uid: 51 @@ -98046,10 +99530,10 @@ entities: parent: 2 - proto: GlassBoxLaserFilled entities: - - uid: 13995 + - uid: 23379 components: - type: Transform - pos: -26.5,-52.5 + pos: -26.5,-55.5 parent: 2 - proto: GoldRingDiamond entities: @@ -98294,11 +99778,6 @@ entities: - type: Transform pos: -47.5,-18.5 parent: 2 - - uid: 718 - components: - - type: Transform - pos: -33.5,1.5 - parent: 2 - uid: 729 components: - type: Transform @@ -98544,6 +100023,11 @@ entities: - type: Transform pos: -59.5,19.5 parent: 2 + - uid: 1395 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 - uid: 1509 components: - type: Transform @@ -98599,6 +100083,11 @@ entities: - type: Transform pos: 67.5,-73.5 parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 - uid: 1751 components: - type: Transform @@ -98739,11 +100228,6 @@ entities: - type: Transform pos: -21.5,-63.5 parent: 2 - - uid: 2450 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - uid: 2507 components: - type: Transform @@ -98784,11 +100268,6 @@ entities: - type: Transform pos: -13.5,-61.5 parent: 2 - - uid: 2700 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 - uid: 2746 components: - type: Transform @@ -99324,11 +100803,6 @@ entities: - type: Transform pos: 25.5,-26.5 parent: 2 - - uid: 4557 - components: - - type: Transform - pos: -35.5,4.5 - parent: 2 - uid: 4568 components: - type: Transform @@ -99349,6 +100823,11 @@ entities: - type: Transform pos: -2.5,-5.5 parent: 2 + - uid: 4602 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 - uid: 4619 components: - type: Transform @@ -99424,16 +100903,6 @@ entities: - type: Transform pos: -37.5,-76.5 parent: 2 - - uid: 4784 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 2 - - uid: 4798 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 2 - uid: 4800 components: - type: Transform @@ -99634,6 +101103,11 @@ entities: - type: Transform pos: -21.5,-24.5 parent: 2 + - uid: 5173 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 - uid: 5178 components: - type: Transform @@ -99664,11 +101138,6 @@ entities: - type: Transform pos: 16.5,-44.5 parent: 2 - - uid: 5333 - components: - - type: Transform - pos: -35.5,5.5 - parent: 2 - uid: 5369 components: - type: Transform @@ -99754,11 +101223,6 @@ entities: - type: Transform pos: -42.5,-26.5 parent: 2 - - uid: 5558 - components: - - type: Transform - pos: -37.5,7.5 - parent: 2 - uid: 5568 components: - type: Transform @@ -99909,11 +101373,6 @@ entities: - type: Transform pos: -63.5,-17.5 parent: 2 - - uid: 6162 - components: - - type: Transform - pos: -36.5,7.5 - parent: 2 - uid: 6171 components: - type: Transform @@ -99949,16 +101408,6 @@ entities: - type: Transform pos: -33.5,-83.5 parent: 2 - - uid: 6338 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 2 - - uid: 6364 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - uid: 6386 components: - type: Transform @@ -99979,11 +101428,6 @@ entities: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 6465 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 2 - uid: 6475 components: - type: Transform @@ -99994,6 +101438,11 @@ entities: - type: Transform pos: -18.5,9.5 parent: 2 + - uid: 6506 + components: + - type: Transform + pos: -13.5,-51.5 + parent: 2 - uid: 6512 components: - type: Transform @@ -100014,11 +101463,6 @@ entities: - type: Transform pos: 8.5,1.5 parent: 2 - - uid: 6560 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - uid: 6585 components: - type: Transform @@ -100049,11 +101493,6 @@ entities: - type: Transform pos: 30.5,11.5 parent: 2 - - uid: 6673 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 2 - uid: 6730 components: - type: Transform @@ -100194,6 +101633,11 @@ entities: - type: Transform pos: 43.5,-70.5 parent: 2 + - uid: 7436 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 - uid: 7589 components: - type: Transform @@ -100224,6 +101668,11 @@ entities: - type: Transform pos: -35.5,-8.5 parent: 2 + - uid: 7752 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 - uid: 7784 components: - type: Transform @@ -100489,6 +101938,11 @@ entities: - type: Transform pos: -12.5,-80.5 parent: 2 + - uid: 8244 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 - uid: 8245 components: - type: Transform @@ -100584,11 +102038,6 @@ entities: - type: Transform pos: -19.5,-57.5 parent: 2 - - uid: 8657 - components: - - type: Transform - pos: -35.5,3.5 - parent: 2 - uid: 8697 components: - type: Transform @@ -100774,11 +102223,6 @@ entities: - type: Transform pos: -17.5,29.5 parent: 2 - - uid: 9598 - components: - - type: Transform - pos: -34.5,-3.5 - parent: 2 - uid: 9608 components: - type: Transform @@ -100839,6 +102283,11 @@ entities: - type: Transform pos: -49.5,32.5 parent: 2 + - uid: 9924 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 - uid: 9928 components: - type: Transform @@ -100854,6 +102303,11 @@ entities: - type: Transform pos: 80.5,-50.5 parent: 2 + - uid: 9987 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 - uid: 10005 components: - type: Transform @@ -100994,20 +102448,15 @@ entities: - type: Transform pos: 20.5,-37.5 parent: 2 - - uid: 10314 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 2 - uid: 10316 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - uid: 10317 + - uid: 10383 components: - type: Transform - pos: 6.5,-9.5 + pos: 5.5,-8.5 parent: 2 - uid: 10395 components: @@ -101094,6 +102543,11 @@ entities: - type: Transform pos: 7.5,-59.5 parent: 2 + - uid: 10592 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 - uid: 10613 components: - type: Transform @@ -101469,11 +102923,6 @@ entities: - type: Transform pos: 89.5,-37.5 parent: 2 - - uid: 11653 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - uid: 11672 components: - type: Transform @@ -101524,25 +102973,15 @@ entities: - type: Transform pos: 37.5,-8.5 parent: 2 - - uid: 12006 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 2 - - uid: 12014 + - uid: 12003 components: - type: Transform pos: 5.5,-9.5 parent: 2 - - uid: 12015 + - uid: 12006 components: - type: Transform - pos: 4.5,-6.5 - parent: 2 - - uid: 12019 - components: - - type: Transform - pos: 7.5,-9.5 + pos: -22.5,-12.5 parent: 2 - uid: 12044 components: @@ -101899,11 +103338,6 @@ entities: - type: Transform pos: 76.5,2.5 parent: 2 - - uid: 13246 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 2 - uid: 13267 components: - type: Transform @@ -102524,11 +103958,6 @@ entities: - type: Transform pos: 35.5,20.5 parent: 2 - - uid: 15461 - components: - - type: Transform - pos: -36.5,-0.5 - parent: 2 - uid: 15469 components: - type: Transform @@ -102539,11 +103968,6 @@ entities: - type: Transform pos: -48.5,-7.5 parent: 2 - - uid: 15472 - components: - - type: Transform - pos: -34.5,1.5 - parent: 2 - uid: 15614 components: - type: Transform @@ -104724,6 +106148,11 @@ entities: - type: Transform pos: 8.5,-70.5 parent: 2 + - uid: 20187 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 - uid: 20190 components: - type: Transform @@ -104784,11 +106213,26 @@ entities: - type: Transform pos: -3.5,-59.5 parent: 2 + - uid: 20236 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - uid: 20237 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 - uid: 20390 components: - type: Transform pos: -36.5,19.5 parent: 2 + - uid: 20484 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 - uid: 20504 components: - type: Transform @@ -104949,11 +106393,21 @@ entities: - type: Transform pos: 97.5,-23.5 parent: 2 + - uid: 20818 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 - uid: 21369 components: - type: Transform pos: -56.5,-55.5 parent: 2 + - uid: 21394 + components: + - type: Transform + pos: -26.5,-57.5 + parent: 2 - uid: 21433 components: - type: Transform @@ -105419,6 +106873,11 @@ entities: - type: Transform pos: 36.5,21.5 parent: 2 + - uid: 21890 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 - uid: 21895 components: - type: Transform @@ -105539,6 +106998,16 @@ entities: - type: Transform pos: -5.5,-30.5 parent: 2 + - uid: 23329 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 23334 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 - proto: GrilleBroken entities: - uid: 1127 @@ -105679,6 +107148,12 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-88.5 parent: 2 + - uid: 6263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-59.5 + parent: 2 - uid: 6750 components: - type: Transform @@ -107087,6 +108562,24 @@ entities: anchored: True pos: -20.5,5.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: GunSafeRifleLecter @@ -107222,19 +108715,43 @@ entities: parent: 2 - proto: HeatExchanger entities: - - uid: 6877 + - uid: 5138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-10.5 + rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 7035 + - uid: 23385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' @@ -107277,7 +108794,7 @@ entities: - uid: 13003 components: - type: Transform - pos: -5.511777,-10.439039 + pos: -5.641494,-15.270632 parent: 2 - uid: 13182 components: @@ -107424,7 +108941,7 @@ entities: parent: 2 - proto: HolopadEngineeringAtmosTeg entities: - - uid: 11980 + - uid: 23408 components: - type: Transform pos: 1.5,-9.5 @@ -107702,10 +109219,9 @@ entities: parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 8786 + - uid: 6395 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,-5.5 parent: 2 - uid: 11015 @@ -107753,7 +109269,7 @@ entities: rot: 1.5707963267948966 rad pos: 90.5,-22.5 parent: 2 - - uid: 20187 + - uid: 20125 components: - type: Transform pos: -41.5,-3.5 @@ -107820,14 +109336,15 @@ entities: - uid: 20615 components: - type: Transform - pos: -39.416355,5.436454 - parent: 2 + parent: 17443 + - type: Physics + canCollide: False - proto: HydroponicsToolHatchet entities: - uid: 3434 components: - type: Transform - pos: -18.617315,-39.39356 + pos: -18.463158,-39.2729 parent: 2 - uid: 17264 components: @@ -107839,12 +109356,13 @@ entities: - uid: 699 components: - type: Transform - pos: -41.562313,3.3809266 - parent: 2 + parent: 17443 + - type: Physics + canCollide: False - uid: 3433 components: - type: Transform - pos: -19.461483,-39.341442 + pos: -18.932138,-39.314594 parent: 2 - uid: 11710 components: @@ -107861,7 +109379,7 @@ entities: - uid: 3431 components: - type: Transform - pos: -18.513096,-39.435257 + pos: -18.338095,-39.314594 parent: 2 - uid: 17307 components: @@ -107873,12 +109391,13 @@ entities: - uid: 698 components: - type: Transform - pos: -41.516033,2.3290048 - parent: 2 + parent: 17443 + - type: Physics + canCollide: False - uid: 3430 components: - type: Transform - pos: -19.357265,-39.39356 + pos: -18.8175,-39.314594 parent: 2 - uid: 15746 components: @@ -108293,6 +109812,16 @@ entities: - type: Transform pos: -26.93114,-48.32984 parent: 2 + - uid: 23346 + components: + - type: Transform + pos: -36.758842,-2.4227333 + parent: 2 + - uid: 23347 + components: + - type: Transform + pos: -36.592094,-2.5061245 + parent: 2 - proto: KoboldCubeWrapped entities: - uid: 9414 @@ -108377,7 +109906,7 @@ entities: - uid: 6098 components: - type: Transform - pos: -36.465275,-53.173172 + pos: -36.48969,-53.059856 parent: 2 - type: HandheldLight toggleActionEntity: 6113 @@ -108639,6 +110168,8 @@ entities: - Pressed: Toggle - uid: 15649 components: + - type: MetaData + name: Shutters - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-52.5 @@ -108649,6 +110180,24 @@ entities: - Pressed: Toggle 15647: - Pressed: Toggle + - uid: 23359 + components: + - type: MetaData + name: Shutters + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23360: + - Pressed: Toggle + 23378: + - Pressed: Toggle + 23362: + - Pressed: Toggle + 23361: + - Pressed: Toggle - proto: LockableButtonCargo entities: - uid: 17447 @@ -108687,6 +110236,8 @@ entities: entities: - uid: 21250 components: + - type: MetaData + name: Shutters - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-35.5 @@ -108753,6 +110304,8 @@ entities: entities: - uid: 15629 components: + - type: MetaData + name: Shutters - type: Transform rot: 3.141592653589793 rad pos: -14.5,-57.5 @@ -108775,48 +110328,6 @@ entities: - Pressed: Toggle - proto: LockableButtonEngineering entities: - - uid: 1651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2989: - - Pressed: Toggle - 2954: - - Pressed: Toggle - 6106: - - Pressed: Toggle - - uid: 2401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2954: - - Pressed: Toggle - 6106: - - Pressed: Toggle - 2989: - - Pressed: Toggle - - uid: 3811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2954: - - Pressed: Toggle - 6106: - - Pressed: Toggle - 2989: - - Pressed: Toggle - uid: 11423 components: - type: MetaData @@ -108833,6 +110344,65 @@ entities: - Pressed: Toggle 4048: - Pressed: Toggle + - uid: 23448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6850: + - Pressed: Toggle + 9084: + - Pressed: Toggle + 7003: + - Pressed: Toggle + 1008: + - Pressed: Toggle + 1124: + - Pressed: Toggle + 1123: + - Pressed: Toggle + - uid: 23449 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1008: + - Pressed: Toggle + 1124: + - Pressed: Toggle + 1123: + - Pressed: Toggle + 6850: + - Pressed: Toggle + 9084: + - Pressed: Toggle + 7003: + - Pressed: Toggle + - uid: 23450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7003: + - Pressed: Toggle + 9084: + - Pressed: Toggle + 6850: + - Pressed: Toggle + 1123: + - Pressed: Toggle + 1124: + - Pressed: Toggle + 1008: + - Pressed: Toggle - proto: LockableButtonHeadOfPersonnel entities: - uid: 3577 @@ -108855,6 +110425,17 @@ entities: - Pressed: Toggle 15657: - Pressed: Toggle + - uid: 6338 + components: + - type: MetaData + name: Shutters + - type: Transform + pos: -12.5,-49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6351: + - Pressed: Toggle - proto: LockableButtonHeadOfSecurity entities: - uid: 14821 @@ -109208,19 +110789,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11837: + 14006: - Pressed: Toggle - 11838: + 14012: - Pressed: Toggle - 4644: - - Pressed: Toggle - 527: + 14774: - Pressed: Toggle 20173: - Pressed: Toggle 17722: - Pressed: Toggle - 1053: + 11980: - Pressed: Toggle 4890: - Pressed: Toggle @@ -109257,10 +110836,10 @@ entities: parent: 2 - proto: LockerCaptainFilledNoLaser entities: - - uid: 9961 + - uid: 10154 components: - type: Transform - pos: -26.5,-51.5 + pos: -26.5,-52.5 parent: 2 - proto: LockerChemistryFilled entities: @@ -109427,6 +111006,41 @@ entities: - type: Transform pos: -37.5,-2.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: + - 20229 + - 12499 + - 12477 + - 12256 + - 12124 + - 12019 + - 12992 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerFreezerVaultFilled entities: - uid: 2772 @@ -109436,10 +111050,10 @@ entities: parent: 2 - proto: LockerHeadOfPersonnelFilled entities: - - uid: 9711 + - uid: 23348 components: - type: Transform - pos: -11.5,-51.5 + pos: -12.5,-51.5 parent: 2 - proto: LockerHeadOfSecurityFilled entities: @@ -109633,8 +111247,8 @@ entities: showEnts: False occludes: True ents: - - 15168 - 16029 + - 15168 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -110015,11 +111629,6 @@ entities: - type: Transform pos: 58.5,-55.5 parent: 2 - - uid: 21851 - components: - - type: Transform - pos: -34.5,3.5 - parent: 2 - uid: 22637 components: - type: Transform @@ -110682,6 +112291,11 @@ entities: - type: Transform pos: 42.5,-0.5 parent: 2 + - uid: 10240 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 - uid: 10482 components: - type: Transform @@ -111183,7 +112797,7 @@ entities: - uid: 6361 components: - type: Transform - pos: -11.630145,-48.309666 + pos: -11.694337,-48.372257 parent: 2 - proto: MaterialCloth1 entities: @@ -111221,7 +112835,7 @@ entities: - uid: 7551 components: - type: Transform - pos: -11.59888,-47.871864 + pos: -11.475477,-47.861485 parent: 2 - proto: MaterialWoodPlank entities: @@ -111397,7 +113011,7 @@ entities: - uid: 14770 components: - type: Transform - pos: -28.465706,-30.352795 + pos: -28.477879,-30.138975 parent: 2 - uid: 14907 components: @@ -111612,11 +113226,6 @@ entities: parent: 2 - type: TimedSpawner intervalSeconds: 840 - - uid: 5862 - components: - - type: Transform - pos: -46.5,-50.5 - parent: 2 - uid: 7092 components: - type: Transform @@ -111631,6 +113240,11 @@ entities: parent: 2 - type: TimedSpawner intervalSeconds: 720 + - uid: 13296 + components: + - type: Transform + pos: -44.5,-51.5 + parent: 2 - uid: 16089 components: - type: Transform @@ -111761,6 +113375,11 @@ entities: - type: Transform pos: -8.5,-78.5 parent: 2 + - uid: 13031 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 - uid: 13615 components: - type: Transform @@ -111982,11 +113601,6 @@ entities: - type: Transform pos: 35.5,8.5 parent: 2 - - uid: 7436 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 2 - uid: 11068 components: - type: Transform @@ -112027,6 +113641,11 @@ entities: - type: Transform pos: -37.5,-44.5 parent: 2 + - uid: 23343 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 - proto: OxygenTankFilled entities: - uid: 5326 @@ -112039,7 +113658,7 @@ entities: - uid: 12067 components: - type: Transform - pos: -41.57583,-5.567674 + pos: -42.39146,-3.5266213 parent: 2 - proto: PaintingSkeletonCigarette entities: @@ -112274,6 +113893,11 @@ entities: - type: Transform pos: -40.5,-2.5 parent: 2 + - uid: 23345 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 - proto: PaperBin5 entities: - uid: 2511 @@ -112682,10 +114306,10 @@ entities: - type: Transform pos: -11.5,-4.5 parent: 2 - - uid: 7752 + - uid: 23471 components: - type: Transform - pos: -5.5,-9.5 + pos: -5.5,-11.5 parent: 2 - proto: PlasticFlapsAirtightClear entities: @@ -112843,11 +114467,21 @@ entities: parent: 2 - proto: PortableFlasher entities: - - uid: 19570 + - uid: 23323 components: - type: Transform anchored: False - pos: -24.5,4.5 + pos: -24.5,7.5 + parent: 2 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic + - uid: 23520 + components: + - type: Transform + anchored: False + pos: -24.5,6.5 parent: 2 - type: TriggerOnProximity enabled: False @@ -113524,6 +115158,11 @@ entities: parent: 2 - proto: PoweredDimSmallLight entities: + - uid: 236 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 - uid: 973 components: - type: Transform @@ -113545,8 +115184,12 @@ entities: - uid: 1765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,16.5 + pos: -42.5,-48.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: 16.5,-56.5 parent: 2 - uid: 6132 components: @@ -113554,10 +115197,23 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,23.5 parent: 2 + - uid: 6394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-56.5 + parent: 2 - uid: 6419 components: - type: Transform - pos: -31.5,-15.5 + rot: -1.5707963267948966 rad + pos: 43.5,-34.5 parent: 2 - uid: 6541 components: @@ -113565,6 +115221,12 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-56.5 parent: 2 + - uid: 7052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2 - uid: 7058 components: - type: Transform @@ -113576,18 +115238,41 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 + - uid: 7981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-51.5 + parent: 2 - uid: 8285 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-9.5 parent: 2 + - uid: 8736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-45.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-55.5 + parent: 2 - uid: 9135 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,1.5 parent: 2 + - uid: 9672 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 - uid: 9993 components: - type: Transform @@ -113597,7 +115282,8 @@ entities: - uid: 10108 components: - type: Transform - pos: -49.5,-48.5 + rot: -1.5707963267948966 rad + pos: -33.5,-14.5 parent: 2 - uid: 10421 components: @@ -113605,12 +115291,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,2.5 parent: 2 - - uid: 10609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 2 - uid: 11123 components: - type: Transform @@ -113640,10 +115320,10 @@ entities: - type: Transform pos: 28.5,19.5 parent: 2 - - uid: 13255 + - uid: 13107 components: - type: Transform - pos: 15.5,-8.5 + pos: -36.5,13.5 parent: 2 - uid: 14407 components: @@ -113686,17 +115366,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,26.5 parent: 2 - - uid: 19275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-59.5 - parent: 2 - - uid: 19288 - components: - - type: Transform - pos: 56.5,-52.5 - parent: 2 - uid: 21443 components: - type: Transform @@ -113896,12 +115565,6 @@ entities: - type: Transform pos: 3.5,-47.5 parent: 2 - - uid: 4987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-13.5 - parent: 2 - uid: 5034 components: - type: Transform @@ -113925,12 +115588,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-48.5 parent: 2 - - uid: 6351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 2 - uid: 6367 components: - type: Transform @@ -113942,12 +115599,6 @@ entities: - type: Transform pos: -20.5,-36.5 parent: 2 - - uid: 6576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 2 - uid: 6661 components: - type: Transform @@ -113960,12 +115611,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,10.5 parent: 2 - - uid: 7052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-57.5 - parent: 2 - uid: 7832 components: - type: Transform @@ -114012,18 +115657,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,12.5 parent: 2 - - uid: 8736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-16.5 - parent: 2 - - uid: 9123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 2 - uid: 9138 components: - type: Transform @@ -114089,12 +115722,6 @@ entities: - type: Transform pos: 26.5,-24.5 parent: 2 - - uid: 11444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-1.5 - parent: 2 - uid: 11499 components: - type: Transform @@ -114331,11 +115958,11 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-10.5 parent: 2 - - uid: 13159 + - uid: 13246 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 parent: 2 - uid: 13743 components: @@ -114747,10 +116374,11 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-37.5 parent: 2 - - uid: 21319 + - uid: 21898 components: - type: Transform - pos: -0.5,-6.5 + rot: 3.141592653589793 rad + pos: -22.5,-1.5 parent: 2 - uid: 21964 components: @@ -114764,6 +116392,12 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-23.5 parent: 2 + - uid: 22181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 - uid: 22380 components: - type: Transform @@ -114950,6 +116584,24 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 + - uid: 23442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + - uid: 23443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - uid: 23504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 - proto: PoweredlightEmpty entities: - uid: 21609 @@ -115216,24 +116868,12 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,2.5 parent: 2 - - uid: 236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-56.5 - parent: 2 - uid: 391 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-3.5 parent: 2 - - uid: 481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-53.5 - parent: 2 - uid: 528 components: - type: Transform @@ -115269,12 +116909,6 @@ entities: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 3010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-57.5 - parent: 2 - uid: 3190 components: - type: Transform @@ -115302,7 +116936,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-33.5 + pos: 27.5,-57.5 parent: 2 - uid: 3931 components: @@ -115374,16 +117008,11 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-44.5 parent: 2 - - uid: 6394 + - uid: 6255 components: - type: Transform - pos: 16.5,-56.5 - parent: 2 - - uid: 6402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-59.5 + rot: -1.5707963267948966 rad + pos: -22.5,-56.5 parent: 2 - uid: 6483 components: @@ -115397,6 +117026,12 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-63.5 parent: 2 + - uid: 6576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 2 - uid: 7794 components: - type: Transform @@ -115409,11 +117044,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-51.5 parent: 2 - - uid: 7981 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 2 - uid: 7999 components: - type: Transform @@ -115449,11 +117079,11 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-36.5 parent: 2 - - uid: 8862 + - uid: 8669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,7.5 + rot: 3.141592653589793 rad + pos: 5.5,-12.5 parent: 2 - uid: 9137 components: @@ -115467,40 +117097,28 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-51.5 parent: 2 - - uid: 9510 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-31.5 - parent: 2 - uid: 9648 components: - type: Transform pos: 53.5,-16.5 parent: 2 - - uid: 9672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 2 - uid: 9954 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-52.5 parent: 2 + - uid: 9961 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 - uid: 10018 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,22.5 parent: 2 - - uid: 10383 - components: - - type: Transform - pos: -23.5,-55.5 - parent: 2 - uid: 10606 components: - type: Transform @@ -115513,12 +117131,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-50.5 parent: 2 - - uid: 10703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,14.5 - parent: 2 - uid: 11138 components: - type: Transform @@ -115530,12 +117142,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-43.5 parent: 2 - - uid: 11273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 2 - uid: 11304 components: - type: Transform @@ -115589,21 +117195,6 @@ entities: - type: Transform pos: 24.5,8.5 parent: 2 - - uid: 11837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 2 - - type: PointLight - energy: 0.5 - - uid: 11838 - components: - - type: Transform - pos: -3.5,-37.5 - parent: 2 - - type: PointLight - energy: 0.5 - uid: 11863 components: - type: Transform @@ -115630,6 +117221,11 @@ entities: - type: Transform pos: 5.5,2.5 parent: 2 + - uid: 11980 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 - uid: 12282 components: - type: Transform @@ -115662,28 +117258,22 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-44.5 parent: 2 + - uid: 13034 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 - uid: 13042 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-26.5 parent: 2 - - uid: 13107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-49.5 - parent: 2 - uid: 13139 components: - type: Transform pos: 29.5,-10.5 parent: 2 - - uid: 13220 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 2 - uid: 13282 components: - type: Transform @@ -115702,17 +117292,11 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-33.5 parent: 2 - - uid: 13414 + - uid: 13650 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,19.5 - parent: 2 - - uid: 13860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-43.5 + pos: 0.5,-15.5 parent: 2 - uid: 13862 components: @@ -115725,24 +117309,6 @@ entities: - type: Transform pos: 41.5,-31.5 parent: 2 - - uid: 13902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-63.5 - parent: 2 - - uid: 13916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-65.5 - parent: 2 - - uid: 13921 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-33.5 - parent: 2 - uid: 14406 components: - type: Transform @@ -115786,18 +117352,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-4.5 parent: 2 - - uid: 15755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-51.5 - parent: 2 - - uid: 16322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-43.5 - parent: 2 - uid: 16327 components: - type: Transform @@ -115920,28 +117474,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-68.5 parent: 2 - - uid: 20624 - components: - - type: Transform - pos: 50.5,-51.5 - parent: 2 - - uid: 21209 - components: - - type: Transform - pos: -41.5,-48.5 - parent: 2 - - uid: 21263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-14.5 - parent: 2 - - uid: 21272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 2 - uid: 21273 components: - type: Transform @@ -115965,41 +117497,12 @@ entities: - type: Transform pos: -51.5,-29.5 parent: 2 - - uid: 21307 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 - - uid: 21359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-53.5 - parent: 2 - - uid: 21633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-58.5 - parent: 2 - uid: 21680 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,29.5 parent: 2 - - uid: 21836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 2 - - uid: 22020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-4.5 - parent: 2 - uid: 22334 components: - type: Transform @@ -116058,22 +117561,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-6.5 parent: 2 - - uid: 23013 - components: - - type: Transform - pos: -36.5,13.5 - parent: 2 - - uid: 23014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,9.5 - parent: 2 - - uid: 23017 - components: - - type: Transform - pos: -17.5,20.5 - parent: 2 - uid: 23027 components: - type: Transform @@ -116090,6 +117577,12 @@ entities: rot: 3.141592653589793 rad pos: 23.5,5.5 parent: 2 + - uid: 23462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 2 - proto: PoweredSmallLightEmpty entities: - uid: 9504 @@ -116098,24 +117591,62 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-5.5 parent: 2 +- proto: PoweredStrobeLightEmpty + entities: + - uid: 14006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 14010 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 14012 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 14495 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 14774 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15121 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False - proto: PoweredWarmSmallLight entities: - - uid: 527 + - uid: 481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-38.5 + rot: -1.5707963267948966 rad + pos: -40.5,-53.5 parent: 2 - - type: PoweredLight - on: False - - uid: 1053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-39.5 - parent: 2 - - type: PoweredLight - on: False - uid: 3058 components: - type: Transform @@ -116140,14 +117671,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-37.5 parent: 2 - - uid: 4644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-39.5 - parent: 2 - - type: PoweredLight - on: False - uid: 4688 components: - type: Transform @@ -116246,6 +117769,11 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-33.5 parent: 2 + - uid: 12995 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 - uid: 13308 components: - type: Transform @@ -116293,11 +117821,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,8.5 parent: 2 - - uid: 14774 - components: - - type: Transform - pos: -10.5,-50.5 - parent: 2 - uid: 16649 components: - type: Transform @@ -116345,12 +117868,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-53.5 parent: 2 - - uid: 20501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-54.5 - parent: 2 - uid: 20763 components: - type: Transform @@ -116702,11 +118219,6 @@ entities: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 4069 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 2 - uid: 4188 components: - type: Transform @@ -116998,6 +118510,11 @@ entities: - type: Transform pos: -39.5,-19.5 parent: 2 + - uid: 10674 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 - uid: 11066 components: - type: Transform @@ -117083,15 +118600,10 @@ entities: - type: Transform pos: -54.5,-31.5 parent: 2 - - uid: 12995 + - uid: 13030 components: - type: Transform - pos: -5.5,-19.5 - parent: 2 - - uid: 13031 - components: - - type: Transform - pos: -5.5,-21.5 + pos: -5.5,-15.5 parent: 2 - uid: 13288 components: @@ -117230,11 +118742,6 @@ entities: - type: Transform pos: 42.5,-61.5 parent: 2 - - uid: 17487 - components: - - type: Transform - pos: -34.5,5.5 - parent: 2 - uid: 17547 components: - type: Transform @@ -117355,11 +118862,6 @@ entities: - type: Transform pos: -53.5,-57.5 parent: 2 - - uid: 21890 - components: - - type: Transform - pos: -34.5,3.5 - parent: 2 - uid: 21919 components: - type: Transform @@ -117418,6 +118920,16 @@ entities: - type: Transform pos: 1.5,-41.5 parent: 2 + - uid: 23328 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 23497 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 - proto: RadioHandheld entities: - uid: 3964 @@ -118447,6 +119959,11 @@ entities: - type: Transform pos: -7.506213,-32.40464 parent: 2 + - uid: 23350 + components: + - type: Transform + pos: -36.508717,-2.3914618 + parent: 2 - proto: RandomInstruments entities: - uid: 357 @@ -119433,11 +120950,6 @@ entities: parent: 2 - proto: RandomSoap entities: - - uid: 9865 - components: - - type: Transform - pos: -22.5,-55.5 - parent: 2 - uid: 14422 components: - type: Transform @@ -119994,17 +121506,7 @@ entities: - type: Transform pos: -20.5,-25.5 parent: 2 - - uid: 16581 - components: - - type: Transform - pos: 13.5,-24.5 - parent: 2 - - uid: 16672 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 2 - - uid: 20125 + - uid: 17129 components: - type: Transform pos: 13.5,-25.5 @@ -120066,6 +121568,13 @@ entities: - type: Transform pos: -4.4029903,-30.299797 parent: 2 + - uid: 12124 + components: + - type: Transform + parent: 398 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ReagentContainerFlour entities: - uid: 3256 @@ -120076,8 +121585,10 @@ entities: - uid: 20229 components: - type: Transform - pos: -36.578762,-2.2497342 - parent: 2 + parent: 398 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ReagentContainerSugar entities: - uid: 3257 @@ -120085,6 +121596,13 @@ entities: - type: Transform pos: -4.6426926,-30.331068 parent: 2 + - uid: 12992 + components: + - type: Transform + parent: 398 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Recycler entities: - uid: 18132 @@ -120191,6 +121709,11 @@ entities: parent: 2 - proto: ReinforcedPlasmaWindow entities: + - uid: 67 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 - uid: 531 components: - type: Transform @@ -120231,6 +121754,31 @@ entities: - type: Transform pos: 7.5,4.5 parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 - uid: 1268 components: - type: Transform @@ -120306,6 +121854,11 @@ entities: - type: Transform pos: 4.5,3.5 parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 - uid: 4475 components: - type: Transform @@ -120331,46 +121884,36 @@ entities: - type: Transform pos: 41.5,-46.5 parent: 2 - - uid: 10195 + - uid: 7123 components: - type: Transform - pos: 4.5,-7.5 + pos: 3.5,-8.5 parent: 2 - - uid: 10221 + - uid: 9123 components: - type: Transform - pos: 6.5,-9.5 + pos: 3.5,-9.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 9698 + components: + - type: Transform + pos: 3.5,-6.5 parent: 2 - uid: 10227 components: - type: Transform pos: 6.5,-5.5 parent: 2 - - uid: 12003 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 2 - - uid: 12008 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 2 - uid: 12517 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - uid: 13258 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 2 - - uid: 13693 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 2 - uid: 14625 components: - type: Transform @@ -120613,11 +122156,6 @@ entities: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 960 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - uid: 972 components: - type: Transform @@ -120843,6 +122381,11 @@ entities: - type: Transform pos: -28.5,-14.5 parent: 2 + - uid: 1687 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 - uid: 1712 components: - type: Transform @@ -120913,11 +122456,6 @@ entities: - type: Transform pos: 34.5,27.5 parent: 2 - - uid: 2352 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - uid: 2397 components: - type: Transform @@ -120948,11 +122486,6 @@ entities: - type: Transform pos: -22.5,30.5 parent: 2 - - uid: 2701 - components: - - type: Transform - pos: -33.5,1.5 - parent: 2 - uid: 2747 components: - type: Transform @@ -120988,11 +122521,6 @@ entities: - type: Transform pos: -30.5,-79.5 parent: 2 - - uid: 2974 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - uid: 3051 components: - type: Transform @@ -121108,11 +122636,6 @@ entities: - type: Transform pos: 12.5,-71.5 parent: 2 - - uid: 3833 - components: - - type: Transform - pos: -35.5,5.5 - parent: 2 - uid: 3847 components: - type: Transform @@ -121233,6 +122756,11 @@ entities: - type: Transform pos: -35.5,-76.5 parent: 2 + - uid: 4717 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 - uid: 4724 components: - type: Transform @@ -121248,21 +122776,11 @@ entities: - type: Transform pos: 49.5,-86.5 parent: 2 - - uid: 4741 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 2 - uid: 4745 components: - type: Transform pos: 51.5,20.5 parent: 2 - - uid: 4754 - components: - - type: Transform - pos: -35.5,4.5 - parent: 2 - uid: 4809 components: - type: Transform @@ -121413,6 +122931,11 @@ entities: - type: Transform pos: -31.5,-72.5 parent: 2 + - uid: 5333 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 - uid: 5355 components: - type: Transform @@ -121458,11 +122981,6 @@ entities: - type: Transform pos: 46.5,23.5 parent: 2 - - uid: 5527 - components: - - type: Transform - pos: -34.5,-3.5 - parent: 2 - uid: 5554 components: - type: Transform @@ -121618,21 +123136,11 @@ entities: - type: Transform pos: -33.5,-81.5 parent: 2 - - uid: 6255 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 2 - uid: 6265 components: - type: Transform pos: 41.5,-60.5 parent: 2 - - uid: 6347 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 2 - uid: 6348 components: - type: Transform @@ -121733,11 +123241,6 @@ entities: - type: Transform pos: -10.5,-60.5 parent: 2 - - uid: 6557 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 2 - uid: 6595 components: - type: Transform @@ -121993,11 +123496,6 @@ entities: - type: Transform pos: -36.5,-80.5 parent: 2 - - uid: 8244 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 2 - uid: 8279 components: - type: Transform @@ -122103,11 +123601,6 @@ entities: - type: Transform pos: -35.5,17.5 parent: 2 - - uid: 8679 - components: - - type: Transform - pos: -35.5,3.5 - parent: 2 - uid: 8682 components: - type: Transform @@ -122373,11 +123866,6 @@ entities: - type: Transform pos: -27.5,-23.5 parent: 2 - - uid: 10727 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - uid: 10793 components: - type: Transform @@ -122468,6 +123956,11 @@ entities: - type: Transform pos: 0.5,-82.5 parent: 2 + - uid: 11210 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 - uid: 11211 components: - type: Transform @@ -123188,11 +124681,6 @@ entities: - type: Transform pos: -41.5,-58.5 parent: 2 - - uid: 17094 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 - uid: 17177 components: - type: Transform @@ -123363,6 +124851,11 @@ entities: - type: Transform pos: 8.5,-71.5 parent: 2 + - uid: 20497 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 - uid: 21674 components: - type: Transform @@ -123403,6 +124896,11 @@ entities: - type: Transform pos: 34.5,20.5 parent: 2 + - uid: 21917 + components: + - type: Transform + pos: -26.5,-57.5 + parent: 2 - uid: 21918 components: - type: Transform @@ -123473,6 +124971,31 @@ entities: - type: Transform pos: 28.5,-7.5 parent: 2 + - uid: 23333 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 23335 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 23338 + components: + - type: Transform + pos: -13.5,-51.5 + parent: 2 + - uid: 23341 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 23357 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 4210 @@ -123632,6 +125155,14 @@ entities: - type: Transform pos: -60.705425,-16.225351 parent: 2 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 17487 + components: + - type: Transform + parent: 17443 + - type: Physics + canCollide: False - proto: RollingPin entities: - uid: 3297 @@ -124171,8 +125702,10 @@ entities: - uid: 11897 components: - type: Transform - pos: -5.478168,-21.432041 - parent: 2 + parent: 15897 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SheetPlasteel entities: - uid: 1758 @@ -124212,6 +125745,11 @@ entities: - type: Transform pos: -37.47171,-24.411203 parent: 2 + - uid: 15461 + components: + - type: Transform + pos: -27.496117,6.6093388 + parent: 2 - proto: SheetPlastic10 entities: - uid: 3997 @@ -124313,15 +125851,19 @@ entities: - uid: 22984 components: - type: Transform - pos: 26.5036,-16.527693 - parent: 2 + parent: 4024 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SheetUranium entities: - - uid: 13030 + - uid: 16007 components: - type: Transform - pos: -5.4944835,-19.392193 - parent: 2 + parent: 15897 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ShipBattlemap entities: - uid: 6011 @@ -124471,6 +126013,12 @@ entities: - type: Transform pos: -4.5,-46.5 parent: 2 + - uid: 6351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-51.5 + parent: 2 - uid: 7960 components: - type: Transform @@ -124921,6 +126469,27 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-22.5 parent: 2 + - uid: 23360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-53.5 + parent: 2 + - uid: 23361 + components: + - type: Transform + pos: -26.5,-57.5 + parent: 2 + - uid: 23362 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 + - uid: 23378 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 - proto: ShuttersWindowOpen entities: - uid: 15630 @@ -125704,6 +127273,11 @@ entities: parent: 2 - proto: SignEscapePods entities: + - uid: 10703 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 - uid: 11251 components: - type: Transform @@ -126201,17 +127775,16 @@ entities: parent: 2 - proto: SodaDispenser entities: + - uid: 1651 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 - uid: 7366 components: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 15897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-44.5 - parent: 2 - proto: SolarPanel entities: - uid: 34 @@ -127884,7 +129457,7 @@ entities: parent: 2 - proto: SpawnPointCaptain entities: - - uid: 9697 + - uid: 1414 components: - type: Transform pos: -25.5,-55.5 @@ -128159,6 +129732,11 @@ entities: - type: Transform pos: 0.5,-51.5 parent: 2 + - uid: 5159 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 - uid: 11013 components: - type: Transform @@ -128568,10 +130146,10 @@ entities: - type: Transform pos: 21.592346,-41.32462 parent: 2 - - uid: 4717 + - uid: 13678 components: - type: Transform - pos: -5.501354,-10.355706 + pos: -5.4122133,-15.437414 parent: 2 - proto: StairDark entities: @@ -129108,11 +130686,6 @@ entities: - type: Transform pos: 3.5,5.5 parent: 2 - - uid: 9683 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 2 - uid: 9685 components: - type: Transform @@ -129371,21 +130944,93 @@ entities: - type: Transform pos: -0.5,-57.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: 4752 components: - type: Transform pos: -0.5,-55.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: 4848 components: - type: Transform pos: -2.5,-55.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: 4861 components: - type: Transform pos: 1.5,-55.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: 10484 components: - type: Transform @@ -129396,6 +131041,24 @@ entities: - type: Transform pos: 1.5,-57.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 - proto: SuitStorageEVAEmergency entities: - uid: 6392 @@ -129625,14 +131288,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Solars - North West - - uid: 7864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-16.5 - parent: 2 - - type: SurveillanceCamera - id: Tech Vault - uid: 7872 components: - type: Transform @@ -129641,6 +131296,14 @@ entities: parent: 2 - type: SurveillanceCamera id: Telecoms + - uid: 15661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 2 + - type: SurveillanceCamera + id: TEG Chamber - uid: 18049 components: - type: MetaData @@ -129688,6 +131351,29 @@ entities: parent: 2 - type: SurveillanceCamera id: Atmos - West + - uid: 23499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - type: SurveillanceCamera + id: TEG Burn Chamber + - uid: 23500 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: Atmos - East + - uid: 23501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - type: SurveillanceCamera + id: Atmos Burn Chamber - proto: SurveillanceCameraGeneral entities: - uid: 526 @@ -131689,6 +133375,11 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-36.5 parent: 2 + - uid: 6041 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 - uid: 6094 components: - type: Transform @@ -131739,6 +133430,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-41.5 parent: 2 + - uid: 23353 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 - proto: TableFancyCyan entities: - uid: 2975 @@ -132121,12 +133817,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,4.5 parent: 2 - - uid: 241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-43.5 - parent: 2 - uid: 556 components: - type: Transform @@ -132670,6 +134360,11 @@ entities: rot: 3.141592653589793 rad pos: 22.5,19.5 parent: 2 + - uid: 23322 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 - proto: TargetClown entities: - uid: 18803 @@ -132710,27 +134405,26 @@ entities: parent: 2 - proto: TegCenter entities: - - uid: 2237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-9.5 - parent: 2 -- proto: TegCirculator - entities: - - uid: 2988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 2 - - type: PointLight - color: '#FF3300FF' - - uid: 9630 + - uid: 9865 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-8.5 + pos: -1.5,-9.5 + parent: 2 +- proto: TegCirculator + entities: + - uid: 4784 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 6162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 parent: 2 - type: PointLight color: '#FF3300FF' @@ -133024,11 +134718,11 @@ entities: parent: 2 - proto: ToiletGoldenDirtyWater entities: - - uid: 9698 + - uid: 23339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-55.5 + rot: 3.141592653589793 rad + pos: -22.5,-56.5 parent: 2 - proto: ToolboxArtisticFilled entities: @@ -133168,7 +134862,7 @@ entities: - uid: 16081 components: - type: Transform - pos: -28.463476,-7.285346 + pos: -28.456295,-7.4156313 parent: 2 - uid: 16275 components: @@ -133202,7 +134896,7 @@ entities: - uid: 9951 components: - type: Transform - pos: -23.34993,-55.442043 + pos: -22.515173,-56.227436 parent: 2 - proto: ToyAi entities: @@ -133720,10 +135414,10 @@ entities: - type: Transform pos: 42.5,12.5 parent: 2 - - uid: 18007 + - uid: 22622 components: - type: Transform - pos: -3.5,-44.5 + pos: -0.5,-43.5 parent: 2 - proto: VendingMachineCargoDrobe entities: @@ -133808,6 +135502,11 @@ entities: - type: Transform pos: 15.5,3.5 parent: 2 + - uid: 17419 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 - proto: VendingMachineCoffee entities: - uid: 1752 @@ -133855,10 +135554,10 @@ entities: parent: 2 - proto: VendingMachineDonut entities: - - uid: 11036 + - uid: 15472 components: - type: Transform - pos: -24.5,7.5 + pos: -30.5,0.5 parent: 2 - proto: VendingMachineEngiDrobe entities: @@ -133952,6 +135651,13 @@ entities: - type: Transform pos: -15.5,-29.5 parent: 2 +- proto: VendingMachinePride + entities: + - uid: 17094 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 - proto: VendingMachineRobotics entities: - uid: 4200 @@ -134438,6 +136144,11 @@ entities: - type: Transform pos: -9.5,-54.5 parent: 2 + - uid: 527 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 - uid: 530 components: - type: Transform @@ -134516,7 +136227,7 @@ entities: - uid: 607 components: - type: Transform - pos: -33.5,2.5 + pos: 5.5,-7.5 parent: 2 - uid: 608 components: @@ -134563,6 +136274,11 @@ entities: - type: Transform pos: -31.5,1.5 parent: 2 + - uid: 718 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 - uid: 733 components: - type: Transform @@ -134708,6 +136424,11 @@ entities: - type: Transform pos: 24.5,23.5 parent: 2 + - uid: 960 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 - uid: 961 components: - type: Transform @@ -135203,10 +136924,10 @@ entities: - type: Transform pos: -24.5,-13.5 parent: 2 - - uid: 1687 + - uid: 1682 components: - type: Transform - pos: -33.5,-0.5 + pos: -27.5,-57.5 parent: 2 - uid: 1691 components: @@ -135468,6 +137189,11 @@ entities: - type: Transform pos: 5.5,-13.5 parent: 2 + - uid: 2450 + components: + - type: Transform + pos: -22.5,-57.5 + parent: 2 - uid: 2452 components: - type: Transform @@ -135658,6 +137384,11 @@ entities: - type: Transform pos: -9.5,-70.5 parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 - uid: 2915 components: - type: Transform @@ -135698,6 +137429,11 @@ entities: - type: Transform pos: 54.5,-50.5 parent: 2 + - uid: 3008 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 - uid: 3013 components: - type: Transform @@ -136373,6 +138109,11 @@ entities: - type: Transform pos: -30.5,-81.5 parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 - uid: 4788 components: - type: Transform @@ -136883,6 +138624,11 @@ entities: - type: Transform pos: -47.5,-13.5 parent: 2 + - uid: 5558 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 - uid: 5560 components: - type: Transform @@ -137618,11 +139364,6 @@ entities: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 7123 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 2 - uid: 7164 components: - type: Transform @@ -138038,6 +139779,11 @@ entities: - type: Transform pos: 46.5,18.5 parent: 2 + - uid: 8523 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 - uid: 8541 components: - type: Transform @@ -138078,16 +139824,6 @@ entities: - type: Transform pos: 57.5,-23.5 parent: 2 - - uid: 8695 - components: - - type: Transform - pos: -35.5,2.5 - parent: 2 - - uid: 8702 - components: - - type: Transform - pos: -35.5,6.5 - parent: 2 - uid: 8718 components: - type: Transform @@ -138328,11 +140064,6 @@ entities: - type: Transform pos: 49.5,-82.5 parent: 2 - - uid: 9569 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 2 - uid: 9586 components: - type: Transform @@ -138363,10 +140094,10 @@ entities: - type: Transform pos: 7.5,-13.5 parent: 2 - - uid: 9621 + - uid: 9613 components: - type: Transform - pos: 4.5,-9.5 + pos: 3.5,-7.5 parent: 2 - uid: 9656 components: @@ -138398,11 +140129,6 @@ entities: - type: Transform pos: -21.5,-57.5 parent: 2 - - uid: 9693 - components: - - type: Transform - pos: -22.5,-56.5 - parent: 2 - uid: 9701 components: - type: Transform @@ -138423,11 +140149,6 @@ entities: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 9863 - components: - - type: Transform - pos: -24.5,-56.5 - parent: 2 - uid: 9866 components: - type: Transform @@ -138528,6 +140249,11 @@ entities: - type: Transform pos: -32.5,-14.5 parent: 2 + - uid: 10200 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 - uid: 10218 components: - type: Transform @@ -138703,6 +140429,11 @@ entities: - type: Transform pos: -56.5,-20.5 parent: 2 + - uid: 10767 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 - uid: 10778 components: - type: Transform @@ -138768,6 +140499,11 @@ entities: - type: Transform pos: -9.5,-86.5 parent: 2 + - uid: 11202 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 - uid: 11209 components: - type: Transform @@ -139333,6 +141069,11 @@ entities: - type: Transform pos: -21.5,15.5 parent: 2 + - uid: 13004 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 - uid: 13025 components: - type: Transform @@ -139358,6 +141099,11 @@ entities: - type: Transform pos: -49.5,-25.5 parent: 2 + - uid: 13132 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 - uid: 13167 components: - type: Transform @@ -140763,6 +142509,11 @@ entities: - type: Transform pos: 45.5,15.5 parent: 2 + - uid: 23358 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 2 - proto: WallReinforcedRust entities: - uid: 249 @@ -140795,16 +142546,16 @@ entities: - type: Transform pos: -63.5,-10.5 parent: 2 - - uid: 1008 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 2 - uid: 1027 components: - type: Transform pos: -59.5,-9.5 parent: 2 + - uid: 1053 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 - uid: 1079 components: - type: Transform @@ -140870,11 +142621,6 @@ entities: - type: Transform pos: 4.5,-87.5 parent: 2 - - uid: 3008 - components: - - type: Transform - pos: -34.5,7.5 - parent: 2 - uid: 3090 components: - type: Transform @@ -141140,11 +142886,6 @@ entities: - type: Transform pos: 76.5,-47.5 parent: 2 - - uid: 5448 - components: - - type: Transform - pos: -34.5,2.5 - parent: 2 - uid: 5512 components: - type: Transform @@ -141600,11 +143341,6 @@ entities: - type: Transform pos: -3.5,-68.5 parent: 2 - - uid: 7633 - components: - - type: Transform - pos: -34.5,6.5 - parent: 2 - uid: 7634 components: - type: Transform @@ -142555,11 +144291,6 @@ entities: - type: Transform pos: -46.5,-58.5 parent: 2 - - uid: 13650 - components: - - type: Transform - pos: -23.5,-56.5 - parent: 2 - uid: 13667 components: - type: Transform @@ -143155,6 +144886,11 @@ entities: - type: Transform pos: -36.5,14.5 parent: 2 + - uid: 16673 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 - uid: 16827 components: - type: Transform @@ -143590,6 +145326,11 @@ entities: - type: Transform pos: 11.5,-7.5 parent: 2 + - uid: 23325 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 - proto: WallSolid entities: - uid: 11 @@ -145097,11 +146838,6 @@ entities: - type: Transform pos: 30.5,-45.5 parent: 2 - - uid: 6212 - components: - - type: Transform - pos: -12.5,-51.5 - parent: 2 - uid: 6241 components: - type: Transform @@ -146547,6 +148283,11 @@ entities: - type: Transform pos: 30.5,17.5 parent: 2 + - uid: 13693 + components: + - type: Transform + pos: -24.5,-54.5 + parent: 2 - uid: 13712 components: - type: Transform @@ -146882,11 +148623,6 @@ entities: - type: Transform pos: 34.5,10.5 parent: 2 - - uid: 16673 - components: - - type: Transform - pos: -24.5,-54.5 - parent: 2 - uid: 16715 components: - type: Transform @@ -146962,11 +148698,6 @@ entities: - type: Transform pos: 10.5,21.5 parent: 2 - - uid: 17129 - components: - - type: Transform - pos: -24.5,-55.5 - parent: 2 - uid: 17131 components: - type: Transform @@ -147177,11 +148908,6 @@ entities: - type: Transform pos: 30.5,15.5 parent: 2 - - uid: 20237 - components: - - type: Transform - pos: -26.5,-53.5 - parent: 2 - uid: 20245 components: - type: Transform @@ -147322,6 +149048,21 @@ entities: - type: Transform pos: -24.5,-15.5 parent: 2 + - uid: 23321 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 2 + - uid: 23324 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 23340 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 2 - proto: WallSolidRust entities: - uid: 2745 @@ -148543,6 +150284,24 @@ entities: parent: 2 - proto: WarmLightBulb entities: + - uid: 14010 + components: + - type: Transform + parent: 14006 + - type: Physics + canCollide: False + - uid: 14495 + components: + - type: Transform + parent: 14012 + - type: Physics + canCollide: False + - uid: 15121 + components: + - type: Transform + parent: 14774 + - type: Physics + canCollide: False - uid: 22730 components: - type: Transform @@ -148606,11 +150365,6 @@ entities: - type: Transform pos: -1.5,12.5 parent: 2 - - uid: 9792 - components: - - type: Transform - pos: -13.5,-51.5 - parent: 2 - uid: 12782 components: - type: Transform @@ -148731,7 +150485,7 @@ entities: - uid: 23320 components: - type: Transform - pos: -22.484701,-3.1598477 + pos: -22.494625,-3.1906652 parent: 2 - proto: WeaponSubMachineGunWt550 entities: @@ -148827,11 +150581,6 @@ entities: - type: Transform pos: 28.5,24.5 parent: 2 - - uid: 10455 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 2 - uid: 12738 components: - type: Transform @@ -149377,6 +151126,16 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-42.5 parent: 2 + - uid: 5157 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 23327 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 - proto: WindoorSecureSecurityLocked entities: - uid: 499 @@ -150290,6 +152049,11 @@ entities: parent: 2 - proto: Wirecutter entities: + - uid: 2352 + components: + - type: Transform + pos: -34.493855,5.6656456 + parent: 2 - uid: 7428 components: - type: Transform @@ -150432,6 +152196,11 @@ entities: - type: Transform pos: -13.512281,-21.38337 parent: 2 + - uid: 23496 + components: + - type: Transform + pos: -5.5532303,-15.463551 + parent: 2 - proto: Zipties entities: - uid: 6296 diff --git a/Resources/Prototypes/Maps/amber.yml b/Resources/Prototypes/Maps/amber.yml index b2d09e911d..e5f2749c1a 100644 --- a/Resources/Prototypes/Maps/amber.yml +++ b/Resources/Prototypes/Maps/amber.yml @@ -21,40 +21,40 @@ Captain: [ 1, 1 ] #service HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] - Chef: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 3, 3 ] + Chef: [ 2, 2 ] Janitor: [ 2, 2 ] Chaplain: [ 1, 1 ] Librarian: [ 1, 1 ] ServiceWorker: [ 2, 2 ] #engineering ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] + AtmosphericTechnician: [ 3, 3 ] StationEngineer: [ 2, 4 ] TechnicalAssistant: [ 2, 2 ] #medical ChiefMedicalOfficer: [ 1, 1 ] Chemist: [ 2, 2 ] - MedicalDoctor: [ 4, 4 ] + MedicalDoctor: [ 4, 6 ] Paramedic: [ 2, 2 ] MedicalIntern: [ 2, 2 ] Psychologist: [ 1, 1 ] #science ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] + Scientist: [ 4, 6 ] ResearchAssistant: [ 2, 2 ] #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] + SecurityOfficer: [ 4, 6 ] Detective: [ 1, 1 ] SecurityCadet: [ 2, 2 ] Lawyer: [ 2, 2 ] #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 3, 3 ] + CargoTechnician: [ 3, 4 ] #civilian Passenger: [ -1, -1 ] Clown: [ 1, 1 ] From f65183edb92cd23fcc343a676890c3e95e85eb18 Mon Sep 17 00:00:00 2001 From: Deerstop Date: Sun, 23 Feb 2025 19:35:36 +1100 Subject: [PATCH 133/155] Elkridge Science 2.0 + misc fixes (#35392) * added radationblockercontainer component to pacman fuel crate so it doesnt leak rads, also more rad suits * reworked science, misc fixes and changes --- Resources/Maps/elkridge.yml | 9785 +++++++++++++++++++---------------- 1 file changed, 5204 insertions(+), 4581 deletions(-) diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml index d10c5d3119..db070434f2 100644 --- a/Resources/Maps/elkridge.yml +++ b/Resources/Maps/elkridge.yml @@ -57,55 +57,55 @@ entities: chunks: 0,0: ind: 0,0 - tiles: BwAAAAADIAAAAAABfgAAAAACfgAAAAAAfgAAAAABIAAAAAADIAAAAAAAIAAAAAADYwAAAAABYwAAAAACYwAAAAADYwAAAAACYwAAAAABYwAAAAACYwAAAAADIAAAAAAAfgAAAAAAIAAAAAABBwAAAAAFfgAAAAACfgAAAAADIAAAAAABIAAAAAAAIAAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAABIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADfgAAAAAAfgAAAAAABwAAAAAEfgAAAAABfgAAAAABIAAAAAADIAAAAAACAQAAAAAAggAAAAAAZAAAAAAAZAAAAAADZAAAAAABggAAAAAAYgAAAAACYgAAAAACggAAAAAABwAAAAADfgAAAAACfgAAAAAAfgAAAAACfgAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAABZAAAAAABggAAAAAAYgAAAAACcAAAAAAAcAAAAAAAfgAAAAABfgAAAAADfgAAAAACBwAAAAAEfgAAAAACfgAAAAADIAAAAAABIAAAAAADggAAAAAAZAAAAAABZAAAAAAAZAAAAAAAAQAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAABwAAAAABfgAAAAADfgAAAAADfgAAAAACfgAAAAAAIAAAAAACIAAAAAAAggAAAAAAZAAAAAACZAAAAAABZAAAAAAAggAAAAAAYgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADcAAAAAAAcAAAAAAAFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAAQAAAAAAIAAAAAAAIAAAAAADggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAYgAAAAACcAAAAAAAcAAAAAAAFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAggAAAAAAIAAAAAAAIAAAAAABggAAAAAAJAAAAAAAIAAAAAACJAAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAADFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAJAAAAAACJAAAAAABJAAAAAADggAAAAAAYgAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAACwAAAAACYgAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAACwAAAAADYgAAAAAB + tiles: BwAAAAAEIAAAAAACfgAAAAACfgAAAAADfgAAAAABIAAAAAACIAAAAAADIAAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAABIAAAAAADfgAAAAABIAAAAAACBwAAAAABfgAAAAAAfgAAAAABIAAAAAABIAAAAAADIAAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAACYwAAAAACYwAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABfgAAAAADfgAAAAACBwAAAAABfgAAAAABfgAAAAAAIAAAAAACIAAAAAABAQAAAAAAggAAAAAAZAAAAAADZAAAAAADZAAAAAABggAAAAAAYgAAAAAAYgAAAAAAggAAAAAABwAAAAABfgAAAAADfgAAAAADfgAAAAAAfgAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAABZAAAAAABggAAAAAAYgAAAAACcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAACfgAAAAABBwAAAAABfgAAAAADfgAAAAABIAAAAAAAIAAAAAACggAAAAAAZAAAAAACZAAAAAADZAAAAAABAQAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAfgAAAAADBwAAAAAGfgAAAAACfgAAAAABfgAAAAABfgAAAAADIAAAAAAAIAAAAAABggAAAAAAZAAAAAADZAAAAAADZAAAAAACggAAAAAAYgAAAAABcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAAQAAAAAAIAAAAAACIAAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAYgAAAAACcAAAAAAAcAAAAAAAFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAggAAAAAAIAAAAAAAIAAAAAABggAAAAAAJAAAAAADIAAAAAACJAAAAAABAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAggAAAAAAIAAAAAABIAAAAAAAggAAAAAAJAAAAAAAJAAAAAABJAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAABBgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABCwAAAAAAYgAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADCwAAAAABYgAAAAAD version: 6 -1,0: ind: -1,0 - tiles: YgAAAAADYgAAAAABAQAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABYgAAAAADIAAAAAABAQAAAAAAIAAAAAAACwAAAAABIAAAAAAAfgAAAAACfgAAAAADYgAAAAADYgAAAAAAAQAAAAAAYgAAAAACYgAAAAABCwAAAAACCwAAAAADCwAAAAACYgAAAAAAIAAAAAACAQAAAAAAIAAAAAABCwAAAAACIAAAAAADfgAAAAADfgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAABIAAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAABBwAAAAABfgAAAAADAQAAAAAAggAAAAAABgAAAAACAQAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAADfgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAAAggAAAAAAfgAAAAACBwAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAACggAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAfgAAAAACfgAAAAAAAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAADYgAAAAACggAAAAAAIAAAAAADIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAACggAAAAAAAQAAAAAAYgAAAAADYgAAAAAAYgAAAAABggAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADggAAAAAAFwAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAAQAAAAAAYgAAAAADYgAAAAAAYgAAAAADggAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACggAAAAAAFwAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACggAAAAAAAQAAAAAAYgAAAAACYgAAAAABYgAAAAADggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAAAggAAAAAAFwAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAAQAAAAAAYgAAAAABYgAAAAACYgAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACAQAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAIAAAAAABggAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAAACwAAAAAAYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACCwAAAAABYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: YgAAAAAAYgAAAAADAQAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAACIAAAAAABAQAAAAAAIAAAAAADCwAAAAACIAAAAAADfgAAAAABfgAAAAABYgAAAAABYgAAAAAAAQAAAAAAYgAAAAACYgAAAAADCwAAAAACCwAAAAADCwAAAAABYgAAAAACIAAAAAACAQAAAAAAIAAAAAAACwAAAAAAIAAAAAADfgAAAAADfgAAAAABAQAAAAAAAQAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAABIAAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAACIAAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADBwAAAAACfgAAAAACAQAAAAAAggAAAAAABgAAAAACAQAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAACfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAABggAAAAAAfgAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACggAAAAAAfgAAAAACfgAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAACggAAAAAAAQAAAAAAYgAAAAADYgAAAAACYgAAAAABggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABggAAAAAAFwAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAABggAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADggAAAAAAFwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAACYgAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADggAAAAAAFwAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAADggAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAADggAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAIAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAACwAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADCwAAAAAAYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACIAAAAAACfgAAAAADIAAAAAAAfgAAAAACfgAAAAAABwAAAAACIAAAAAADIAAAAAABIAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAIAAAAAAD + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAACYgAAAAACAQAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAADggAAAAAAIAAAAAACIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAAQAAAAAAIAAAAAADIAAAAAABIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAADggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAACYwAAAAADYwAAAAACYwAAAAABYwAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAABYwAAAAACIAAAAAACfgAAAAAAIAAAAAADfgAAAAADfgAAAAADBwAAAAAGIAAAAAACIAAAAAACIAAAAAACYwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAIAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: YgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAYgAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAACIAAAAAABAQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAADwAAAAAAIAAAAAACIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAAgAAAAAAggAAAAAADQAAAAABYgAAAAAAYgAAAAAAAQAAAAAAggAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAABwAAAAAAfgAAAAAAfgAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAAwAAAAAABwAAAAAAfgAAAAAAfgAAAAABIAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACYgAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAACCwAAAAAACwAAAAAACwAAAAAAYgAAAAAAIAAAAAACAQAAAAAAIAAAAAABCwAAAAAAIAAAAAADfgAAAAADfgAAAAAA + tiles: YgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAAQAAAAAAYgAAAAAAIAAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAABAQAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAACAQAAAAAAYgAAAAADIAAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAADwAAAAAAIAAAAAABIAAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACggAAAAAAAgAAAAAAggAAAAAADQAAAAABYgAAAAADYgAAAAADAQAAAAAAggAAAAAAfgAAAAABBwAAAAAAfgAAAAACAQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACAQAAAAAAggAAAAAABwAAAAABfgAAAAABfgAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAACggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAACIAAAAAACIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAggAAAAAAAwAAAAACBwAAAAAGfgAAAAADfgAAAAABIAAAAAABIAAAAAADAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAAAggAAAAAAggAAAAAAfgAAAAABfgAAAAACBwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAACIAAAAAABggAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADIAAAAAABggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADYgAAAAADYgAAAAACAQAAAAAAYgAAAAABYgAAAAAACwAAAAABCwAAAAABCwAAAAAAYgAAAAADIAAAAAAAAQAAAAAAIAAAAAAACwAAAAACIAAAAAACfgAAAAACfgAAAAAD version: 6 1,0: ind: 1,0 - tiles: IAAAAAADYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABAAAAAADBAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAABAQAAAAAABAAAAAABBAAAAAADYgAAAAACcAAAAAAAggAAAAAAYgAAAAACYgAAAAADYgAAAAAAggAAAAAABAAAAAABBAAAAAACBAAAAAACIAAAAAACBAAAAAADBAAAAAACggAAAAAABAAAAAAACwAAAAABYgAAAAAAcAAAAAAAggAAAAAAYgAAAAABCwAAAAACYgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAAIAAAAAACIAAAAAABIAAAAAAAggAAAAAABAAAAAAACwAAAAACYgAAAAACcAAAAAAAggAAAAAAYgAAAAABCwAAAAADYgAAAAACAQAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAADggAAAAAABAAAAAAABAAAAAAAYgAAAAACYgAAAAACIAAAAAAAYgAAAAADCwAAAAACYgAAAAABAQAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABAQAAAAAABAAAAAAACwAAAAADYgAAAAABYgAAAAACIAAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAACAQAAAAAABAAAAAAACwAAAAADYgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAABYgAAAAACggAAAAAAAQAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAADIAAAAAABIAAAAAADIAAAAAACBAAAAAABBAAAAAAABAAAAAADggAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABIAAAAAAAIAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADggAAAAAABAAAAAABBAAAAAABggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAABIAAAAAACIAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABggAAAAAABAAAAAAABAAAAAADYgAAAAAAAQAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAABYgAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAABAQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAAAggAAAAAABAAAAAACBAAAAAADYgAAAAACAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAAAIAAAAAABBAAAAAABBAAAAAAB + tiles: IAAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABAAAAAAABAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAACAQAAAAAABAAAAAACBAAAAAACYgAAAAADcAAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADggAAAAAABAAAAAADBAAAAAADBAAAAAAAIAAAAAAABAAAAAACBAAAAAADggAAAAAABAAAAAAACwAAAAAAYgAAAAACcAAAAAAAggAAAAAAYgAAAAABCwAAAAABYgAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAABAAAAAAACwAAAAAAYgAAAAABcAAAAAAAggAAAAAAYgAAAAADCwAAAAACYgAAAAACAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACggAAAAAABAAAAAADBAAAAAACYgAAAAADYgAAAAAAIAAAAAADYgAAAAACCwAAAAADYgAAAAACAQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAACAQAAAAAABAAAAAADCwAAAAADYgAAAAACYgAAAAABIAAAAAADYgAAAAACYgAAAAAAYgAAAAADggAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABAQAAAAAABAAAAAADCwAAAAACYgAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAACYgAAAAADggAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAACIAAAAAADIAAAAAADIAAAAAACBAAAAAADBAAAAAACBAAAAAABggAAAAAAAQAAAAAAAQAAAAAAYgAAAAADggAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAABIAAAAAACIAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABggAAAAAABAAAAAACBAAAAAABggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADIAAAAAACIAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADggAAAAAABAAAAAABBAAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAABAQAAAAAABAAAAAAABAAAAAADYgAAAAABAQAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAADAQAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAAggAAAAAABAAAAAABBAAAAAAAYgAAAAACAQAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABggAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAABIAAAAAABBAAAAAABBAAAAAAD version: 6 1,-1: ind: 1,-1 - tiles: ggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAQAAAAAAggAAAAAAcAAAAAAAIAAAAAAAYgAAAAADAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADAQAAAAAAcAAAAAAAIAAAAAAAYgAAAAABAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAIAAAAAADggAAAAAAcAAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIAAAAAACggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAIAAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAcAAAAAAAIAAAAAAAYgAAAAABAQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAAQAAAAAAcAAAAAAAIAAAAAACYgAAAAADAQAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAIAAAAAACggAAAAAAcAAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIAAAAAADggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAADAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAIAAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 -1,1: ind: -1,1 - tiles: YgAAAAACYgAAAAACYgAAAAACYgAAAAADAQAAAAAAIAAAAAACIAAAAAACAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAAQAAAAAAIAAAAAABYgAAAAADYgAAAAADYgAAAAACAQAAAAAAIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAAQAAAAAAIAAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAADwAAAAAADwAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADYgAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAADggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAACIAAAAAABIAAAAAAAYgAAAAADYgAAAAABYgAAAAADggAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAADIAAAAAACIAAAAAAAYgAAAAACYgAAAAADYgAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACYgAAAAABYgAAAAACYgAAAAABggAAAAAAIAAAAAABIAAAAAAAIAAAAAACggAAAAAAIAAAAAAAIAAAAAABIAAAAAABJAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABJAAAAAABggAAAAAAIAAAAAACIAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACJAAAAAACggAAAAAAIAAAAAACIAAAAAABAQAAAAAAYgAAAAABYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAABggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAADAQAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: AQAAAAAAIAAAAAABIAAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADggAAAAAAYgAAAAAAYgAAAAADYgAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAADggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAABggAAAAAAYgAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAACIAAAAAAAIAAAAAABggAAAAAAAQAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAABggAAAAAAIAAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACggAAAAAAYgAAAAADYgAAAAACYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAABYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADggAAAAAAYgAAAAACYgAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAABAQAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAACggAAAAAAIAAAAAADIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAAAYgAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAAAYgAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 0,1: ind: 0,1 - tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABCwAAAAACYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAAABwAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAABYgAAAAACAQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAABwAAAAAAfgAAAAADfgAAAAADIAAAAAACIAAAAAAAAQAAAAAAYgAAAAABYgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAfgAAAAAAfgAAAAACfgAAAAADIAAAAAACIAAAAAABggAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAfgAAAAAAfgAAAAACfgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABAQAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACAQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABggAAAAAAYgAAAAABYgAAAAAAYgAAAAADAQAAAAAAAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACIAAAAAACIAAAAAADIAAAAAACYgAAAAACAQAAAAAAAQAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAADAQAAAAAADQAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAACYgAAAAADIAAAAAAAYgAAAAACYgAAAAACYgAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAAQAAAAAAYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADAQAAAAAAAQAAAAAAYgAAAAAB + tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAACwAAAAABYgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAfgAAAAADfgAAAAADBwAAAAAFIAAAAAABIAAAAAABggAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAABggAAAAAABwAAAAAAfgAAAAACfgAAAAADIAAAAAADIAAAAAACAQAAAAAAYgAAAAAAYgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAggAAAAAAfgAAAAACfgAAAAACfgAAAAADIAAAAAADIAAAAAACggAAAAAAYgAAAAACYgAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAggAAAAAAfgAAAAABfgAAAAAAfgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAADAQAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACAQAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAABggAAAAAAYgAAAAADYgAAAAADYgAAAAACAQAAAAAAAQAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACIAAAAAADIAAAAAABIAAAAAACYgAAAAAAAQAAAAAAAQAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAAAIAAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAADQAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAACIAAAAAABYgAAAAACYgAAAAADYgAAAAADAQAAAAAAAQAAAAAAYgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAABggAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAAQAAAAAAYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACAQAAAAAAAQAAAAAAYgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAAGfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAfgAAAAADBwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAABgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACcAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAAggAAAAAABwAAAAAGggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAACBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAACBwAAAAADDQAAAAAA + tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAAEfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAACggAAAAAAfgAAAAACBwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAABgAAAAADcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADcAAAAAAAIAAAAAACAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACggAAAAAABwAAAAADggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAADIAAAAAACBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAADBwAAAAAFDQAAAAAA version: 6 2,0: ind: 2,0 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAADfgAAAAACggAAAAAAAQAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADggAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACAQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAACggAAAAAAAQAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACggAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAABggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAADIAAAAAADIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABIAAAAAACIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAABggAAAAAAIAAAAAACIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADggAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAADAQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABAQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADAQAAAAAABgAAAAABggAAAAAAggAAAAAABAAAAAAAggAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAGfgAAAAADggAAAAAAAQAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADAQAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADggAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADIAAAAAADIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADIAAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAAAIAAAAAACIAAAAAACIAAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAAggAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABggAAAAAAIAAAAAACIAAAAAADIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAACAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACAQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACAQAAAAAABgAAAAABggAAAAAAggAAAAAABAAAAAAAggAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAABggAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAIAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAIAAAAAADggAAAAAAIAAAAAACAQAAAAAAggAAAAAAAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACBgAAAAAAAQAAAAAAAQAAAAAAIAAAAAACAQAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAQAAAAAAAQAAAAAAIAAAAAACggAAAAAAIAAAAAAAAQAAAAAABgAAAAAAAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAABwAAAAABfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAADIAAAAAADggAAAAAAIAAAAAADAQAAAAAAggAAAAAAAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABBgAAAAACAQAAAAAAAQAAAAAAIAAAAAADAQAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAADAQAAAAAAAQAAAAAAIAAAAAACggAAAAAAIAAAAAADAQAAAAAABgAAAAADAQAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADggAAAAAABwAAAAAAfgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAIAAAAAACDwAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAIAAAAAACDwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAABwAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAADfgAAAAADBwAAAAAFggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABBwAAAAABfgAAAAACfgAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAfgAAAAADBwAAAAAGfgAAAAADggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABBwAAAAAAfgAAAAAABwAAAAABggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAfgAAAAACBwAAAAACfgAAAAACggAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAIAAAAAACDwAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAADwAAAAAAIAAAAAABDwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAABwAAAAAGggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAEfgAAAAACBwAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACBwAAAAAEfgAAAAACfgAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAAAfgAAAAAABwAAAAACfgAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACBwAAAAACfgAAAAABBwAAAAADggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAfgAAAAACBwAAAAAFfgAAAAABggAAAAAAggAAAAAA version: 6 3,-2: ind: 3,-2 @@ -113,31 +113,31 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAABwAAAAADggAAAAAADQAAAAABggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAADggAAAAAAggAAAAAABwAAAAADBwAAAAACggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAABwAAAAAEfgAAAAAAggAAAAAABwAAAAADggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAABwAAAAAFggAAAAAADQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAAggAAAAAAggAAAAAABwAAAAACBwAAAAAGggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAABwAAAAADfgAAAAACggAAAAAABwAAAAADggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAIAAAAAAAIAAAAAABIAAAAAADAQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADCwAAAAABYgAAAAABggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABggAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAACggAAAAAAIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAACwAAAAADYgAAAAABggAAAAAAIAAAAAAAIAAAAAADIAAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAYgAAAAAAYgAAAAACggAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAACggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAggAAAAAACwAAAAACYgAAAAADggAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAABAQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAADAQAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAACIAAAAAADIAAAAAADggAAAAAAYgAAAAADYgAAAAADggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAADggAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABAQAAAAAAIAAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAABggAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAAA + tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAAAIAAAAAAAIAAAAAABAQAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABCwAAAAABYgAAAAADggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAADggAAAAAAIAAAAAABIAAAAAADIAAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAggAAAAAAYgAAAAADYgAAAAACggAAAAAAIAAAAAACIAAAAAABIAAAAAACAQAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAACwAAAAADYgAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABggAAAAAAYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADggAAAAAAYgAAAAAAYgAAAAADggAAAAAAIAAAAAACIAAAAAACIAAAAAACggAAAAAAYgAAAAACYgAAAAACggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAABggAAAAAACwAAAAACYgAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAAQAAAAAAYgAAAAADYgAAAAABAQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABAQAAAAAAYgAAAAADYgAAAAABggAAAAAAIAAAAAAAIAAAAAACIAAAAAABggAAAAAAYgAAAAACYgAAAAACggAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAADggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADggAAAAAAIAAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACggAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAIAAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAACYgAAAAADggAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABggAAAAAAIAAAAAAD version: 6 -2,-2: ind: -2,-2 - tiles: YgAAAAACYgAAAAADggAAAAAADwAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAYgAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAACwAAAAACYgAAAAABYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAQAAAAAAfgAAAAABBwAAAAACfgAAAAADggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAABwAAAAABfgAAAAACfgAAAAACggAAAAAAYgAAAAABggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAADBwAAAAADggAAAAAAYgAAAAADAQAAAAAAIAAAAAACIAAAAAACAQAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAABBwAAAAAGfgAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAACggAAAAAAYgAAAAACggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAABwAAAAABfgAAAAADfgAAAAACBwAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAADAQAAAAAAYgAAAAACggAAAAAADwAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAADBwAAAAABfgAAAAACfgAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAABAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAfgAAAAAAfgAAAAADBwAAAAACfgAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACggAAAAAAYgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAAfgAAAAAAfgAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAAA + tiles: YgAAAAACYgAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABCwAAAAAAYgAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAACIAAAAAAAAQAAAAAAfgAAAAAABwAAAAADfgAAAAACggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAACggAAAAAABwAAAAAAfgAAAAAAfgAAAAAAggAAAAAAYgAAAAABggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAABfgAAAAADBwAAAAADggAAAAAAYgAAAAABAQAAAAAAIAAAAAABIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAfgAAAAABfgAAAAACBwAAAAAAfgAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAABggAAAAAAYgAAAAACggAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAABwAAAAABfgAAAAACfgAAAAACBwAAAAAFIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAAQAAAAAAYgAAAAACggAAAAAADwAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAADBwAAAAAAfgAAAAACfgAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAADAQAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAfgAAAAACfgAAAAACBwAAAAAEfgAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACggAAAAAAYgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAGfgAAAAAAfgAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAABYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACAQAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAcAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABAQAAAAAAggAAAAAAcAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAADfgAAAAACIAAAAAADIAAAAAABIAAAAAABggAAAAAAYgAAAAABYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAABIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAADfgAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACggAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAAQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAAQAAAAAAYgAAAAADYgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAADggAAAAAAYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAAQAAAAAAIAAAAAACIAAAAAABIAAAAAAAAQAAAAAAYgAAAAACYgAAAAABAQAAAAAAggAAAAAAcAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAAQAAAAAAggAAAAAAcAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAABAQAAAAAAYgAAAAADYgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAABfgAAAAACIAAAAAAAIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAADBwAAAAACIAAAAAACIAAAAAADIAAAAAADggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAABfgAAAAADIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAABggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAAD version: 6 -2,0: ind: -2,0 - tiles: AgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAAfgAAAAAABwAAAAADfgAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAABwAAAAAFfgAAAAABBwAAAAAGggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAEBwAAAAAFAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAFfgAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABcAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADggAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAC + tiles: AgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAEfgAAAAADBwAAAAACfgAAAAADggAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAABwAAAAAFfgAAAAADBwAAAAAFggAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABAgAAAAAAggAAAAAADQAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAABggAAAAAAIAAAAAABIAAAAAAAIAAAAAACAgAAAAAAggAAAAAAggAAAAAAggAAAAAADQAAAAABggAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAABggAAAAAAIAAAAAACIAAAAAADIAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAAA version: 6 1,1: ind: 1,1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAAggAAAAAABAAAAAABBAAAAAADAQAAAAAABgAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAACggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADggAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABAQAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAACBAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABAQAAAAAABAAAAAABBAAAAAAABAAAAAABggAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAggAAAAAAAQAAAAAAggAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAAggAAAAAABAAAAAADBAAAAAABBAAAAAADggAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAACAQAAAAAABgAAAAACggAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAABIAAAAAACIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAAGggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAACIAAAAAACIAAAAAACIAAAAAACggAAAAAABgAAAAABAQAAAAAAggAAAAAABwAAAAABBwAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAABgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAAAggAAAAAABAAAAAAABAAAAAAAAQAAAAAABgAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAADggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAAAggAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAABggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAADBAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABggAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAggAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABggAAAAAABAAAAAAABAAAAAACBAAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABAQAAAAAABgAAAAADggAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAADIAAAAAACIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAAABwAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAACIAAAAAADIAAAAAAAIAAAAAABggAAAAAABgAAAAAAAQAAAAAAggAAAAAABwAAAAAEBwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAABgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAYwAAAAADYwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACYwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAfgAAAAADfgAAAAAAfgAAAAACfgAAAAADBwAAAAADggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAABwAAAAAGBwAAAAAFfgAAAAADBwAAAAAGfgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAABBwAAAAAEfgAAAAACfgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAYwAAAAAAYwAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAADggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAfgAAAAAAfgAAAAABfgAAAAABfgAAAAAABwAAAAACggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAABwAAAAAABwAAAAAEfgAAAAADBwAAAAAEfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAABBwAAAAACfgAAAAACfgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 1,-3: ind: 1,-3 @@ -145,23 +145,23 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: ggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAQAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAACYwAAAAADYwAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAACYwAAAAABggAAAAAAYwAAAAADggAAAAAAggAAAAAAggAAAAAAfgAAAAABfgAAAAACfgAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAADggAAAAAAggAAAAAAggAAAAAABwAAAAAGfgAAAAACBwAAAAADggAAAAAAggAAAAAABgAAAAACBgAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAABAQAAAAAAIAAAAAABIAAAAAACIAAAAAABggAAAAAABwAAAAACBwAAAAAAfgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAfgAAAAABfgAAAAACBwAAAAADggAAAAAAYgAAAAABYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAIAAAAAACIAAAAAAAIAAAAAACggAAAAAABwAAAAAFIAAAAAACIAAAAAACggAAAAAAIAAAAAAAIAAAAAABIAAAAAADAQAAAAAAYgAAAAABYgAAAAACYgAAAAAAAQAAAAAAIAAAAAADIAAAAAABIAAAAAAAAQAAAAAAfgAAAAABIAAAAAADIAAAAAACggAAAAAAIAAAAAABIAAAAAADIAAAAAABggAAAAAAYgAAAAACYgAAAAABYgAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAggAAAAAAfgAAAAAD + tiles: ggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAQAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAACYwAAAAACYwAAAAADggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYwAAAAACYwAAAAABYwAAAAABggAAAAAAYwAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAABfgAAAAADfgAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAACggAAAAAAggAAAAAAggAAAAAABwAAAAAAfgAAAAAABwAAAAADggAAAAAAggAAAAAABgAAAAAABgAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAggAAAAAAIAAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAACAQAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAABwAAAAADBwAAAAADfgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABggAAAAAAfgAAAAAAfgAAAAADBwAAAAACggAAAAAAYgAAAAACYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADggAAAAAAYgAAAAAAYgAAAAADYgAAAAADggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAABwAAAAAEIAAAAAAAIAAAAAABggAAAAAAIAAAAAACIAAAAAADIAAAAAABAQAAAAAAYgAAAAACYgAAAAAAYgAAAAAAAQAAAAAAIAAAAAADIAAAAAACIAAAAAACAQAAAAAAfgAAAAADIAAAAAACIAAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAACYgAAAAABggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAfgAAAAAB version: 6 -2,-3: ind: -2,-3 - tiles: ggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADfgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAFfgAAAAADggAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAfgAAAAABBwAAAAAGAQAAAAAAfgAAAAADBwAAAAADAQAAAAAAfgAAAAACBwAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAggAAAAAABwAAAAADfgAAAAADggAAAAAABwAAAAACfgAAAAACggAAAAAABwAAAAAAfgAAAAACggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAABfgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAADYgAAAAADCwAAAAABCwAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAABAQAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADggAAAAAAggAAAAAAIAAAAAADYgAAAAAAYgAAAAADggAAAAAAfgAAAAAAfgAAAAADggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAIAAAAAABIAAAAAACYgAAAAACYgAAAAABAQAAAAAABwAAAAAEfgAAAAADAQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAYgAAAAAAYgAAAAABggAAAAAAfgAAAAAABwAAAAABggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAAAIAAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADggAAAAAAYgAAAAADYgAAAAADggAAAAAAIAAAAAADIAAAAAAB + tiles: ggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACfgAAAAABggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAADggAAAAAAfgAAAAADBwAAAAAEAQAAAAAAfgAAAAABBwAAAAADAQAAAAAAfgAAAAADBwAAAAABggAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAACggAAAAAABwAAAAACfgAAAAAAggAAAAAABwAAAAAAfgAAAAACggAAAAAABwAAAAACfgAAAAABggAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADfgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAABAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAABCwAAAAADCwAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAIAAAAAACYgAAAAADYgAAAAABggAAAAAAfgAAAAACfgAAAAACggAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAAAggAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAADIAAAAAAAYgAAAAAAYgAAAAADAQAAAAAABwAAAAAFfgAAAAADAQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAACYgAAAAADYgAAAAACggAAAAAAfgAAAAAABwAAAAACggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAYgAAAAACYgAAAAABggAAAAAAIAAAAAACIAAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABggAAAAAAYgAAAAAAYgAAAAACggAAAAAAIAAAAAAAIAAAAAAB version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAACAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAADAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: YgAAAAADYgAAAAAAYgAAAAAAAQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAADAQAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAAAAQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAwAAAAADAwAAAAAABwAAAAADAwAAAAADAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAfgAAAAACfgAAAAABBwAAAAAFAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAABBwAAAAACBwAAAAAFfgAAAAACAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAACfgAAAAACfgAAAAABBwAAAAABAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAACBwAAAAABfgAAAAACfgAAAAACAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAADfgAAAAADBwAAAAADfgAAAAADAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAwAAAAABAwAAAAACAwAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: YgAAAAADYgAAAAACYgAAAAADAQAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAwAAAAADAwAAAAABBwAAAAADAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAfgAAAAADfgAAAAADBwAAAAAGAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAABwAAAAAABwAAAAAAfgAAAAABAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAfgAAAAAAfgAAAAABBwAAAAADAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAABBwAAAAAEfgAAAAADfgAAAAACAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAfgAAAAADBwAAAAAGfgAAAAADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAggAAAAAAIAAAAAAAIAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAABQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAAQAAAAAAIAAAAAABBQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACggAAAAAAIAAAAAACggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAggAAAAAAIAAAAAABIAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAABQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABAQAAAAAAIAAAAAADBQAAAAAA version: 6 2,-3: ind: 2,-3 @@ -177,15 +177,15 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAAQAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAABggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABggAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADAQAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAAAggAAAAAAJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAADQAAAAABggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAJAAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAACggAAAAAAJAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAADQAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAACggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAADIAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: AAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAABAQAAAAAAIAAAAAACIAAAAAADIAAAAAAAAAAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAcAAAAAAAggAAAAAAcAAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAAQAAAAAAIAAAAAABIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAcAAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAABggAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAAQAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAADggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAADggAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAACIAAAAAADggAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAABggAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAEfgAAAAADggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAQAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAGAQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAAGggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACcAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAADwAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAAAZAAAAAADZAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAACZAAAAAAAZAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAABZAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -201,11 +201,11 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: YgAAAAAADQAAAAACYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACggAAAAAAYgAAAAAADgAAAAACYgAAAAABYgAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAACggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YgAAAAAADQAAAAACYgAAAAADYgAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAADggAAAAAAYgAAAAABDgAAAAAEYgAAAAADYgAAAAACggAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACggAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAADggAAAAAAIAAAAAACIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAggAAAAAAAQAAAAAADQAAAAAADgAAAAAEYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAggAAAAAAAQAAAAAADQAAAAACDgAAAAADYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 @@ -213,27 +213,27 @@ entities: version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAAAggAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABAAAAAACBAAAAAABAQAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAABggAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACggAAAAAABwAAAAAEggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADggAAAAAAggAAAAAAggAAAAAAfgAAAAAABwAAAAAADQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACggAAAAAABgAAAAABggAAAAAABwAAAAADBwAAAAAFfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAACggAAAAAABwAAAAAEggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAACggAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABAAAAAADBAAAAAADAQAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAACggAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAABggAAAAAABwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADggAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAABDQAAAAABAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAAAggAAAAAABgAAAAABggAAAAAABwAAAAAGBwAAAAAEfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAADggAAAAAABwAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAA version: 6 0,2: ind: 0,2 - tiles: ggAAAAAAggAAAAAABgAAAAACAQAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAACYgAAAAABAQAAAAAAAQAAAAAAYgAAAAADfgAAAAAABwAAAAADfgAAAAABggAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAACBwAAAAAGfgAAAAACBwAAAAABggAAAAAAYgAAAAABYgAAAAABcAAAAAAAcAAAAAAAYgAAAAADcAAAAAAAcAAAAAAAYgAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAABcAAAAAAAcAAAAAAAYgAAAAACYgAAAAABcAAAAAAAcAAAAAAAYgAAAAADIAAAAAADIAAAAAAAIAAAAAACggAAAAAAYgAAAAACYgAAAAACcAAAAAAAcAAAAAAAYgAAAAACcAAAAAAAcAAAAAAAYgAAAAAAYgAAAAADcAAAAAAAcAAAAAAAYgAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAAAIAAAAAABIAAAAAABIAAAAAACAQAAAAAAAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAABYgAAAAACYgAAAAACYgAAAAACIAAAAAABIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ggAAAAAAggAAAAAABgAAAAACAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAADYgAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAABAQAAAAAAAQAAAAAAYgAAAAABfgAAAAAABwAAAAAGfgAAAAADggAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAADBwAAAAAEfgAAAAAABwAAAAAFggAAAAAAYgAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAABcAAAAAAAcAAAAAAAYgAAAAABYgAAAAABcAAAAAAAcAAAAAAAYgAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAAAYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAADIAAAAAABIAAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAADcAAAAAAAcAAAAAAAYgAAAAACYgAAAAACcAAAAAAAcAAAAAAAYgAAAAACIAAAAAAAIAAAAAACIAAAAAADggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAABIAAAAAAAIAAAAAADIAAAAAABAQAAAAAAAQAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAABYgAAAAAAIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAYgAAAAACggAAAAAAIAAAAAACDAAAAAADDAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAZAAAAAABZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAIAAAAAADDAAAAAABDAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAZAAAAAABZAAAAAACggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAQAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAAAZAAAAAABggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAADggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAADIAAAAAAAIAAAAAADDwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACIAAAAAABIAAAAAAADwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAYgAAAAAAggAAAAAAIAAAAAAADAAAAAABDAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAIAAAAAABDAAAAAADDAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAZAAAAAAAZAAAAAABggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAACYgAAAAACYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAABZAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAYgAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAABggAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACIAAAAAACIAAAAAADDwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAADIAAAAAABIAAAAAABDwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAIAAAAAABggAAAAAABgAAAAABggAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAIAAAAAABggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAABggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAACIAAAAAAAggAAAAAABgAAAAAAggAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABIAAAAAACggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 @@ -249,11 +249,11 @@ entities: version: 6 -2,2: ind: -2,2 - tiles: IAAAAAACggAAAAAAIAAAAAACIAAAAAABIAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAACggAAAAAAggAAAAAABgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: IAAAAAACggAAAAAAIAAAAAACIAAAAAACIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAABgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAAAIAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAIAAAAAADBQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABggAAAAAAIAAAAAABIAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAADggAAAAAAIAAAAAADggAAAAAAIAAAAAADggAAAAAAIAAAAAADIAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAIAAAAAABggAAAAAAIAAAAAACBQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 @@ -269,7 +269,7 @@ entities: version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADDgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAADgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAABDQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAADggAAAAAAggAAAAAABgAAAAADggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAADgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAABYgAAAAACDgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACYgAAAAADDQAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAADggAAAAAAggAAAAAABgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA version: 6 -2,3: ind: -2,3 @@ -281,7 +281,7 @@ entities: version: 6 3,0: ind: 3,0 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADQAAAAAAggAAAAAAfgAAAAADBwAAAAAFfgAAAAABggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAfgAAAAAABwAAAAABBwAAAAADggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADQAAAAABggAAAAAAfgAAAAABBwAAAAADfgAAAAABggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAfgAAAAADBwAAAAAGBwAAAAADggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-4: ind: 0,-4 @@ -337,7 +337,6 @@ entities: color: '#D4D4D496' id: Arrows decals: - 8278: -20.517876,26.005266 10186: 9.439381,23.99565 - node: cleanable: True @@ -362,7 +361,6 @@ entities: 5572: 43,-22 5573: 43,-21 5574: 43,-20 - 8282: -20.957645,24.02554 10645: 47,-20 10646: 47,-21 10647: 47,-22 @@ -373,6 +371,13 @@ entities: decals: 8553: 5.9731264,37.993595 8554: 6.9731264,37.993595 + - node: + angle: 1.5707963267948966 rad + color: '#D4D4D496' + id: ArrowsGreyscale + decals: + 12121: -13,14 + 12122: -13,13 - node: angle: 1.5707963267948966 rad color: '#D4D4D428' @@ -472,19 +477,12 @@ entities: 5554: -3,-29 5570: -5,-33 5571: -4,-33 - 8065: -24,12 - 8179: -11,22 - 8193: -16,19 - 8194: -16,18 - 8195: -16,17 - 8316: -17,25 - 8317: -13,25 - 8318: -13,23 - 8319: -17,23 - 8320: -13,26 - 8321: -17,26 - 8322: -21,23 11833: 20,-23 + 12119: -14,14 + 12120: -14,13 + 12123: -21,15 + 12124: -21,14 + 12125: -21,13 - node: angle: 1.5707963267948966 rad color: '#D4D4D496' @@ -566,11 +564,6 @@ entities: 413: 6,8 831: -19,-24 847: -21,-24 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 8283: -21,24 - node: color: '#9FED5896' id: BrickTileDarkLineE @@ -598,11 +591,6 @@ entities: 6712: -4,3 7805: -3,3 7806: 5,3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 8256: -21,26 - node: color: '#9FED5896' id: BrickTileDarkLineS @@ -642,7 +630,6 @@ entities: id: BrickTileSteelCornerNe decals: 211: -11,-33 - 570: -13,11 621: -29,-6 632: -40,-12 674: -25,-2 @@ -680,12 +667,9 @@ entities: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 527: -25,12 745: -35,-9 - 6330: -14,27 - 8262: -19,26 - 8312: -13,26 - 8391: -24,17 + 12294: -17,20 + 12338: -11,22 - node: color: '#D4D4D496' id: BrickTileSteelCornerNe @@ -726,7 +710,6 @@ entities: id: BrickTileSteelCornerNw decals: 213: -13,-33 - 571: -15,11 613: -43,-6 630: -56,-12 676: -27,-2 @@ -734,6 +717,7 @@ entities: 1310: 28,23 1337: 7,-18 1467: 0,40 + 12273: -22,26 - node: color: '#52B4E996' id: BrickTileSteelCornerNw @@ -762,12 +746,9 @@ entities: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 529: -27,12 743: -36,-9 - 6329: -16,27 - 8263: -22,22 - 8313: -17,26 - 8390: -28,17 + 12299: -31,20 + 12331: -15,22 - node: color: '#D4D4D496' id: BrickTileSteelCornerNw @@ -802,7 +783,6 @@ entities: color: '#334E6DC8' id: BrickTileSteelCornerSe decals: - 573: -13,7 627: -29,-12 628: -40,-13 629: -45,-14 @@ -812,6 +792,7 @@ entities: 1469: 2,37 6183: 39,-17 10917: -25,-10 + 12271: -20,23 - node: color: '#52B4E996' id: BrickTileSteelCornerSe @@ -837,10 +818,10 @@ entities: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 530: -25,11 742: -35,-10 - 8268: -19,20 - 8388: -24,14 + 12198: -17,15 + 12213: -13,11 + 12337: -11,20 - node: color: '#D4D4D496' id: BrickTileSteelCornerSe @@ -878,6 +859,7 @@ entities: 1313: 28,21 1354: 7,-20 1472: 0,37 + 12272: -22,23 - node: color: '#52B4E996' id: BrickTileSteelCornerSw @@ -905,10 +887,11 @@ entities: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 532: -27,11 744: -36,-10 - 8269: -22,20 - 8389: -28,14 + 12197: -19,15 + 12207: -18,11 + 12300: -31,19 + 12333: -15,20 - node: color: '#D4D4D496' id: BrickTileSteelCornerSw @@ -972,7 +955,6 @@ entities: id: BrickTileSteelInnerNe decals: 229: -11,-34 - 580: -14,11 685: -26,-2 694: -29,-8 1326: 31,23 @@ -1010,10 +992,9 @@ entities: color: '#D381C996' id: BrickTileSteelInnerNe decals: - 535: -26,12 - 8266: -19,21 - 8315: -14,26 - 8382: -24,16 + 12196: -24,15 + 12203: -17,17 + 12217: -18,13 - node: color: '#D4D4D496' id: BrickTileSteelInnerNe @@ -1043,13 +1024,12 @@ entities: color: '#334E6DC8' id: BrickTileSteelInnerNw decals: - 577: -14,11 - 578: -15,7 684: -26,-2 1325: 31,23 4005: -42,-12 10972: -55,-12 10973: -53,-12 + 12277: -22,25 - node: cleanable: True color: '#334E6DC8' @@ -1077,10 +1057,7 @@ entities: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 536: -26,12 - 8264: -21,22 - 8265: -22,21 - 8314: -16,26 + 12202: -19,17 - node: color: '#D4D4D496' id: BrickTileSteelInnerNw @@ -1117,6 +1094,7 @@ entities: 6263: -39,-8 6264: -37,-8 6265: -35,-8 + 12275: -20,24 - node: color: '#52B4E996' id: BrickTileSteelInnerSe @@ -1141,10 +1119,9 @@ entities: color: '#D381C996' id: BrickTileSteelInnerSe decals: - 520: -15,23 - 8267: -19,21 - 8383: -24,15 - 8384: -26,14 + 12199: -18,15 + 12204: -17,16 + 12212: -14,11 - node: color: '#D4D4D496' id: BrickTileSteelInnerSe @@ -1172,6 +1149,8 @@ entities: 6260: -39,-8 6261: -37,-8 6262: -35,-8 + 12264: -18,24 + 12276: -22,25 - node: cleanable: True color: '#334E6DC8' @@ -1207,10 +1186,10 @@ entities: color: '#D381C996' id: BrickTileSteelInnerSw decals: - 521: -15,23 - 8270: -22,21 - 8284: -21,24 - 8385: -26,14 + 12200: -18,15 + 12201: -19,16 + 12211: -14,11 + 12288: -19,19 - node: color: '#D4D4D496' id: BrickTileSteelInnerSw @@ -1234,9 +1213,6 @@ entities: id: BrickTileSteelLineE decals: 224: -11,-35 - 566: -13,10 - 567: -13,9 - 568: -13,8 622: -29,-7 623: -29,-11 682: -25,-3 @@ -1250,6 +1226,8 @@ entities: 6258: -41,-9 6259: -41,-10 10918: -25,-5 + 12265: -18,24 + 12266: -18,25 - node: color: '#43990996' id: BrickTileSteelLineE @@ -1290,10 +1268,9 @@ entities: id: BrickTileSteelLineE decals: 4102: -38,28 - 8273: -19,22 - 8274: -19,23 - 8275: -19,24 - 8276: -19,25 + 12216: -13,12 + 12295: -17,19 + 12339: -11,21 - node: color: '#D4D4D496' id: BrickTileSteelLineE @@ -1378,6 +1355,9 @@ entities: 6193: 36,-15 6194: 37,-15 6195: 38,-15 + 12267: -21,26 + 12268: -20,26 + 12269: -19,26 - node: color: '#52B4E996' id: BrickTileSteelLineN @@ -1415,12 +1395,25 @@ entities: color: '#D381C996' id: BrickTileSteelLineN decals: - 6342: -15,27 - 8258: -21,26 - 8259: -20,26 - 8392: -27,17 - 8393: -26,17 - 8394: -25,17 + 12194: -23,15 + 12195: -22,15 + 12214: -17,13 + 12215: -16,13 + 12289: -22,20 + 12290: -21,20 + 12291: -20,20 + 12292: -19,20 + 12293: -18,20 + 12301: -30,20 + 12302: -29,20 + 12303: -28,20 + 12304: -27,20 + 12305: -26,20 + 12306: -25,20 + 12307: -24,20 + 12340: -14,22 + 12341: -13,22 + 12342: -12,22 - node: color: '#D4D4D496' id: BrickTileSteelLineN @@ -1467,8 +1460,6 @@ entities: color: '#334E6DC8' id: BrickTileSteelLineS decals: - 565: -14,7 - 576: -15,7 596: -54,-13 597: -52,-13 598: -50,-14 @@ -1495,6 +1486,8 @@ entities: 6254: -36,-8 6255: -38,-8 6256: -40,-8 + 12263: -19,24 + 12270: -21,23 - node: color: '#3EB38896' id: BrickTileSteelLineS @@ -1546,14 +1539,26 @@ entities: color: '#D381C996' id: BrickTileSteelLineS decals: - 540: -26,11 4089: 28,-2 - 8271: -21,20 - 8272: -20,20 - 8310: -16,23 - 8311: -14,23 - 8386: -27,14 - 8387: -25,14 + 12208: -17,11 + 12209: -16,11 + 12210: -15,11 + 12285: -22,19 + 12286: -21,19 + 12287: -20,19 + 12308: -30,19 + 12309: -29,19 + 12310: -28,19 + 12311: -27,19 + 12312: -26,19 + 12313: -25,19 + 12314: -24,19 + 12334: -14,20 + 12335: -13,20 + 12336: -12,20 + 12346: -12,18 + 12347: -11,18 + 12348: -10,18 - node: color: '#D4D4D496' id: BrickTileSteelLineS @@ -1599,8 +1604,6 @@ entities: decals: 220: -13,-34 221: -13,-35 - 563: -15,9 - 564: -15,8 624: -34,-11 658: -27,-9 670: -27,-3 @@ -1614,6 +1617,7 @@ entities: 1464: 0,38 5543: -34,-9 5544: -34,-10 + 12278: -22,24 - node: color: '#52B4E996' id: BrickTileSteelLineW @@ -1653,9 +1657,9 @@ entities: color: '#D381C996' id: BrickTileSteelLineW decals: - 8285: -21,23 - 8395: -28,16 - 8396: -28,15 + 12205: -18,13 + 12206: -18,12 + 12332: -15,21 - node: color: '#D4D4D496' id: BrickTileSteelLineW @@ -1733,11 +1737,6 @@ entities: 971: 15,31 972: 15,25 973: 16,39 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 8095: -13,21 - node: color: '#D4D4D428' id: BrickTileWhiteCornerNe @@ -1822,11 +1821,6 @@ entities: 995: 15,23 1013: 16,33 10177: 8,23 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 8102: -13,14 - node: color: '#D4D4D428' id: BrickTileWhiteCornerSe @@ -1866,11 +1860,6 @@ entities: 4073: 12,27 4079: 5,23 10176: 10,23 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSw - decals: - 8380: -22,14 - node: color: '#D4D4D428' id: BrickTileWhiteCornerSw @@ -1921,12 +1910,6 @@ entities: decals: 1039: 7,30 1040: 16,38 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNe - decals: - 8093: -15,21 - 8407: -13,17 - node: color: '#D4D4D428' id: BrickTileWhiteInnerNe @@ -1961,11 +1944,6 @@ entities: id: BrickTileWhiteInnerNw decals: 1031: 6,30 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNw - decals: - 8375: -15,16 - node: color: '#D4D4D428' id: BrickTileWhiteInnerNw @@ -2003,12 +1981,6 @@ entities: decals: 1035: 16,38 1041: 10,33 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSe - decals: - 8100: -13,16 - 8113: -17,14 - node: color: '#D4D4D428' id: BrickTileWhiteInnerSe @@ -2039,12 +2011,6 @@ entities: id: BrickTileWhiteInnerSw decals: 8711: 18,38 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSw - decals: - 8112: -17,14 - 8381: -22,15 - node: color: '#D4D4D428' id: BrickTileWhiteInnerSw @@ -2104,14 +2070,6 @@ entities: 1025: 8,25 1029: 15,24 10174: 8,24 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 8101: -13,15 - 8368: -13,18 - 8369: -13,19 - 8370: -13,20 - node: color: '#D4D4D428' id: BrickTileWhiteLineE @@ -2187,18 +2145,6 @@ entities: 988: 15,39 989: 10,39 992: 6,39 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 8088: -17,16 - 8089: -16,16 - 8094: -14,21 - 8362: -22,16 - 8363: -21,16 - 8364: -20,16 - 8365: -19,16 - 8366: -18,16 - node: color: '#D4D4D428' id: BrickTileWhiteLineN @@ -2278,17 +2224,6 @@ entities: 1009: 11,33 1010: 12,33 1011: 15,33 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 8103: -14,14 - 8104: -15,14 - 8105: -16,14 - 8376: -21,14 - 8377: -20,14 - 8378: -19,14 - 8379: -18,14 - node: color: '#D4D4D428' id: BrickTileWhiteLineS @@ -2366,15 +2301,6 @@ entities: 4077: 5,25 4078: 5,24 10175: 10,24 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 8092: -15,21 - 8371: -15,20 - 8372: -15,19 - 8373: -15,18 - 8374: -15,17 - node: color: '#D4D4D428' id: BrickTileWhiteLineW @@ -2421,16 +2347,9 @@ entities: color: '#D4D4D496' id: Caution decals: - 8197: -15,24 8479: 7,39 8480: 9,39 10644: 53,-26 - - node: - angle: 1.5707963267948966 rad - color: '#D4D4D496' - id: Caution - decals: - 8196: -21,25 - node: color: '#334E6DC8' id: CheckerNESW @@ -2515,6 +2434,43 @@ entities: 9767: 17,8 9768: 14,3 9769: 13,3 + - node: + color: '#72476D93' + id: CheckerNESW + decals: + 12182: -9,17 + 12183: -11,17 + 12184: -10,17 + 12185: -12,17 + 12186: -12,16 + 12187: -11,16 + 12188: -10,16 + 12189: -9,16 + 12190: -23,17 + 12191: -23,16 + 12192: -22,16 + 12193: -22,17 + 12220: -19,13 + 12221: -19,12 + 12222: -18,10 + 12223: -17,10 + - node: + color: '#73476D93' + id: CheckerNESW + decals: + 12315: -22,21 + 12316: -21,21 + 12317: -20,21 + 12318: -19,21 + 12319: -18,22 + 12320: -18,21 + 12321: -17,22 + 12322: -17,21 + 12323: -15,23 + 12324: -14,23 + 12343: -10,22 + 12344: -10,21 + 12345: -10,20 - node: color: '#79150096' id: CheckerNESW @@ -2537,31 +2493,6 @@ entities: 4070: 11,28 5795: 6,21 5796: 7,21 - - node: - color: '#D381C996' - id: CheckerNESW - decals: - 4053: -19,17 - 4054: -20,17 - 4055: -21,17 - 4056: -22,17 - 4057: -22,18 - 4058: -21,18 - 4059: -20,18 - 4060: -19,18 - 8066: -18,17 - 8067: -18,18 - 8068: -12,21 - 8069: -12,20 - 8070: -11,20 - 8071: -11,21 - 8072: -17,21 - 8073: -17,20 - 8074: -16,20 - 8075: -16,21 - 8076: -15,13 - 8077: -14,13 - 8078: -13,13 - node: color: '#D4D4D428' id: CheckerNESW @@ -2592,6 +2523,14 @@ entities: 5933: -31,-10 5934: -32,-11 5935: -31,-11 + - node: + color: '#72476D93' + id: CheckerNWSE + decals: + 12224: -18,8 + 12225: -18,7 + 12226: -17,8 + 12227: -17,7 - node: cleanable: True color: '#571212FF' @@ -2660,9 +2599,6 @@ entities: 11742: 0,9 11743: 4,8 11744: 3,9 - 11745: -18,8 - 11746: -17,7 - 11747: -18,6 11749: -26,0 11750: -28,-4 11751: -29,-3 @@ -2736,6 +2672,12 @@ entities: 11819: 58,-2 11824: -28,1 11825: -27,0 + 12528: 1,19 + 12529: 0,21 + 12530: 2,22 + 12531: -25,26 + 12532: -24,24 + 12533: -24,25 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2767,7 +2709,6 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 1727: -13,7 1738: 7,3 1745: 18,8 1747: 11,10 @@ -2822,7 +2763,6 @@ entities: 2191: -3,28 2192: -4,27 2195: -11,26 - 2199: -13,11 2201: -25,31 2202: -29,31 2204: -36,31 @@ -2833,7 +2773,6 @@ entities: 2209: -40,28 2210: -37,27 2211: -22,28 - 2213: -20,10 2216: 4,-18 2218: 11,-27 2220: 14,-22 @@ -2977,10 +2916,6 @@ entities: 5010: 10,27 5038: -3,29 5041: -2,28 - 5078: -21,18 - 5079: -22,17 - 5123: -14,8 - 5124: -15,8 5136: -40,34 5137: -34,32 5140: -34,34 @@ -3074,9 +3009,6 @@ entities: 6318: -43,-36 6319: -43,-34 6320: -42,-35 - 6346: -16,27 - 6348: -14,27 - 6394: -24,12 6475: 3,19 6476: 4,21 6484: -23,35 @@ -3098,37 +3030,6 @@ entities: 7626: 34,3 7627: 35,5 7628: 37,3 - 8201: -17,14 - 8202: -15,13 - 8203: -12,13 - 8204: -13,14 - 8207: -16,19 - 8208: -17,20 - 8209: -16,21 - 8210: -13,21 - 8211: -11,20 - 8408: -21,14 - 8409: -22,15 - 8410: -20,16 - 8411: -19,15 - 8412: -14,16 - 8413: -15,17 - 8414: -14,19 - 8415: -21,20 - 8416: -22,21 - 8417: -21,23 - 8419: -19,23 - 8420: -20,25 - 8421: -21,26 - 8422: -24,16 - 8423: -26,17 - 8424: -27,16 - 8425: -28,15 - 8426: -27,14 - 8427: -25,15 - 8463: -17,23 - 8464: -13,24 - 8465: -17,26 8561: 4,39 8562: 5,38 8563: 8,36 @@ -3383,9 +3284,7 @@ entities: 9795: 16,9 9796: 15,10 9797: 13,11 - 9816: -12,16 9818: -26,-30 - 9832: -11,17 9891: 27,-15 9892: 26,-12 9893: 28,-11 @@ -3411,7 +3310,6 @@ entities: 10195: -42,-25 10196: -38,-14 10197: -29,-14 - 10203: -9,20 10231: -9,-16 10232: -8,-20 10238: -29,-32 @@ -3532,6 +3430,73 @@ entities: 11935: 29,-25 11987: 31,-20 11994: 29,-42 + 12356: -31,22 + 12357: -30,19 + 12358: -29,17 + 12359: -28,20 + 12360: -27,21 + 12361: -25,22 + 12362: -24,20 + 12363: -25,18 + 12388: -21,19 + 12389: -17,20 + 12390: -17,17 + 12391: -18,15 + 12402: -21,23 + 12403: -22,25 + 12404: -20,26 + 12405: -18,25 + 12406: -19,24 + 12418: -15,20 + 12419: -15,23 + 12420: -14,22 + 12421: -12,20 + 12422: -10,21 + 12423: -11,22 + 12424: -15,24 + 12425: -14,26 + 12438: -26,15 + 12439: -26,13 + 12440: -25,11 + 12441: -23,12 + 12442: -24,13 + 12443: -23,15 + 12444: -22,17 + 12445: -21,15 + 12446: -21,13 + 12462: -30,13 + 12467: -30,17 + 12468: -28,18 + 12469: -26,17 + 12474: -19,13 + 12475: -18,11 + 12476: -17,12 + 12477: -16,13 + 12478: -14,14 + 12479: -13,12 + 12480: -14,11 + 12481: -12,14 + 12482: -11,13 + 12483: -13,8 + 12484: -15,7 + 12485: -15,9 + 12486: -17,7 + 12487: -18,6 + 12508: -13,17 + 12512: -15,18 + 12513: -12,16 + 12514: -9,17 + 12515: -12,18 + 12516: -10,19 + 12525: -19,7 + 12534: -34,25 + 12536: -31,24 + 12537: -30,28 + 12538: -30,25 + 12539: -28,25 + 12540: -27,26 + 12541: -27,28 + 12547: -18,26 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3642,9 +3607,6 @@ entities: 11395: -17,4 11396: -13,5 11397: -23,9 - 11406: -22,12 - 11408: -30,27 - 11409: -29,29 11410: -25,28 11411: -21,30 11412: -18,28 @@ -3685,8 +3647,6 @@ entities: id: DirtHeavy decals: 1668: 6,10 - 1679: -14,11 - 1680: -15,9 1694: -11,26 1695: -4,22 1696: -2,22 @@ -3697,8 +3657,6 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 1706: -15,7 - 1708: -25,11 1711: -26,32 1712: -26,30 1713: -30,32 @@ -3755,9 +3713,6 @@ entities: 1797: -7,-7 1803: -16,4 1804: -14,5 - 1805: -13,11 - 1806: -15,11 - 1819: -26,12 1826: 7,6 2261: -4,-17 2262: 0,-18 @@ -4004,9 +3959,7 @@ entities: 5042: -2,29 5043: -2,30 5044: -5,29 - 5086: -21,17 5122: -14,10 - 5129: -27,12 5138: -32,32 5139: -33,34 5157: -11,24 @@ -4123,28 +4076,6 @@ entities: 7623: 34,5 7624: 35,3 7625: 37,5 - 8238: -16,16 - 8239: -15,14 - 8240: -13,13 - 8241: -13,16 - 8442: -27,15 - 8443: -26,16 - 8444: -24,15 - 8445: -25,17 - 8446: -21,15 - 8447: -19,16 - 8448: -14,18 - 8449: -15,19 - 8450: -15,21 - 8451: -21,22 - 8452: -19,21 - 8453: -20,24 - 8454: -19,25 - 8455: -20,26 - 8466: -17,25 - 8467: -13,26 - 8468: -15,26 - 8469: -16,24 8582: 10,38 8583: 5,37 8810: 19,35 @@ -4424,6 +4355,56 @@ entities: 11991: 32,-27 11997: 22,-28 12000: 43,19 + 12364: -31,21 + 12365: -29,19 + 12366: -26,20 + 12367: -27,17 + 12368: -25,21 + 12369: -27,19 + 12370: -29,21 + 12371: -30,22 + 12397: -22,20 + 12398: -20,19 + 12399: -18,20 + 12400: -18,16 + 12401: -22,21 + 12410: -21,23 + 12411: -22,24 + 12412: -20,25 + 12413: -21,24 + 12414: -18,23 + 12429: -15,26 + 12430: -15,21 + 12431: -13,21 + 12432: -12,22 + 12433: -11,21 + 12452: -25,15 + 12453: -24,12 + 12454: -22,14 + 12455: -23,16 + 12456: -23,11 + 12457: -25,12 + 12458: -26,14 + 12463: -29,11 + 12464: -28,12 + 12491: -18,8 + 12492: -17,6 + 12493: -15,8 + 12494: -13,7 + 12495: -14,10 + 12496: -15,11 + 12497: -18,12 + 12498: -15,13 + 12499: -11,14 + 12506: -16,17 + 12507: -13,16 + 12519: -11,16 + 12520: -9,16 + 12521: -10,18 + 12522: -12,17 + 12527: -23,25 + 12545: -33,25 + 12546: -28,28 - node: cleanable: True angle: 1.5707963267948966 rad @@ -4537,8 +4518,6 @@ entities: 1879: -26,-2 1880: -27,-4 1881: -26,-6 - 1882: -25,12 - 1888: -13,10 1901: -25,32 1903: -34,34 1904: -33,32 @@ -4554,7 +4533,6 @@ entities: 1914: -40,34 1915: -39,29 1916: -18,29 - 1917: -28,28 1918: -21,32 1926: -3,30 1927: -4,29 @@ -4651,7 +4629,6 @@ entities: 2648: 31,9 2649: 31,12 2650: 30,14 - 2769: -24,11 2773: -18,3 2834: 53,-1 2835: 49,-1 @@ -4748,7 +4725,6 @@ entities: 5000: 5,39 5006: 15,39 5037: -4,30 - 5104: -20,18 5135: -28,31 5145: -26,31 5159: -11,24 @@ -4777,11 +4753,6 @@ entities: 6580: 2,-27 7630: 34,4 7631: 36,3 - 8474: -16,23 - 8475: -15,24 - 8476: -15,20 - 8477: -17,15 - 8478: -14,14 8575: 9,34 8576: 12,36 8577: 7,38 @@ -4876,7 +4847,6 @@ entities: 9398: -9,11 9399: -7,12 9400: -5,16 - 9401: -8,17 9402: -7,13 9403: -10,12 9429: -7,31 @@ -4903,8 +4873,6 @@ entities: 9616: 10,1 9617: 13,2 9618: 9,-1 - 9817: -12,17 - 9833: -10,17 9899: 28,-13 9900: 26,-15 9901: 35,-6 @@ -4942,6 +4910,36 @@ entities: 11974: 18,-18 11992: 30,-27 11993: 31,-42 + 12372: -30,21 + 12373: -28,19 + 12374: -26,21 + 12375: -24,19 + 12392: -21,20 + 12393: -18,17 + 12394: -20,21 + 12395: -18,21 + 12396: -19,19 + 12415: -21,25 + 12416: -23,20 + 12417: -16,21 + 12434: -15,25 + 12435: -15,22 + 12436: -12,21 + 12437: -11,20 + 12459: -24,14 + 12460: -22,13 + 12461: -22,16 + 12465: -29,12 + 12466: -28,15 + 12500: -16,11 + 12501: -18,13 + 12502: -15,12 + 12503: -14,9 + 12504: -16,8 + 12505: -13,14 + 12511: -14,17 + 12523: -10,17 + 12524: -21,11 - node: cleanable: True angle: 1.5707963267948966 rad @@ -4980,7 +4978,6 @@ entities: 11402: -24,5 11403: -24,9 11404: -20,6 - 11405: -21,12 11423: -14,32 11424: -23,37 11441: -22,54 @@ -5016,9 +5013,6 @@ entities: id: DirtMedium decals: 1982: -9,29 - 1998: -15,11 - 1999: -14,7 - 2004: -26,12 2006: -14,4 2024: 6,9 2025: 1,10 @@ -5160,11 +5154,6 @@ entities: 5040: -2,27 5045: -5,30 5046: -9,28 - 5075: -22,18 - 5076: -20,17 - 5077: -19,18 - 5125: -14,9 - 5134: -19,17 5141: -32,34 5142: -34,31 5143: -29,32 @@ -5245,7 +5234,6 @@ entities: 6322: -43,-35 6323: -43,-37 6325: -44,-36 - 6351: -15,27 6477: 3,20 6478: 4,19 6485: -23,39 @@ -5263,35 +5251,6 @@ entities: 6573: 0,-21 7621: 40,7 7629: 38,4 - 8221: -16,20 - 8224: -14,21 - 8225: -12,20 - 8226: -11,22 - 8227: -10,16 - 8229: -13,15 - 8230: -14,13 - 8231: -16,14 - 8232: -17,16 - 8233: -18,17 - 8245: -16,15 - 8428: -28,16 - 8429: -26,14 - 8430: -25,16 - 8431: -22,16 - 8432: -20,14 - 8433: -18,16 - 8434: -15,14 - 8435: -14,17 - 8436: -13,17 - 8437: -20,22 - 8438: -21,24 - 8439: -22,20 - 8440: -19,22 - 8441: -19,26 - 8470: -17,24 - 8471: -14,24 - 8472: -13,23 - 8473: -14,26 8571: 5,36 8572: 8,38 8573: 12,35 @@ -5434,7 +5393,6 @@ entities: 9372: -5,14 9373: -4,16 9374: -7,15 - 9375: -8,16 9376: -6,13 9377: -4,13 9378: -8,13 @@ -5501,7 +5459,6 @@ entities: 9999: -8,-30 10198: -37,-16 10199: -34,-14 - 10204: -9,22 11072: -10,-18 11073: -7,-19 11498: 37,-28 @@ -5568,6 +5525,44 @@ entities: 11966: 20,-14 11995: 33,-42 11996: 23,-28 + 12376: -30,20 + 12377: -25,20 + 12378: -26,22 + 12379: -22,19 + 12380: -20,20 + 12381: -21,21 + 12382: -18,22 + 12383: -17,21 + 12384: -18,19 + 12385: -19,17 + 12386: -17,15 + 12387: -19,15 + 12407: -20,24 + 12408: -22,26 + 12409: -18,24 + 12426: -13,20 + 12427: -10,20 + 12428: -14,24 + 12447: -21,12 + 12448: -23,13 + 12449: -25,13 + 12450: -24,11 + 12451: -24,15 + 12470: -30,18 + 12471: -28,17 + 12472: -26,18 + 12473: -29,15 + 12488: -18,7 + 12489: -14,8 + 12490: -17,8 + 12509: -15,16 + 12510: -14,18 + 12517: -11,19 + 12518: -11,17 + 12526: -31,23 + 12542: -31,25 + 12543: -30,26 + 12544: -27,25 - node: cleanable: True angle: 1.5707963267948966 rad @@ -5644,8 +5639,6 @@ entities: 11389: -25,-12 11398: -23,7 11399: -24,3 - 11407: -20,12 - 11417: -28,29 11418: -20,30 11419: -11,31 11420: -12,29 @@ -5701,6 +5694,13 @@ entities: id: LoadingArea decals: 5443: 8,27 + - node: + angle: 1.5707963267948966 rad + color: '#D4D4D496' + id: LoadingArea + decals: + 12066: -11,14 + 12067: -11,13 - node: color: '#D4D4D496' id: LoadingAreaGreyscale @@ -5735,6 +5735,7 @@ entities: decals: 6878: 0,1 6879: 4,1 + 12049: -13,9 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw @@ -5742,52 +5743,47 @@ entities: 6880: -2,1 6881: 2,1 11614: -1,-5 + 12048: -15,9 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: 6884: 4,-1 6885: 0,-1 + 12050: -13,7 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: 6882: -2,-1 6883: 2,-1 + 12051: -15,7 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNe decals: 6822: 6,-3 7817: -3,2 - 8294: -21,24 - 8295: -22,20 - 8360: -28,14 + 12047: -25,11 + 12060: -16,12 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: 7816: 5,2 - 8292: -19,24 - 8293: -19,20 - 8361: -24,14 11618: 1,-5 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: 6821: 6,2 - 8290: -21,26 - 8291: -22,22 - 8358: -28,17 + 12046: -25,15 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSw decals: 7795: 1,-3 - 8288: -19,22 - 8289: -19,26 - 8359: -24,17 + 12045: -22,15 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE @@ -5799,12 +5795,13 @@ entities: 6888: 0,0 6889: 4,0 7807: -3,3 - 8286: -21,25 - 8287: -22,21 - 8351: -28,15 - 8352: -28,16 8759: 21,35 8760: 21,34 + 12038: -25,14 + 12039: -25,13 + 12040: -25,12 + 12052: -13,8 + 12218: -16,13 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN @@ -5818,13 +5815,13 @@ entities: 7813: 2,2 7814: 3,2 7815: 4,2 - 8296: -20,24 - 8297: -21,20 - 8298: -20,20 - 8348: -27,14 - 8349: -26,14 - 8350: -25,14 11613: 0,-5 + 12041: -24,11 + 12042: -23,11 + 12053: -14,9 + 12056: -15,12 + 12057: -14,12 + 12219: -13,12 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS @@ -5835,18 +5832,15 @@ entities: 7566: -2,-3 7567: -1,-3 7568: 0,-3 - 8301: -20,26 - 8302: -21,22 - 8303: -20,22 - 8353: -27,17 - 8354: -26,17 - 8355: -25,17 8724: 18,36 8725: 19,36 8726: 20,36 8727: 21,36 11592: -5,-3 11593: -4,-3 + 12043: -24,15 + 12044: -23,15 + 12054: -14,7 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW @@ -5854,10 +5848,6 @@ entities: 6886: -2,0 6887: 2,0 7808: 5,3 - 8299: -19,21 - 8300: -19,25 - 8356: -24,16 - 8357: -24,15 8742: 23,40 8743: 23,39 8757: 18,35 @@ -5868,6 +5858,10 @@ entities: 11615: -1,-6 11616: -1,-7 11617: -1,-8 + 12035: -22,14 + 12036: -22,13 + 12037: -22,12 + 12055: -15,8 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe @@ -5896,11 +5890,6 @@ entities: 7265: -14,-13 7338: -21,-29 7457: -67,-30 - - node: - color: '#D381C996' - id: MiniTileSteelCornerSe - decals: - 8307: -13,23 - node: color: '#D3D3D3FF' id: MiniTileSteelCornerSe @@ -5921,11 +5910,6 @@ entities: 7277: -12,-18 7337: -15,-31 7349: -20,-40 - - node: - color: '#D381C996' - id: MiniTileSteelCornerSw - decals: - 8306: -17,23 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw @@ -5963,12 +5947,11 @@ entities: 7932: -7,31 7979: -22,-16 7990: -39,-30 - 8331: -15,16 - 8346: -22,14 8511: 5,34 8512: 8,34 8513: 12,34 9978: -9,-30 + 12022: -15,20 - node: color: '#9FED5896' id: MiniTileSteelInnerNw @@ -6002,12 +5985,11 @@ entities: 7950: -10,-13 7978: -23,-16 7991: -40,-30 - 8332: -13,16 - 8345: -18,14 8514: 8,34 8515: 11,34 8516: 15,34 9979: -6,-30 + 12023: -11,20 - node: color: '#8C347F96' id: MiniTileSteelInnerSe @@ -6039,12 +6021,11 @@ entities: 7262: -22,-1 7344: -20,-31 7981: -15,-18 - 8333: -15,20 - 8340: -22,16 8520: 5,38 8521: 8,38 8522: 12,38 9980: -9,-26 + 12328: -15,22 - node: color: '#D381C996' id: MiniTileSteelInnerSw @@ -6068,12 +6049,11 @@ entities: 7945: -13,-1 7980: -17,-18 7989: -32,-32 - 8334: -13,20 - 8336: -18,16 8517: 8,38 8518: 11,38 8519: 15,38 9981: -6,-26 + 12025: -11,22 - node: color: '#52B4E996' id: MiniTileSteelLineE @@ -6099,12 +6079,6 @@ entities: 7710: -31,-36 7941: -8,4 7998: -31,-34 - - node: - color: '#D381C996' - id: MiniTileSteelLineE - decals: - 8308: -13,24 - 8309: -13,25 - node: color: '#D3D3D3FF' id: MiniTileSteelLineE @@ -6265,10 +6239,6 @@ entities: 7985: -20,-36 7987: -31,-32 7988: -31,-34 - 8328: -15,19 - 8329: -15,18 - 8330: -15,17 - 8347: -22,15 8490: 5,37 8491: 5,36 8492: 5,35 @@ -6281,6 +6251,7 @@ entities: 9975: -9,-27 9976: -9,-28 9977: -9,-29 + 12021: -15,21 - node: color: '#52B4E996' id: MiniTileSteelLineN @@ -6406,10 +6377,6 @@ entities: 7970: 18,15 7992: -46,-30 7993: -44,-30 - 8324: -14,16 - 8342: -21,14 - 8343: -20,14 - 8344: -19,14 8505: 6,34 8506: 7,34 8507: 9,34 @@ -6419,6 +6386,9 @@ entities: 9971: -8,-30 9972: -7,-30 10281: -35,-30 + 12017: -14,20 + 12018: -13,20 + 12019: -12,20 - node: color: '#8C347F96' id: MiniTileSteelLineS @@ -6580,10 +6550,6 @@ entities: 7972: 18,13 7994: -46,-32 7995: -44,-32 - 8323: -14,20 - 8337: -19,16 - 8338: -20,16 - 8339: -21,16 8503: 13,38 8504: 14,38 8547: 9,38 @@ -6592,6 +6558,9 @@ entities: 8552: 7,38 9973: -8,-26 9974: -7,-26 + 12016: -12,22 + 12329: -14,22 + 12330: -13,22 - node: color: '#9FED5896' id: MiniTileSteelLineW @@ -6615,8 +6584,6 @@ entities: color: '#D381C996' id: MiniTileSteelLineW decals: - 7768: -8,17 - 7769: -8,16 7770: -8,15 7771: -10,13 7777: -8,21 @@ -6624,8 +6591,8 @@ entities: 7792: -8,23 7937: -8,20 7938: -8,18 - 8304: -17,25 - 8305: -17,24 + 12180: -8,16 + 12181: -8,17 - node: color: '#DE3A3A96' id: MiniTileSteelLineW @@ -6665,8 +6632,6 @@ entities: 7126: -10,12 7127: -10,13 7138: -8,15 - 7139: -8,16 - 7140: -8,17 7154: -8,21 7155: -8,22 7157: -8,24 @@ -6732,10 +6697,6 @@ entities: 7982: -21,-34 7983: -21,-36 7986: -32,-34 - 8326: -13,18 - 8327: -13,19 - 8341: -18,15 - 8406: -13,17 8481: 11,37 8482: 11,36 8483: 11,35 @@ -6748,6 +6709,9 @@ entities: 9968: -6,-28 9969: -6,-27 9970: -6,-29 + 12020: -11,21 + 12178: -8,17 + 12179: -8,16 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe @@ -6954,6 +6918,7 @@ entities: decals: 10623: 48,-23 10624: 51,-26 + 12249: -30,21 - node: color: '#D4D4D496' id: WarnCornerSmallNW @@ -6961,6 +6926,7 @@ entities: 10625: 55,-26 10626: 58,-23 10654: 46,-23 + 12248: -26,21 - node: color: '#D4D4D496' id: WarnCornerSmallSE @@ -7012,15 +6978,6 @@ entities: 8036: -6,19 8037: -7,32 8040: 7,22 - 8118: -16,19 - 8119: -16,18 - 8120: -16,17 - 8121: -18,12 - 8122: -18,11 - 8123: -18,10 - 8182: -23,26 - 8183: -23,25 - 8184: -23,24 8746: 23,38 8747: 23,37 8748: 23,36 @@ -7118,15 +7075,6 @@ entities: 10844: -12,30 10845: -33,29 10846: -33,33 - 10847: -30,26 - 10848: -30,28 - 10861: -24,23 - 10862: -20,27 - 10865: -15,22 - 10874: -26,13 - 10875: -20,13 - 10876: -17,13 - 10877: -14,12 10893: -21,5 10894: -20,2 10901: -16,-4 @@ -7175,6 +7123,16 @@ entities: 11904: 29,-20 11905: 22,-33 11998: 43,19 + 12080: -18,23 + 12083: -31,23 + 12093: -14,26 + 12094: -14,25 + 12095: -14,24 + 12101: -18,14 + 12102: -21,11 + 12103: -14,10 + 12110: -29,14 + 12250: -30,22 - node: color: '#64646493' id: WarnLineGreyscaleE @@ -7390,13 +7348,8 @@ entities: 8026: 17,13 8027: -1,16 8030: -14,-1 - 8046: -9,16 - 8053: -15,26 - 8130: -11,16 - 8131: -10,16 8745: 23,39 8948: -16,-2 - 9814: -12,16 9962: 25,-8 9963: 29,-8 10315: -33,-35 @@ -7493,12 +7446,6 @@ entities: 10837: -10,29 10838: -19,28 10855: -35,31 - 10857: -26,24 - 10858: -23,21 - 10866: -18,21 - 10869: -23,15 - 10870: -16,7 - 10871: -23,11 10883: -9,25 10884: -25,8 10885: -22,8 @@ -7545,6 +7492,17 @@ entities: 11910: 32,-42 11911: 31,-42 11912: 30,-42 + 12068: -20,16 + 12069: -16,16 + 12070: -13,16 + 12076: -23,19 + 12077: -16,21 + 12078: -23,25 + 12096: -15,16 + 12097: -14,16 + 12107: -19,7 + 12108: -27,15 + 12113: -31,12 - node: color: '#D4D4D496' id: WarnLineS @@ -7563,14 +7521,6 @@ entities: 8035: -8,19 8038: -8,32 8039: 6,22 - 8124: -12,14 - 8125: -12,13 - 8158: -21,25 - 8185: -25,24 - 8186: -25,25 - 8187: -25,26 - 8255: -21,26 - 8281: -21,24 8702: 22,46 10184: 9,24 10190: 9,23 @@ -7671,15 +7621,6 @@ entities: 10849: -33,29 10850: -33,33 10851: -29,30 - 10852: -30,28 - 10853: -30,26 - 10860: -24,23 - 10863: -20,27 - 10864: -15,22 - 10878: -26,13 - 10879: -20,13 - 10880: -17,13 - 10881: -14,12 10892: -21,5 10895: -20,2 10900: -16,-4 @@ -7728,6 +7669,27 @@ entities: 11901: 25,-30 11906: 22,-33 11999: 43,19 + 12081: -18,23 + 12082: -31,23 + 12090: -15,24 + 12091: -15,25 + 12092: -15,26 + 12100: -18,14 + 12104: -21,11 + 12105: -14,10 + 12109: -29,14 + 12114: -26,13 + 12115: -26,12 + 12116: -26,11 + 12117: -26,14 + 12118: -26,15 + 12251: -26,22 + 12252: -29,18 + 12253: -29,17 + 12254: -27,18 + 12255: -27,17 + 12256: -25,18 + 12257: -25,17 - node: color: '#D4D4D496' id: WarnLineW @@ -7743,14 +7705,7 @@ entities: 8025: 17,15 8028: -1,17 8029: -14,1 - 8044: -9,17 - 8050: -16,24 - 8051: -15,24 - 8052: -14,24 - 8132: -11,17 - 8133: -10,17 8744: 23,40 - 9813: -12,17 9960: 29,-7 9961: 25,-7 10312: -33,-35 @@ -7851,12 +7806,6 @@ entities: 10841: -19,28 10842: -10,29 10854: -35,31 - 10856: -26,26 - 10859: -23,21 - 10867: -18,21 - 10868: -23,16 - 10872: -23,11 - 10873: -16,7 10882: -9,25 10888: -25,8 10889: -22,8 @@ -7900,6 +7849,19 @@ entities: 11892: 16,-28 11893: 28,-18 11894: 30,-23 + 12071: -20,17 + 12072: -16,17 + 12073: -13,17 + 12074: -16,21 + 12075: -23,20 + 12079: -23,25 + 12098: -15,17 + 12099: -14,17 + 12106: -19,7 + 12111: -27,15 + 12112: -31,12 + 12246: -29,21 + 12247: -27,21 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -7929,11 +7891,11 @@ entities: 9558: 13,-19 9564: 42,-15 9569: 32,26 - 9820: -17,8 9827: 2,35 10167: 38,27 10221: 58,1 10222: 59,0 + 12279: -24,26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -7963,13 +7925,13 @@ entities: 9554: 11,-19 9565: 41,-15 9570: 30,26 - 9821: -18,8 9826: 0,35 10168: 36,27 10214: 45,0 10220: 56,1 11563: -5,-4 11820: -28,1 + 12280: -25,26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -7996,12 +7958,12 @@ entities: 9557: 13,-20 9567: 42,-17 9568: 32,25 - 9823: -17,6 9828: 2,34 10170: 38,24 10217: 47,-2 10223: 59,-2 10309: -28,-43 + 12282: -24,24 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -8026,7 +7988,6 @@ entities: 9555: 11,-20 9566: 41,-17 9571: 30,25 - 9822: -18,6 9829: 0,34 10169: 36,24 10216: 45,-2 @@ -8038,6 +7999,7 @@ entities: 11585: -5,-5 11590: -5,-7 11821: -28,0 + 12281: -25,24 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS @@ -8101,9 +8063,9 @@ entities: 9507: -25,-43 9559: 13,-18 9563: 42,-16 - 9824: -17,7 10172: 38,26 10224: 59,-1 + 12284: -24,25 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -8198,7 +8160,6 @@ entities: 9509: -26,-43 9550: 11,-18 9562: 41,-16 - 9825: -18,7 10171: 36,25 10173: 36,26 10213: 45,-1 @@ -8207,6 +8168,7 @@ entities: 11573: -2,-5 11574: -2,-6 11575: -2,-7 + 12283: -25,25 - node: cleanable: True angle: 0.6806784082777885 rad @@ -8254,9 +8216,6 @@ entities: 6482: 1,19 6559: -36,-22 6560: 0,-23 - 8253: -21,21 - 8456: -21,24 - 8460: -24,26 11975: 22,-32 11976: 21,-30 11981: 23,-31 @@ -8264,6 +8223,10 @@ entities: 12002: 25,-22 12004: 32,-39 12005: 26,-35 + 12350: -29,13 + 12352: -22,12 + 12353: -25,14 + 12354: -25,17 - node: cleanable: True angle: 1.5707963267948966 rad @@ -8279,7 +8242,6 @@ entities: id: burnt2 decals: 3361: -40,-20 - 3384: -15,9 3394: 22,-9 3398: 26,20 3401: 28,21 @@ -8301,12 +8263,11 @@ entities: 4134: -30,31 5690: -5,10 6481: 1,22 - 8251: -21,25 - 8458: -20,26 - 8461: -25,25 11979: 22,-31 11980: 21,-32 12006: 34,-33 + 12351: -30,11 + 12355: -27,18 - node: cleanable: True color: '#FFFFFFFF' @@ -8315,9 +8276,6 @@ entities: 3422: 3,9 3426: 3,10 3429: 2,4 - 3453: -15,23 - 3456: -13,9 - 3459: -25,12 3463: -15,-7 3464: -25,-2 3465: -29,-11 @@ -8351,8 +8309,6 @@ entities: 5665: -4,5 6483: 4,21 6561: 2,-21 - 8457: -19,25 - 8462: -24,25 11978: 23,-30 12003: 26,-29 12007: 32,-32 @@ -8375,7 +8331,6 @@ entities: 3543: 25,4 3550: 4,3 3551: 6,5 - 3557: -13,7 3558: -25,-6 3560: -16,-14 3562: -34,-12 @@ -8403,8 +8358,8 @@ entities: 6558: -34,-27 6562: 2,-25 6692: -21,-8 - 8459: -23,24 11977: 23,-32 + 12349: -28,11 - node: cleanable: True angle: 1.5707963267948966 rad @@ -8605,29 +8560,29 @@ entities: -4,1: 0: 61679 -5,1: - 0: 56591 + 0: 64783 -4,2: - 0: 61166 + 0: 62703 -5,2: - 0: 56589 - -5,3: - 0: 65437 + 0: 52509 -4,3: - 0: 65508 + 0: 3839 + -5,3: + 0: 58606 -4,4: - 0: 65535 + 0: 1791 -3,0: 0: 53247 -3,1: 0: 60639 - -3,3: - 0: 3548 -3,-1: 0: 65484 -3,2: 0: 61166 + -3,3: + 0: 3820 -3,4: - 0: 1791 + 0: 30719 -2,0: 0: 48127 -2,1: @@ -8806,23 +8761,21 @@ entities: 8,-1: 0: 43835 -5,4: - 0: 1919 + 0: 65279 -4,5: - 0: 62207 + 0: 28414 -5,5: - 0: 46075 + 0: 23807 -4,6: - 0: 32767 - -5,6: - 0: 7099 + 0: 28671 -4,7: 0: 18416 -5,7: - 0: 3527 + 0: 3535 -4,8: 0: 7 -3,5: - 0: 3839 + 0: 1911 -3,7: 0: 47611 -3,6: @@ -8867,7 +8820,7 @@ entities: 2,6: 0: 61919 2,7: - 0: 3581 + 0: 3583 2,8: 0: 65527 3,5: @@ -8924,7 +8877,7 @@ entities: 11,0: 0: 61006 12,-4: - 0: 32767 + 0: 8191 12,-3: 0: 15 2: 39408 @@ -8969,8 +8922,7 @@ entities: 3,-8: 0: 20477 4,-7: - 0: 32751 - 3: 32768 + 0: 65519 3,-7: 0: 21791 4,-6: @@ -8980,18 +8932,15 @@ entities: 4,-9: 0: 34609 2: 2050 - 4: 8 + 3: 8 5,-7: - 0: 65279 - 3: 256 + 0: 65535 5,-6: 0: 65535 5,-8: - 4: 3694 - 5: 128 + 3: 3822 6,-7: - 0: 65277 - 3: 258 + 0: 65535 6,-6: 0: 65535 6,-5: @@ -9009,8 +8958,7 @@ entities: 7,-9: 0: 65535 8,-8: - 0: 65533 - 3: 2 + 0: 65535 8,-7: 0: 63231 8,-6: @@ -9031,7 +8979,7 @@ entities: 0: 65520 10,-9: 0: 17984 - 6: 1 + 4: 1 2: 2444 11,-8: 0: 14336 @@ -9044,7 +8992,7 @@ entities: 2: 35225 12,-8: 2: 242 - 0: 32512 + 0: 7936 12,-7: 0: 16383 2: 49152 @@ -9086,7 +9034,7 @@ entities: 2: 29219 13,-8: 2: 240 - 0: 2048 + 0: 30720 13,-7: 0: 32767 2: 32768 @@ -9097,10 +9045,10 @@ entities: 0: 29223 2: 34136 13,-4: - 0: 4095 + 0: 32767 14,-8: 2: 240 - 0: 32512 + 0: 20224 14,-7: 0: 61439 2: 4096 @@ -9111,17 +9059,17 @@ entities: 2: 4897 0: 60622 14,-4: - 0: 32767 + 0: 20479 15,-8: - 2: 32816 + 2: 34864 15,-7: - 0: 30545 + 0: 22353 2: 34952 15,-6: - 0: 4439 + 0: 13141 2: 34952 15,-5: - 0: 30545 + 0: 21843 2: 34952 15,-4: 0: 343 @@ -9273,36 +9221,33 @@ entities: 0: 58982 -6,0: 0: 45294 - -8,3: - 2: 25456 - -9,3: + -8,2: + 2: 4420 + 0: 49152 + -9,2: 2: 34816 + -8,3: + 2: 273 + 0: 35020 + -9,3: + 2: 2184 -8,1: 2: 17988 0: 2048 - -8,2: - 2: 1604 - 0: 2048 - -8,4: - 2: 34614 - -7,3: - 0: 65358 -7,2: - 0: 57352 - -7,4: - 0: 255 - 2: 57344 + 0: 53256 + -7,3: + 0: 64733 -7,1: 0: 8 -6,1: 0: 47295 -6,2: - 0: 63679 + 0: 47295 -6,3: - 0: 64781 + 0: 65535 -6,4: - 0: 3295 - 2: 4096 + 0: 61678 4,8: 0: 56732 5,4: @@ -9391,8 +9336,8 @@ entities: 4,-10: 0: 4881 2: 8226 - 4: 8 - 7: 2048 + 3: 8 + 5: 2048 4,-13: 0: 4369 2: 17508 @@ -9400,12 +9345,12 @@ entities: 2: 687 0: 36096 5,-10: - 4: 3 - 7: 768 + 3: 3 + 5: 768 2: 32904 0: 2048 5,-9: - 4: 3 + 3: 3 0: 3456 2: 520 5,-12: @@ -9416,31 +9361,29 @@ entities: 2: 31 0: 60416 6,-10: - 0: 61038 - 3: 128 + 0: 61166 6,-13: 2: 32768 7,-12: 2: 4356 - 4: 52224 + 3: 52224 7,-11: 2: 1 0: 65280 - 4: 12 + 3: 12 7,-10: 0: 65535 7,-13: 2: 65100 8,-12: - 4: 4352 + 3: 4352 2: 52361 8,-11: - 4: 1 + 3: 1 0: 29440 2: 140 8,-10: - 0: 30327 - 3: 256 + 0: 30583 -4,-12: 0: 56796 -4,-13: @@ -9591,21 +9534,20 @@ entities: -10,8: 0: 52735 -9,5: - 2: 28672 + 2: 7884 + 0: 57344 -9,6: - 0: 53248 - 2: 78 + 0: 53444 -9,7: 0: 56733 -9,8: 0: 56733 -9,4: - 2: 136 + 2: 51200 -8,6: - 2: 239 - 0: 21504 + 0: 21746 -8,7: - 0: 63941 + 0: 63949 8,-13: 2: 62225 9,-12: @@ -9616,18 +9558,18 @@ entities: 9,-10: 2: 4113 0: 256 - 4: 12 - 8: 3072 + 3: 12 + 6: 3072 9,-9: 2: 1025 0: 2832 - 6: 12 + 4: 12 10,-11: 2: 295 0: 17920 10,-10: - 4: 1 - 8: 256 + 3: 1 + 6: 256 2: 18508 0: 1024 10,-12: @@ -9676,29 +9618,33 @@ entities: 2: 4096 9,-14: 2: 112 + -8,4: + 0: 60608 + -8,5: + 0: 44782 -8,8: 0: 23821 2: 32768 - -8,5: - 2: 34952 + -7,4: + 0: 65520 -7,5: - 2: 8240 - 0: 2176 + 0: 16383 -7,6: - 2: 273 - 0: 2730 + 0: 15288 -7,7: 0: 64543 -7,8: 0: 53709 -6,5: - 0: 40444 + 0: 49631 -6,6: - 0: 3003 + 0: 3581 -6,7: 0: 32079 -6,8: 0: 24669 + -5,6: + 0: 1911 -5,8: 0: 15 2: 256 @@ -10247,21 +10193,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14987 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -10277,21 +10208,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 256.84372 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -10349,13 +10265,6 @@ entities: parent: 2 - proto: ActionToggleInternals entities: - - uid: 5302 - components: - - type: Transform - parent: 5301 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5301 - uid: 9012 components: - type: Transform @@ -10651,16 +10560,6 @@ entities: - 14465 - 12539 - 12538 - - uid: 5275 - components: - - type: MetaData - name: air alarm (Artifact Chamber) - - type: Transform - pos: -20.5,27.5 - parent: 2 - - type: DeviceList - devices: - - 11242 - uid: 5566 components: - type: MetaData @@ -10798,115 +10697,159 @@ entities: - 5035 - 10874 - 10875 - - uid: 11119 + - uid: 11197 + components: + - type: MetaData + name: air alarm (Anomaly Lab) + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 16467 + - 16470 + - 14237 + - 11190 + - 5155 + - uid: 11199 + components: + - type: MetaData + name: air alarm (Xenoarchaeology) + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 7233 + - 11164 + - 12751 + - 6856 + - 16465 + - uid: 11203 + components: + - type: MetaData + name: air alarm (Research and Development) + - type: Transform + pos: -15.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 13082 + - 14784 + - 6886 + - uid: 11204 components: - type: MetaData name: air alarm (Science Entrance) - type: Transform rot: 3.141592653589793 rad - pos: -9.5,15.5 + pos: -14.5,15.5 parent: 2 - type: DeviceList devices: - - 8745 - - 11228 - - 11118 - - 10881 - - 10880 - - uid: 11250 - components: - - type: MetaData - name: air alarm (Server Room) - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,11.5 - parent: 2 - - type: DeviceList - devices: - - 11197 - - 11249 - - 5497 - - uid: 11251 - components: - - type: MetaData - name: air alarm (RD's Office) - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 - parent: 2 - - type: DeviceList - devices: - - 16171 - - 16167 - - 16168 - - uid: 11252 + - 6869 + - 7789 + - 11205 + - 16469 + - 16468 + - uid: 11206 components: - type: MetaData name: air alarm (RD's Bedroom) - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,7.5 + pos: -25.5,24.5 parent: 2 - type: DeviceList devices: - - 11160 - - 11158 - - 11161 - - uid: 11253 + - 6737 + - 5295 + - 11198 + - uid: 11207 + components: + - type: MetaData + name: air alarm (Science Front) + - type: Transform + pos: -12.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 14720 + - 12919 + - 3560 + - 11224 + - 16478 + - 16479 + - uid: 11208 + components: + - type: MetaData + name: air alarm (RD's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 11254 + - 13087 + - 12921 + - uid: 11209 + components: + - type: MetaData + name: air alarm (Artifact Chamber) + - type: Transform + pos: -25.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 16480 + - uid: 11210 components: - type: MetaData name: air alarm (Robotics Surgery) - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,10.5 + rot: -1.5707963267948966 rad + pos: -11.5,8.5 parent: 2 - type: DeviceList devices: - - 11235 - - 11222 - - 14467 - - uid: 11254 + - 11185 + - 11202 + - 11150 + - uid: 11211 + components: + - type: MetaData + name: air alarm (Science) + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 16467 + - 16470 + - 12913 + - 12918 + - 12912 + - 6856 + - 16465 + - 16471 + - uid: 11212 components: - type: MetaData name: air alarm (Robotics) - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 2 - - type: DeviceList - devices: - - 11216 - - 11221 - - 11227 - - 10886 - - 10885 - - uid: 11255 - components: - - type: MetaData - name: air alarm (Xenoarchaeology) - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 11135 - - 11145 - - 10884 - - 5299 - - uid: 11256 - components: - - type: MetaData - name: air alarm (Anomaly Generator) - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,24.5 + pos: -18.5,11.5 parent: 2 - type: DeviceList devices: - - 11154 - - 11156 - - 11134 + - 16471 + - 11163 + - 13967 + - 12920 - uid: 11289 components: - type: MetaData @@ -11245,25 +11188,6 @@ entities: - 10864 - 10870 - 10866 - - uid: 12612 - components: - - type: MetaData - name: air alarm (Science) - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,18.5 - parent: 2 - - type: DeviceList - devices: - - 11121 - - 11155 - - 11122 - - 10882 - - 10884 - - 10885 - - 10886 - - 11195 - - 5310 - uid: 12674 components: - type: MetaData @@ -11885,6 +11809,7 @@ entities: - 13853 - 12534 - 14461 + - 11143 - uid: 13862 components: - type: MetaData @@ -11904,6 +11829,7 @@ entities: - 10893 - 10891 - 10890 + - 11143 - uid: 13863 components: - type: MetaData @@ -11965,14 +11891,17 @@ entities: - 10837 - 10838 - 4114 - - 10880 - - 10881 + - 16469 + - 16468 - 2627 - 11762 - 11773 - 10806 - 10805 - 10803 + - 11224 + - 16478 + - 16479 - uid: 13871 components: - type: MetaData @@ -12095,7 +12024,6 @@ entities: - 12405 - 12407 - 12406 - - 10882 - 4114 - 10838 - 10837 @@ -12762,14 +12690,6 @@ entities: - type: Transform pos: -29.5,-26.5 parent: 2 - - uid: 3628 - components: - - type: MetaData - name: airlock (Shuttle Workshop) - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-39.5 - parent: 2 - uid: 4129 components: - type: MetaData @@ -12879,6 +12799,28 @@ entities: parent: 2 - proto: AirlockExternalGlass entities: + - uid: 5137 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5306: + - DoorStatus: DoorBolt + - uid: 5306 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5137: + - DoorStatus: DoorBolt - uid: 7076 components: - type: Transform @@ -13077,28 +13019,6 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - - uid: 3562 - components: - - type: Transform - pos: -29.5,26.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 3567: - - DoorStatus: DoorBolt - - uid: 3567 - components: - - type: Transform - pos: -29.5,28.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 3562: - - DoorStatus: DoorBolt - uid: 8145 components: - type: Transform @@ -13123,6 +13043,28 @@ entities: linkedPorts: 8145: - DoorStatus: DoorBolt + - uid: 11139 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11145: + - DoorStatus: DoorBolt + - uid: 11145 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11139: + - DoorStatus: DoorBolt - uid: 14221 components: - type: Transform @@ -13296,6 +13238,15 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-8.5 parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 3628 + components: + - type: MetaData + name: airlock (Shuttle Workshop) + - type: Transform + pos: -37.5,-39.5 + parent: 2 - proto: AirlockFreezerHydroponicsLocked entities: - uid: 247 @@ -13975,7 +13926,7 @@ entities: pos: 47.5,5.5 parent: 2 - type: Door - secondsUntilStateChange: -311998.12 + secondsUntilStateChange: -337075.5 state: Opening - type: DeviceLinkSource lastSignals: @@ -14081,27 +14032,26 @@ entities: parent: 2 - proto: AirlockMaintRnDLocked entities: - - uid: 375 - components: - - type: MetaData - name: maintenance access (Robotics) - - type: Transform - pos: -22.5,11.5 - parent: 2 - - uid: 5100 + - uid: 11200 components: - type: MetaData name: maintenance access (Science) - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,13.5 + pos: -30.5,23.5 parent: 2 - - uid: 5274 + - uid: 11229 components: - type: MetaData - name: maintenance access (Xenoarchaeology) + name: maintenance access (Science) - type: Transform - pos: -19.5,27.5 + pos: -20.5,11.5 + parent: 2 + - uid: 14515 + components: + - type: MetaData + name: maintenance access (Robotics) + - type: Transform + pos: -18.5,7.5 parent: 2 - proto: AirlockMaintSalvageLocked entities: @@ -14293,30 +14243,21 @@ entities: - type: Transform pos: 1.5,36.5 parent: 2 -- proto: AirlockResearchDirectorGlassLocked - entities: - - uid: 5092 - components: - - type: MetaData - name: glass airlock (Server Room) - - type: Transform - pos: -16.5,13.5 - parent: 2 - proto: AirlockResearchDirectorLocked entities: - - uid: 2682 + - uid: 5131 components: - type: MetaData name: airlock (RD's Office) - type: Transform - pos: -13.5,12.5 + pos: -17.5,23.5 parent: 2 - - uid: 5071 + - uid: 5300 components: - type: MetaData name: airlock (RD's Bedroom) - type: Transform - pos: -15.5,7.5 + pos: -22.5,25.5 parent: 2 - proto: AirlockSalvageGlassLocked entities: @@ -14329,102 +14270,85 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 5142 - components: - - type: MetaData - name: glass airlock (Robotics) - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,16.5 - parent: 2 - - uid: 5143 - components: - - type: MetaData - name: glass airlock (Robotics) - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,15.5 - parent: 2 - - uid: 5192 - components: - - type: MetaData - name: glass airlock (Anomaly Generator) - - type: Transform - pos: -14.5,22.5 - parent: 2 - - uid: 5193 + - uid: 4466 components: - type: MetaData name: glass airlock (Xenoarchaeology) - type: Transform - pos: -17.5,21.5 + pos: -19.5,17.5 + parent: 2 + - uid: 6957 + components: + - type: MetaData + name: glass airlock (R&D) + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 11156 + components: + - type: MetaData + name: glass airlock (Robotics) + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 11233 + components: + - type: MetaData + name: glass airlock (Anomaly Generator) + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 11235 + components: + - type: MetaData + name: glass airlock (Xenoarchaeology) + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 16075 + components: + - type: MetaData + name: glass airlock (Anomaly Generator) + - type: Transform + pos: -22.5,19.5 parent: 2 - proto: AirlockScienceLocked entities: - - uid: 5141 + - uid: 3621 components: - type: MetaData name: airlock (Robotics) - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,13.5 + pos: -13.5,10.5 parent: 2 - - uid: 5200 + - uid: 5141 components: - type: MetaData name: airlock (Science) - type: Transform - pos: -11.5,17.5 + pos: -12.5,16.5 parent: 2 - - uid: 5202 + - uid: 5144 components: - type: MetaData name: airlock (Science) - type: Transform - pos: -8.5,17.5 + pos: -15.5,17.5 parent: 2 - - uid: 5203 + - uid: 11249 components: - type: MetaData name: airlock (Science) - type: Transform - pos: -11.5,16.5 + pos: -12.5,17.5 parent: 2 - - uid: 5245 + - uid: 16017 components: - type: MetaData name: airlock (Science) - type: Transform - pos: -8.5,16.5 + pos: -15.5,16.5 parent: 2 - - uid: 5295 - components: - - type: MetaData - name: airlock (Artifact Chamber) - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,21.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5296: - - DoorStatus: DoorBolt - - uid: 5296 - components: - - type: MetaData - name: airlock (Artifact Chamber) - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,23.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5295: - - DoorStatus: DoorBolt - proto: AirlockSecurityGlassLocked entities: - uid: 340 @@ -14716,14 +14640,6 @@ entities: - type: DeviceNetwork deviceLists: - 11289 - - uid: 5299 - components: - - type: Transform - pos: -19.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11255 - uid: 5762 components: - type: Transform @@ -14964,70 +14880,46 @@ entities: - type: DeviceNetwork deviceLists: - 11081 - - uid: 11118 + - uid: 11164 components: - type: Transform - pos: -10.5,16.5 + pos: -22.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11119 - - uid: 11155 + - 11199 + - uid: 11190 components: - type: Transform - pos: -13.5,18.5 + pos: -27.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12612 - - uid: 11156 + - 11197 + - uid: 11198 components: - type: Transform - pos: -14.5,24.5 + pos: -24.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11256 - - uid: 11161 + - 11206 + - uid: 11202 components: - type: Transform - pos: -16.5,6.5 + pos: -13.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11252 - - uid: 11221 + - 11210 + - uid: 11205 components: - type: Transform - pos: -25.5,15.5 + pos: -14.5,17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11254 - - uid: 11235 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11253 - - uid: 11242 - components: - - type: Transform - pos: -22.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5275 - - uid: 11249 - components: - - type: Transform - pos: -16.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11250 + - 11204 - uid: 11261 components: - type: Transform @@ -15466,6 +15358,47 @@ entities: - type: DeviceNetwork deviceLists: - 13799 + - uid: 12918 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11211 + - 16473 + - uid: 12919 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11207 + - uid: 12920 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11212 + - uid: 13082 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11203 + - uid: 13087 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11208 - uid: 13801 components: - type: Transform @@ -15610,14 +15543,14 @@ entities: - type: DeviceNetwork deviceLists: - 15940 - - uid: 16171 + - uid: 16480 components: - type: Transform - pos: -13.5,11.5 + pos: -27.5,12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11251 + - 11209 - proto: AltarSpawner entities: - uid: 3247 @@ -15655,6 +15588,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: AnomalyScanner + entities: + - uid: 11173 + components: + - type: Transform + pos: -24.471447,22.47584 + parent: 2 - proto: APCBasic entities: - uid: 45 @@ -15734,22 +15674,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-2.5 parent: 2 - - uid: 1539 - components: - - type: MetaData - name: APC (Server Room) - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 2 - - uid: 1540 - components: - - type: MetaData - name: APC (RD's Office) - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,6.5 - parent: 2 - uid: 1562 components: - type: MetaData @@ -15772,22 +15696,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-13.5 parent: 2 - - uid: 2620 - components: - - type: MetaData - name: APC (Science) - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,19.5 - parent: 2 - - uid: 2673 - components: - - type: MetaData - name: APC (Anomaly Generator) - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 2 - uid: 2795 components: - type: MetaData @@ -15834,6 +15742,14 @@ entities: - type: Transform pos: -24.5,-40.5 parent: 2 + - uid: 3587 + components: + - type: MetaData + name: APC (Robotics Surgery) + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,6.5 + parent: 2 - uid: 4449 components: - type: MetaData @@ -15894,6 +15810,21 @@ entities: - type: Transform pos: -29.5,-4.5 parent: 2 + - uid: 5097 + components: + - type: MetaData + name: APC (Anomaly Lab) + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,18.5 + parent: 2 + - uid: 5175 + components: + - type: MetaData + name: APC (Xenoarchaeology) + - type: Transform + pos: -24.5,16.5 + parent: 2 - uid: 5210 components: - type: MetaData @@ -15909,6 +15840,14 @@ entities: - type: Transform pos: 7.5,-27.5 parent: 2 + - uid: 5241 + components: + - type: MetaData + name: APC (Robotics) + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,10.5 + parent: 2 - uid: 5641 components: - type: MetaData @@ -16028,21 +15967,28 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-11.5 parent: 2 - - uid: 6845 + - uid: 6860 components: - type: MetaData - name: APC (Xenoarchaeology) + name: APC (Science Front) + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 6933 + components: + - type: MetaData + name: APC (RD's Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,25.5 + parent: 2 + - uid: 6978 + components: + - type: MetaData + name: APC (Science) - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,23.5 - parent: 2 - - uid: 6846 - components: - - type: MetaData - name: APC (Robotics) - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,13.5 + pos: -15.5,19.5 parent: 2 - uid: 6981 components: @@ -16507,16 +16453,16 @@ entities: - type: Transform pos: 3.2469797,-0.43364978 parent: 2 + - uid: 5251 + components: + - type: Transform + pos: -9.577147,20.648823 + parent: 2 - uid: 14103 components: - type: Transform pos: -0.2769065,0.64441967 parent: 2 - - uid: 14395 - components: - - type: Transform - pos: 10.351225,28.436876 - parent: 2 - uid: 14408 components: - type: Transform @@ -16527,11 +16473,6 @@ entities: - type: Transform pos: 33.491795,61.631714 parent: 2 - - uid: 16380 - components: - - type: Transform - pos: -17.637697,18.660835 - parent: 2 - proto: AsimovCircuitBoard entities: - uid: 5485 @@ -16933,10 +16874,10 @@ entities: - type: Transform pos: 16.5,34.5 parent: 2 - - uid: 16378 + - uid: 15561 components: - type: Transform - pos: -15.5,17.5 + pos: -12.5,26.5 parent: 2 - proto: BananaPhoneInstrument entities: @@ -16961,11 +16902,6 @@ entities: parent: 2 - proto: Barricade entities: - - uid: 2119 - components: - - type: Transform - pos: -20.5,-45.5 - parent: 2 - uid: 6733 components: - type: Transform @@ -17207,6 +17143,18 @@ entities: - type: Transform pos: -21.5,36.5 parent: 2 + - uid: 16568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 2 + - uid: 16569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,10.5 + parent: 2 - proto: BarSign entities: - uid: 17 @@ -17258,11 +17206,6 @@ entities: - type: Transform pos: 11.493992,-2.181004 parent: 2 - - uid: 6739 - components: - - type: Transform - pos: -21.328773,20.514584 - parent: 2 - uid: 8821 components: - type: Transform @@ -17330,10 +17273,10 @@ entities: - type: Transform pos: -31.5,-43.5 parent: 2 - - uid: 5078 + - uid: 5299 components: - type: Transform - pos: -17.5,8.5 + pos: -23.5,26.5 parent: 2 - uid: 6018 components: @@ -17451,10 +17394,10 @@ entities: parent: 2 - proto: BedsheetRD entities: - - uid: 5079 + - uid: 4725 components: - type: Transform - pos: -17.5,8.5 + pos: -23.5,26.5 parent: 2 - proto: BedsheetSpawner entities: @@ -17514,21 +17457,6 @@ entities: - type: Transform pos: 14.5,26.5 parent: 2 - - uid: 5269 - components: - - type: Transform - pos: -25.5,24.5 - parent: 2 - - uid: 5270 - components: - - type: Transform - pos: -25.5,25.5 - parent: 2 - - uid: 5271 - components: - - type: Transform - pos: -25.5,26.5 - parent: 2 - uid: 8133 components: - type: Transform @@ -17539,6 +17467,11 @@ entities: - type: Transform pos: 22.5,-32.5 parent: 2 + - uid: 14013 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 - proto: BlockGameArcade entities: - uid: 13997 @@ -17727,16 +17660,6 @@ entities: parent: 2 - proto: BorgCharger entities: - - uid: 5132 - components: - - type: Transform - pos: -24.5,17.5 - parent: 2 - - uid: 5134 - components: - - type: Transform - pos: -23.5,17.5 - parent: 2 - uid: 5349 components: - type: Transform @@ -17747,6 +17670,11 @@ entities: - type: Transform pos: -35.5,32.5 parent: 2 + - uid: 13527 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 - proto: BorgChargerCircuitboard entities: - uid: 16400 @@ -17754,6 +17682,13 @@ entities: - type: Transform pos: 32.361473,-17.230019 parent: 2 +- proto: BoxBeaker + entities: + - uid: 16380 + components: + - type: Transform + pos: -25.422743,11.573081 + parent: 2 - proto: BoxBodyBag entities: - uid: 4064 @@ -17787,15 +17722,15 @@ entities: - type: Transform pos: -12.630611,-20.29776 parent: 2 - - uid: 16017 + - uid: 5301 components: - type: Transform - pos: -12.707649,7.5388336 + pos: -25.488398,12.625799 parent: 2 - - uid: 16018 + - uid: 12447 components: - type: Transform - pos: -9.505383,21.489458 + pos: -20.36651,23.579952 parent: 2 - proto: BoxFolderBlue entities: @@ -17923,6 +17858,11 @@ entities: - type: Transform pos: 20.522598,24.78306 parent: 2 + - uid: 6875 + components: + - type: Transform + pos: -15.475977,8.623586 + parent: 2 - proto: BoxLightMixed entities: - uid: 809 @@ -17965,6 +17905,11 @@ entities: - type: Transform pos: -2.3292756,8.553662 parent: 2 + - uid: 11253 + components: + - type: Transform + pos: -15.866602,8.826711 + parent: 2 - proto: BoxZiptie entities: - uid: 2056 @@ -18076,12 +18021,6 @@ entities: - type: Transform pos: 21.5,-32.5 parent: 2 - - uid: 4209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,10.5 - parent: 2 - uid: 4323 components: - type: Transform @@ -18104,11 +18043,11 @@ entities: rot: 3.141592653589793 rad pos: 22.5,16.5 parent: 2 - - uid: 5246 + - uid: 4723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,23.5 + rot: 3.141592653589793 rad + pos: -18.5,23.5 parent: 2 - uid: 6555 components: @@ -18121,6 +18060,17 @@ entities: rot: 3.141592653589793 rad pos: 15.5,26.5 parent: 2 + - uid: 6880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.281326,19.501726 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 - uid: 7995 components: - type: Transform @@ -18144,6 +18094,12 @@ entities: - type: Transform pos: -38.5,-4.5 parent: 2 + - uid: 11223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.687576,19.501726 + parent: 2 - uid: 13477 components: - type: Transform @@ -18166,18 +18122,6 @@ entities: - type: Transform pos: 22.663332,-10.207807 parent: 2 - - uid: 14438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.293873,19.456495 - parent: 2 - - uid: 14439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.715748,19.456495 - parent: 2 - uid: 14444 components: - type: Transform @@ -18244,6 +18188,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-20.5 parent: 2 + - uid: 16381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,14.5 + parent: 2 - proto: ButtonFrameExit entities: - uid: 8077 @@ -18383,10 +18333,11 @@ entities: rot: 3.141592653589793 rad pos: 12.5,32.5 parent: 2 - - uid: 15897 + - uid: 16580 components: - type: Transform - pos: -11.5,22.5 + rot: -1.5707963267948966 rad + pos: -15.5,15.5 parent: 2 - proto: CableApcExtension entities: @@ -18400,11 +18351,6 @@ entities: - type: Transform pos: 15.5,-3.5 parent: 2 - - uid: 142 - components: - - type: Transform - pos: -13.5,24.5 - parent: 2 - uid: 160 components: - type: Transform @@ -19095,6 +19041,11 @@ entities: - type: Transform pos: -3.5,-41.5 parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 - uid: 1380 components: - type: Transform @@ -19120,6 +19071,11 @@ entities: - type: Transform pos: -3.5,-38.5 parent: 2 + - uid: 1539 + components: + - type: Transform + pos: -23.5,25.5 + parent: 2 - uid: 1588 components: - type: Transform @@ -19965,6 +19921,16 @@ entities: - type: Transform pos: 40.5,12.5 parent: 2 + - uid: 3510 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: -21.5,25.5 + parent: 2 - uid: 3559 components: - type: Transform @@ -19975,6 +19941,16 @@ entities: - type: Transform pos: -18.5,-46.5 parent: 2 + - uid: 3611 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 - uid: 3624 components: - type: Transform @@ -20040,6 +20016,11 @@ entities: - type: Transform pos: -20.5,-46.5 parent: 2 + - uid: 4350 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 - uid: 4358 components: - type: Transform @@ -20050,6 +20031,11 @@ entities: - type: Transform pos: -27.5,-3.5 parent: 2 + - uid: 4401 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 - uid: 4415 components: - type: Transform @@ -20070,6 +20056,16 @@ entities: - type: Transform pos: 14.5,-1.5 parent: 2 + - uid: 4501 + components: + - type: Transform + pos: -28.5,21.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 - uid: 4781 components: - type: Transform @@ -20710,6 +20706,101 @@ entities: - type: Transform pos: -20.5,8.5 parent: 2 + - uid: 5074 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: -22.5,25.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: -27.5,28.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 - uid: 5176 components: - type: Transform @@ -20725,6 +20816,11 @@ entities: - type: Transform pos: -32.5,-17.5 parent: 2 + - uid: 5213 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 - uid: 5224 components: - type: Transform @@ -20775,11 +20871,26 @@ entities: - type: Transform pos: 3.5,-30.5 parent: 2 + - uid: 5279 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 - uid: 5285 components: - type: Transform pos: -20.5,-33.5 parent: 2 + - uid: 5305 + components: + - type: Transform + pos: -28.5,28.5 + parent: 2 - uid: 5319 components: - type: Transform @@ -20865,6 +20976,11 @@ entities: - type: Transform pos: 7.5,-28.5 parent: 2 + - uid: 5495 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 - uid: 5508 components: - type: Transform @@ -21940,6 +22056,26 @@ entities: - type: Transform pos: -21.5,33.5 parent: 2 + - uid: 6728 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 - uid: 6826 components: - type: Transform @@ -21965,340 +22101,145 @@ entities: - type: Transform pos: -20.5,9.5 parent: 2 - - uid: 6843 - components: - - type: Transform - pos: -20.5,11.5 - parent: 2 - uid: 6844 components: - type: Transform - pos: -21.5,11.5 + pos: -9.5,16.5 parent: 2 - - uid: 6916 + - uid: 6848 components: - type: Transform - pos: -23.5,13.5 + pos: -14.5,6.5 parent: 2 - - uid: 6917 + - uid: 6852 components: - type: Transform - pos: -23.5,14.5 + pos: -17.5,18.5 parent: 2 - - uid: 6918 + - uid: 6863 components: - type: Transform - pos: -23.5,15.5 + pos: -30.5,21.5 parent: 2 - - uid: 6919 + - uid: 6871 components: - type: Transform - pos: -24.5,15.5 + pos: -18.5,25.5 parent: 2 - - uid: 6920 + - uid: 6872 components: - type: Transform - pos: -25.5,15.5 + pos: -15.5,12.5 parent: 2 - - uid: 6921 + - uid: 6878 components: - type: Transform - pos: -26.5,15.5 + pos: -10.5,20.5 parent: 2 - - uid: 6922 + - uid: 6881 components: - type: Transform - pos: -25.5,14.5 + pos: -24.5,13.5 parent: 2 - - uid: 6923 - components: - - type: Transform - pos: -25.5,13.5 - parent: 2 - - uid: 6924 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - - uid: 6925 - components: - - type: Transform - pos: -24.5,12.5 - parent: 2 - - uid: 6926 - components: - - type: Transform - pos: -20.5,17.5 - parent: 2 - - uid: 6927 - components: - - type: Transform - pos: -20.5,16.5 - parent: 2 - - uid: 6928 - components: - - type: Transform - pos: -20.5,15.5 - parent: 2 - - uid: 6929 - components: - - type: Transform - pos: -19.5,15.5 - parent: 2 - - uid: 6930 - components: - - type: Transform - pos: -18.5,15.5 - parent: 2 - - uid: 6931 - components: - - type: Transform - pos: -17.5,15.5 - parent: 2 - - uid: 6932 - components: - - type: Transform - pos: -16.5,15.5 - parent: 2 - - uid: 6933 - components: - - type: Transform - pos: -15.5,15.5 - parent: 2 - - uid: 6934 - components: - - type: Transform - pos: -14.5,15.5 - parent: 2 - - uid: 6935 - components: - - type: Transform - pos: -13.5,15.5 - parent: 2 - - uid: 6936 - components: - - type: Transform - pos: -13.5,16.5 - parent: 2 - - uid: 6937 - components: - - type: Transform - pos: -13.5,17.5 - parent: 2 - - uid: 6938 - components: - - type: Transform - pos: -13.5,18.5 - parent: 2 - - uid: 6939 - components: - - type: Transform - pos: -13.5,19.5 - parent: 2 - - uid: 6940 - components: - - type: Transform - pos: -13.5,20.5 - parent: 2 - - uid: 6941 - components: - - type: Transform - pos: -14.5,20.5 - parent: 2 - - uid: 6942 - components: - - type: Transform - pos: -12.5,19.5 - parent: 2 - - uid: 6943 - components: - - type: Transform - pos: -11.5,19.5 - parent: 2 - - uid: 6944 - components: - - type: Transform - pos: -15.5,20.5 - parent: 2 - - uid: 6945 - components: - - type: Transform - pos: -15.5,17.5 - parent: 2 - - uid: 6946 - components: - - type: Transform - pos: -14.5,17.5 - parent: 2 - - uid: 6947 - components: - - type: Transform - pos: -12.5,17.5 - parent: 2 - - uid: 6948 - components: - - type: Transform - pos: -11.5,17.5 - parent: 2 - - uid: 6949 - components: - - type: Transform - pos: -10.5,17.5 - parent: 2 - - uid: 6950 - components: - - type: Transform - pos: -9.5,17.5 - parent: 2 - - uid: 6951 - components: - - type: Transform - pos: -13.5,14.5 - parent: 2 - - uid: 6952 - components: - - type: Transform - pos: -16.5,9.5 - parent: 2 - - uid: 6953 - components: - - type: Transform - pos: -16.5,10.5 - parent: 2 - - uid: 6954 - components: - - type: Transform - pos: -16.5,11.5 - parent: 2 - - uid: 6955 + - uid: 6884 components: - type: Transform pos: -16.5,12.5 parent: 2 - - uid: 6956 + - uid: 6910 components: - type: Transform - pos: -15.5,7.5 + pos: -27.5,20.5 parent: 2 - - uid: 6957 + - uid: 6918 components: - type: Transform - pos: -14.5,7.5 + pos: -18.5,20.5 parent: 2 - - uid: 6958 + - uid: 6919 components: - type: Transform - pos: -13.5,7.5 + pos: -17.5,12.5 parent: 2 - - uid: 6959 + - uid: 6932 components: - type: Transform - pos: -16.5,7.5 + pos: -10.5,17.5 parent: 2 - - uid: 6960 + - uid: 6934 components: - type: Transform - pos: -13.5,8.5 + pos: -29.5,20.5 parent: 2 - - uid: 6961 + - uid: 6939 components: - type: Transform - pos: -13.5,9.5 - parent: 2 - - uid: 6962 - components: - - type: Transform - pos: -13.5,10.5 + pos: -15.5,11.5 parent: 2 - uid: 6963 components: - type: Transform - pos: -13.5,11.5 + pos: -19.5,25.5 parent: 2 - uid: 6964 components: - type: Transform - pos: -13.5,6.5 + pos: -29.5,18.5 parent: 2 - uid: 6965 components: - type: Transform - pos: -17.5,23.5 + pos: -25.5,25.5 parent: 2 - uid: 6966 components: - type: Transform - pos: -18.5,23.5 + pos: -15.5,10.5 parent: 2 - uid: 6967 components: - type: Transform - pos: -19.5,23.5 + pos: -14.5,12.5 parent: 2 - uid: 6968 components: - type: Transform - pos: -19.5,24.5 + pos: -13.5,9.5 parent: 2 - uid: 6969 components: - type: Transform - pos: -19.5,25.5 + pos: -26.5,15.5 parent: 2 - uid: 6970 components: - type: Transform - pos: -19.5,26.5 + pos: -16.5,19.5 parent: 2 - uid: 6971 components: - type: Transform - pos: -19.5,22.5 + pos: -17.5,16.5 parent: 2 - uid: 6972 components: - type: Transform - pos: -19.5,21.5 + pos: -25.5,19.5 parent: 2 - uid: 6973 components: - type: Transform - pos: -20.5,21.5 + pos: -22.5,12.5 parent: 2 - uid: 6974 components: - type: Transform - pos: -21.5,21.5 - parent: 2 - - uid: 6975 - components: - - type: Transform - pos: -22.5,21.5 - parent: 2 - - uid: 6976 - components: - - type: Transform - pos: -23.5,21.5 - parent: 2 - - uid: 6977 - components: - - type: Transform - pos: -23.5,22.5 - parent: 2 - - uid: 6978 - components: - - type: Transform - pos: -23.5,23.5 - parent: 2 - - uid: 6979 - components: - - type: Transform - pos: -23.5,24.5 + pos: -21.5,15.5 parent: 2 - uid: 6980 components: - type: Transform - pos: -23.5,25.5 + pos: -13.5,21.5 parent: 2 - uid: 7002 components: @@ -22410,36 +22351,6 @@ entities: - type: Transform pos: -26.5,28.5 parent: 2 - - uid: 7024 - components: - - type: Transform - pos: -27.5,28.5 - parent: 2 - - uid: 7025 - components: - - type: Transform - pos: -27.5,29.5 - parent: 2 - - uid: 7026 - components: - - type: Transform - pos: -28.5,29.5 - parent: 2 - - uid: 7027 - components: - - type: Transform - pos: -29.5,29.5 - parent: 2 - - uid: 7028 - components: - - type: Transform - pos: -29.5,28.5 - parent: 2 - - uid: 7029 - components: - - type: Transform - pos: -29.5,27.5 - parent: 2 - uid: 7030 components: - type: Transform @@ -23515,6 +23426,21 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 2 + - uid: 8467 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 - uid: 8497 components: - type: Transform @@ -24770,25 +24696,10 @@ entities: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 9494 - components: - - type: Transform - pos: -12.5,24.5 - parent: 2 - - uid: 9497 - components: - - type: Transform - pos: -11.5,24.5 - parent: 2 - uid: 9570 components: - type: Transform - pos: -14.5,24.5 - parent: 2 - - uid: 9571 - components: - - type: Transform - pos: -14.5,25.5 + pos: -11.5,23.5 parent: 2 - uid: 9572 components: @@ -26830,6 +26741,11 @@ entities: - type: Transform pos: 22.5,-30.5 parent: 2 + - uid: 10882 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 - uid: 10909 components: - type: Transform @@ -26865,6 +26781,71 @@ entities: - type: Transform pos: -44.5,-12.5 parent: 2 + - uid: 11117 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 11121 + components: + - type: Transform + pos: -23.5,19.5 + parent: 2 + - uid: 11122 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 + - uid: 11158 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 11227 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 11228 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 11241 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 - uid: 11340 components: - type: Transform @@ -26875,6 +26856,11 @@ entities: - type: Transform pos: -14.5,-34.5 parent: 2 + - uid: 11850 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 - uid: 11929 components: - type: Transform @@ -26995,6 +26981,11 @@ entities: - type: Transform pos: 32.5,-15.5 parent: 2 + - uid: 12257 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 - uid: 12552 components: - type: Transform @@ -27390,6 +27381,11 @@ entities: - type: Transform pos: 15.5,-16.5 parent: 2 + - uid: 12746 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 - uid: 12859 components: - type: Transform @@ -27405,6 +27401,16 @@ entities: - type: Transform pos: 23.5,36.5 parent: 2 + - uid: 13197 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 - uid: 13298 components: - type: Transform @@ -27555,6 +27561,11 @@ entities: - type: Transform pos: -29.5,31.5 parent: 2 + - uid: 14014 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 - uid: 14193 components: - type: Transform @@ -27570,11 +27581,36 @@ entities: - type: Transform pos: 21.5,-37.5 parent: 2 + - uid: 14238 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 - uid: 14272 components: - type: Transform pos: -68.5,-30.5 parent: 2 + - uid: 14286 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 14289 + components: + - type: Transform + pos: -29.5,28.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 14298 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 - uid: 14309 components: - type: Transform @@ -27585,6 +27621,11 @@ entities: - type: Transform pos: 23.5,38.5 parent: 2 + - uid: 14339 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 - uid: 14406 components: - type: Transform @@ -27665,6 +27706,26 @@ entities: - type: Transform pos: -3.5,-6.5 parent: 2 + - uid: 14596 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 14597 + components: + - type: Transform + pos: -24.5,25.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + pos: -24.5,21.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 - uid: 14697 components: - type: Transform @@ -27715,6 +27776,16 @@ entities: - type: Transform pos: -14.5,-35.5 parent: 2 + - uid: 14825 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 - uid: 14915 components: - type: Transform @@ -27965,6 +28036,11 @@ entities: - type: Transform pos: 51.5,32.5 parent: 2 + - uid: 15543 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 - uid: 15592 components: - type: Transform @@ -27995,6 +28071,11 @@ entities: - type: Transform pos: 47.5,-5.5 parent: 2 + - uid: 15678 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 - uid: 15731 components: - type: Transform @@ -28115,6 +28196,11 @@ entities: - type: Transform pos: -21.5,-46.5 parent: 2 + - uid: 15897 + components: + - type: Transform + pos: -23.5,21.5 + parent: 2 - uid: 15954 components: - type: Transform @@ -28255,6 +28341,26 @@ entities: - type: Transform pos: -13.5,32.5 parent: 2 + - uid: 16385 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 + - uid: 16387 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 16396 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 + - uid: 16397 + components: + - type: Transform + pos: -28.5,13.5 + parent: 2 - uid: 16416 components: - type: Transform @@ -28295,13 +28401,33 @@ entities: - type: Transform pos: 42.5,-0.5 parent: 2 -- proto: CableApcStack - entities: - - uid: 5136 + - uid: 16463 components: - type: Transform - pos: -23.462934,14.451097 + pos: -24.5,12.5 parent: 2 + - uid: 16575 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 16576 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 + - uid: 16578 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 +- proto: CableApcStack + entities: - uid: 7468 components: - type: Transform @@ -32217,11 +32343,6 @@ entities: parent: 2 - proto: CableHVStack entities: - - uid: 5137 - components: - - type: Transform - pos: -23.650434,14.638597 - parent: 2 - uid: 7465 components: - type: Transform @@ -32276,6 +32397,11 @@ entities: - type: Transform pos: 39.5,-20.5 parent: 2 + - uid: 375 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 - uid: 411 components: - type: Transform @@ -33241,6 +33367,11 @@ entities: - type: Transform pos: 32.5,-20.5 parent: 2 + - uid: 2682 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 - uid: 2694 components: - type: Transform @@ -33556,16 +33687,51 @@ entities: - type: Transform pos: 55.5,-13.5 parent: 2 + - uid: 3562 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: -29.5,28.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 - uid: 3580 components: - type: Transform pos: -21.5,-39.5 parent: 2 + - uid: 3581 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 - uid: 3610 components: - type: Transform pos: -32.5,-16.5 parent: 2 + - uid: 3618 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 - uid: 3623 components: - type: Transform @@ -33596,6 +33762,16 @@ entities: - type: Transform pos: 37.5,-3.5 parent: 2 + - uid: 4209 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 - uid: 4255 components: - type: Transform @@ -33651,6 +33827,16 @@ entities: - type: Transform pos: -13.5,-7.5 parent: 2 + - uid: 4685 + components: + - type: Transform + pos: -24.5,25.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 - uid: 4772 components: - type: Transform @@ -34116,6 +34302,131 @@ entities: - type: Transform pos: -43.5,-13.5 parent: 2 + - uid: 5076 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + pos: -21.5,25.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 - uid: 5545 components: - type: Transform @@ -35041,240 +35352,65 @@ entities: - type: Transform pos: 35.5,-8.5 parent: 2 + - uid: 6669 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 - uid: 6796 components: - type: Transform pos: 0.5,31.5 parent: 2 - - uid: 6847 + - uid: 6843 components: - type: Transform - pos: -13.5,6.5 - parent: 2 - - uid: 6848 - components: - - type: Transform - pos: -13.5,7.5 - parent: 2 - - uid: 6849 - components: - - type: Transform - pos: -13.5,8.5 - parent: 2 - - uid: 6850 - components: - - type: Transform - pos: -13.5,9.5 - parent: 2 - - uid: 6851 - components: - - type: Transform - pos: -13.5,10.5 - parent: 2 - - uid: 6852 - components: - - type: Transform - pos: -13.5,11.5 + pos: -21.5,28.5 parent: 2 - uid: 6853 components: - type: Transform - pos: -13.5,12.5 - parent: 2 - - uid: 6854 - components: - - type: Transform - pos: -13.5,13.5 - parent: 2 - - uid: 6855 - components: - - type: Transform - pos: -13.5,14.5 - parent: 2 - - uid: 6856 - components: - - type: Transform - pos: -13.5,15.5 - parent: 2 - - uid: 6857 - components: - - type: Transform - pos: -16.5,9.5 + pos: -16.5,12.5 parent: 2 - uid: 6858 components: - type: Transform - pos: -16.5,10.5 - parent: 2 - - uid: 6859 - components: - - type: Transform - pos: -16.5,11.5 - parent: 2 - - uid: 6860 - components: - - type: Transform - pos: -16.5,12.5 - parent: 2 - - uid: 6861 - components: - - type: Transform - pos: -16.5,13.5 - parent: 2 - - uid: 6862 - components: - - type: Transform - pos: -16.5,14.5 - parent: 2 - - uid: 6863 - components: - - type: Transform - pos: -16.5,15.5 + pos: -15.5,19.5 parent: 2 - uid: 6864 components: - type: Transform - pos: -23.5,13.5 + pos: -21.5,13.5 parent: 2 - uid: 6865 components: - type: Transform - pos: -23.5,15.5 + pos: -28.5,20.5 parent: 2 - uid: 6866 components: - type: Transform - pos: -23.5,14.5 + pos: -29.5,20.5 parent: 2 - uid: 6867 components: - type: Transform - pos: -22.5,15.5 + pos: -24.5,20.5 parent: 2 - uid: 6868 components: - type: Transform - pos: -21.5,15.5 - parent: 2 - - uid: 6869 - components: - - type: Transform - pos: -20.5,15.5 - parent: 2 - - uid: 6870 - components: - - type: Transform - pos: -18.5,15.5 - parent: 2 - - uid: 6871 - components: - - type: Transform - pos: -17.5,15.5 - parent: 2 - - uid: 6872 - components: - - type: Transform - pos: -19.5,15.5 - parent: 2 - - uid: 6873 - components: - - type: Transform - pos: -15.5,15.5 - parent: 2 - - uid: 6874 - components: - - type: Transform - pos: -14.5,15.5 - parent: 2 - - uid: 6875 - components: - - type: Transform - pos: -13.5,16.5 - parent: 2 - - uid: 6876 - components: - - type: Transform - pos: -13.5,17.5 - parent: 2 - - uid: 6877 - components: - - type: Transform - pos: -13.5,19.5 - parent: 2 - - uid: 6878 - components: - - type: Transform - pos: -13.5,20.5 - parent: 2 - - uid: 6879 - components: - - type: Transform - pos: -13.5,18.5 - parent: 2 - - uid: 6880 - components: - - type: Transform - pos: -13.5,21.5 - parent: 2 - - uid: 6881 - components: - - type: Transform - pos: -14.5,21.5 - parent: 2 - - uid: 6882 - components: - - type: Transform - pos: -15.5,21.5 - parent: 2 - - uid: 6883 - components: - - type: Transform - pos: -16.5,21.5 - parent: 2 - - uid: 6884 - components: - - type: Transform - pos: -17.5,21.5 - parent: 2 - - uid: 6885 - components: - - type: Transform - pos: -18.5,21.5 - parent: 2 - - uid: 6886 - components: - - type: Transform - pos: -19.5,21.5 + pos: -24.5,28.5 parent: 2 - uid: 6887 components: - type: Transform - pos: -19.5,22.5 + pos: -27.5,28.5 parent: 2 - uid: 6888 components: - type: Transform - pos: -19.5,23.5 - parent: 2 - - uid: 6889 - components: - - type: Transform - pos: -19.5,24.5 - parent: 2 - - uid: 6890 - components: - - type: Transform - pos: -19.5,25.5 - parent: 2 - - uid: 6891 - components: - - type: Transform - pos: -19.5,26.5 - parent: 2 - - uid: 6892 - components: - - type: Transform - pos: -19.5,27.5 + pos: -28.5,28.5 parent: 2 - uid: 6893 components: @@ -35341,55 +35477,80 @@ entities: - type: Transform pos: -11.5,32.5 parent: 2 - - uid: 6906 - components: - - type: Transform - pos: -14.5,22.5 - parent: 2 - uid: 6907 components: - type: Transform - pos: -14.5,23.5 - parent: 2 - - uid: 6908 - components: - - type: Transform - pos: -14.5,24.5 - parent: 2 - - uid: 6909 - components: - - type: Transform - pos: -18.5,23.5 - parent: 2 - - uid: 6910 - components: - - type: Transform - pos: -17.5,23.5 + pos: -17.5,19.5 parent: 2 - uid: 6911 components: - type: Transform - pos: -13.5,24.5 + pos: -23.5,20.5 parent: 2 - uid: 6912 components: - type: Transform - pos: -12.5,24.5 + pos: -17.5,22.5 parent: 2 - - uid: 6913 + - uid: 6916 components: - type: Transform - pos: -11.5,24.5 + pos: -21.5,14.5 parent: 2 - - uid: 6914 + - uid: 6917 components: - type: Transform - pos: -12.5,19.5 + pos: -13.5,8.5 parent: 2 - - uid: 6915 + - uid: 6930 components: - type: Transform - pos: -11.5,19.5 + pos: -19.5,20.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + pos: -25.5,28.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: -26.5,28.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: -23.5,19.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: -24.5,14.5 parent: 2 - uid: 6984 components: @@ -36051,6 +36212,11 @@ entities: - type: Transform pos: 21.5,-19.5 parent: 2 + - uid: 8445 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 - uid: 8507 components: - type: Transform @@ -36526,6 +36692,26 @@ entities: - type: Transform pos: 21.5,30.5 parent: 2 + - uid: 9400 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 9494 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 9497 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 - uid: 9605 components: - type: Transform @@ -36706,16 +36892,6 @@ entities: - type: Transform pos: -1.5,32.5 parent: 2 - - uid: 9688 - components: - - type: Transform - pos: -14.5,12.5 - parent: 2 - - uid: 9689 - components: - - type: Transform - pos: -12.5,12.5 - parent: 2 - uid: 9692 components: - type: Transform @@ -37851,6 +38027,21 @@ entities: - type: Transform pos: 12.5,17.5 parent: 2 + - uid: 10442 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 10605 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 - uid: 10754 components: - type: Transform @@ -37866,16 +38057,56 @@ entities: - type: Transform pos: 51.5,-27.5 parent: 2 + - uid: 10886 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 - uid: 10917 components: - type: Transform pos: 34.5,-18.5 parent: 2 + - uid: 11105 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 - uid: 11107 components: - type: Transform pos: 34.5,-17.5 parent: 2 + - uid: 11109 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 11151 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 11155 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 - uid: 11485 components: - type: Transform @@ -38126,6 +38357,11 @@ entities: - type: Transform pos: 22.5,-20.5 parent: 2 + - uid: 12566 + components: + - type: Transform + pos: -23.5,25.5 + parent: 2 - uid: 12567 components: - type: Transform @@ -38146,6 +38382,11 @@ entities: - type: Transform pos: 17.5,-13.5 parent: 2 + - uid: 12612 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 - uid: 12626 components: - type: Transform @@ -38191,6 +38432,11 @@ entities: - type: Transform pos: 23.5,-20.5 parent: 2 + - uid: 12760 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 - uid: 12770 components: - type: Transform @@ -38206,6 +38452,11 @@ entities: - type: Transform pos: -17.5,-32.5 parent: 2 + - uid: 12910 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 - uid: 12931 components: - type: Transform @@ -38216,6 +38467,16 @@ entities: - type: Transform pos: 27.5,-20.5 parent: 2 + - uid: 13198 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + pos: -21.5,20.5 + parent: 2 - uid: 13417 components: - type: Transform @@ -38346,31 +38607,6 @@ entities: - type: Transform pos: -17.5,5.5 parent: 2 - - uid: 14010 - components: - - type: Transform - pos: -19.5,14.5 - parent: 2 - - uid: 14011 - components: - - type: Transform - pos: -19.5,13.5 - parent: 2 - - uid: 14012 - components: - - type: Transform - pos: -19.5,12.5 - parent: 2 - - uid: 14013 - components: - - type: Transform - pos: -19.5,11.5 - parent: 2 - - uid: 14014 - components: - - type: Transform - pos: -20.5,11.5 - parent: 2 - uid: 14015 components: - type: Transform @@ -38616,6 +38852,11 @@ entities: - type: Transform pos: 3.5,-7.5 parent: 2 + - uid: 15131 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 - uid: 15203 components: - type: Transform @@ -38656,6 +38897,11 @@ entities: - type: Transform pos: -20.5,-37.5 parent: 2 + - uid: 15286 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 - uid: 15289 components: - type: Transform @@ -38966,6 +39212,31 @@ entities: - type: Transform pos: 38.5,-13.5 parent: 2 + - uid: 16170 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 16171 + components: + - type: Transform + pos: -22.5,25.5 + parent: 2 + - uid: 16306 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + pos: -23.5,28.5 + parent: 2 + - uid: 16386 + components: + - type: Transform + pos: -22.5,28.5 + parent: 2 - uid: 16437 components: - type: Transform @@ -39023,11 +39294,6 @@ entities: parent: 2 - proto: CableMVStack entities: - - uid: 5135 - components: - - type: Transform - pos: -23.525434,14.607347 - parent: 2 - uid: 7467 components: - type: Transform @@ -39143,6 +39409,11 @@ entities: parent: 2 - proto: CapacitorStockPart entities: + - uid: 14934 + components: + - type: Transform + pos: -19.233772,25.963198 + parent: 2 - uid: 16401 components: - type: Transform @@ -39179,6 +39450,11 @@ entities: - type: Transform pos: 40.5,-39.5 parent: 2 + - uid: 16370 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 - proto: Carpet entities: - uid: 6599 @@ -39321,17 +39597,17 @@ entities: - type: Transform pos: 42.5,-15.5 parent: 2 -- proto: CarpetPink +- proto: CarpetPurple entities: - - uid: 6605 + - uid: 16522 components: - type: Transform - pos: -17.5,7.5 + pos: -24.5,25.5 parent: 2 - - uid: 6606 + - uid: 16523 components: - type: Transform - pos: -16.5,7.5 + pos: -23.5,25.5 parent: 2 - proto: CarrotSeeds entities: @@ -40063,6 +40339,16 @@ entities: - type: Transform pos: -12.5,-41.5 parent: 2 + - uid: 3481 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 - uid: 3954 components: - type: Transform @@ -40090,6 +40376,51 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-9.5 parent: 2 + - uid: 5104 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: -15.5,25.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: -28.5,23.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: -27.5,23.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 - uid: 5477 components: - type: Transform @@ -40169,6 +40500,26 @@ entities: - type: Transform pos: 43.5,-4.5 parent: 2 + - uid: 6857 + components: + - type: Transform + pos: -29.5,29.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: -28.5,29.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 - uid: 7121 components: - type: Transform @@ -40179,6 +40530,11 @@ entities: - type: Transform pos: 23.5,49.5 parent: 2 + - uid: 7792 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 - uid: 7913 components: - type: Transform @@ -40556,21 +40912,6 @@ entities: - type: Transform pos: 23.5,50.5 parent: 2 - - uid: 8467 - components: - - type: Transform - pos: -28.5,25.5 - parent: 2 - - uid: 8468 - components: - - type: Transform - pos: -30.5,25.5 - parent: 2 - - uid: 8469 - components: - - type: Transform - pos: -29.5,25.5 - parent: 2 - uid: 8470 components: - type: Transform @@ -41072,24 +41413,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,4.5 parent: 2 - - uid: 10605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,11.5 - parent: 2 - - uid: 10606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,11.5 - parent: 2 - - uid: 10607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,10.5 - parent: 2 - uid: 10608 components: - type: Transform @@ -41108,12 +41431,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,7.5 parent: 2 - - uid: 10611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,11.5 - parent: 2 - uid: 10612 components: - type: Transform @@ -41138,12 +41455,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,30.5 parent: 2 - - uid: 10616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,28.5 - parent: 2 - uid: 10617 components: - type: Transform @@ -41905,6 +42216,11 @@ entities: - type: Transform pos: 29.5,-22.5 parent: 2 + - uid: 10765 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 - uid: 10767 components: - type: Transform @@ -42057,6 +42373,11 @@ entities: - type: Transform pos: 10.5,17.5 parent: 2 + - uid: 11144 + components: + - type: Transform + pos: -36.5,35.5 + parent: 2 - uid: 11362 components: - type: Transform @@ -42139,6 +42460,11 @@ entities: - type: Transform pos: 16.5,-53.5 parent: 2 + - uid: 12748 + components: + - type: Transform + pos: -26.5,25.5 + parent: 2 - uid: 12832 components: - type: Transform @@ -42500,16 +42826,6 @@ entities: - type: Transform pos: -54.5,-14.5 parent: 2 - - uid: 14294 - components: - - type: Transform - pos: -23.5,22.5 - parent: 2 - - uid: 14298 - components: - - type: Transform - pos: -23.5,21.5 - parent: 2 - uid: 14358 components: - type: Transform @@ -42675,6 +42991,16 @@ entities: - type: Transform pos: 16.5,-59.5 parent: 2 + - uid: 14595 + components: + - type: Transform + pos: -26.5,23.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 - uid: 14674 components: - type: Transform @@ -42699,11 +43025,26 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-9.5 parent: 2 + - uid: 15132 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 15184 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 - uid: 15253 components: - type: Transform pos: -8.5,-40.5 parent: 2 + - uid: 15285 + components: + - type: Transform + pos: -36.5,28.5 + parent: 2 - uid: 15315 components: - type: Transform @@ -42889,20 +43230,45 @@ entities: - type: Transform pos: 35.5,57.5 parent: 2 - - uid: 16375 + - uid: 16378 components: - type: Transform - pos: -16.5,12.5 + pos: -27.5,29.5 parent: 2 - - uid: 16376 + - uid: 16487 components: - type: Transform - pos: -16.5,11.5 + pos: -25.5,17.5 parent: 2 - - uid: 16377 + - uid: 16488 components: - type: Transform - pos: -16.5,10.5 + pos: -25.5,18.5 + parent: 2 + - uid: 16489 + components: + - type: Transform + pos: -27.5,17.5 + parent: 2 + - uid: 16490 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 16491 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 16492 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 16543 + components: + - type: Transform + pos: -36.5,34.5 parent: 2 - proto: CellRechargerCircuitboard entities: @@ -43091,18 +43457,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-13.5 parent: 2 - - uid: 11204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,17.5 - parent: 2 - - uid: 12750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,17.5 - parent: 2 - uid: 12762 components: - type: Transform @@ -43416,6 +43770,12 @@ entities: rot: 3.141592653589793 rad pos: -35.51934,-33.34789 parent: 2 + - uid: 3568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.493858,12.659004 + parent: 2 - uid: 4070 components: - type: Transform @@ -43456,17 +43816,21 @@ entities: - type: Transform pos: -10.503469,11.609316 parent: 2 - - uid: 5014 + - uid: 5099 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.566639,23.786427 + pos: -29.50343,20.10328 parent: 2 - - uid: 5251 + - uid: 5129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.626351,21.034765 + pos: -20.52276,24.548702 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: -10.926676,20.555073 parent: 2 - uid: 6582 components: @@ -43498,12 +43862,6 @@ entities: rot: 3.141592653589793 rad pos: -24.53384,32.733223 parent: 2 - - uid: 7118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.354769,9.241959 - parent: 2 - uid: 7133 components: - type: Transform @@ -43573,6 +43931,12 @@ entities: rot: 3.141592653589793 rad pos: -3.9565754,-16.251305 parent: 2 + - uid: 15559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.4354122,-6.304986 + parent: 2 - proto: ChairOfficeLight entities: - uid: 7677 @@ -43979,11 +44343,6 @@ entities: - type: Transform pos: 24.550137,-15.25259 parent: 2 - - uid: 16382 - components: - - type: Transform - pos: -17.325197,18.89521 - parent: 2 - proto: CigaretteSpent entities: - uid: 979 @@ -43996,21 +44355,16 @@ entities: - type: Transform pos: 41.132133,26.684916 parent: 2 + - uid: 6954 + components: + - type: Transform + pos: -9.577147,20.617573 + parent: 2 - uid: 12797 components: - type: Transform pos: 3.4188547,-0.36872482 parent: 2 - - uid: 14396 - components: - - type: Transform - pos: 10.413725,28.811876 - parent: 2 - - uid: 14397 - components: - - type: Transform - pos: 10.5856,28.593126 - parent: 2 - uid: 14409 components: - type: Transform @@ -44031,6 +44385,16 @@ entities: - type: Transform pos: 41.486813,26.560337 parent: 2 + - uid: 14869 + components: + - type: Transform + pos: -9.733397,20.961323 + parent: 2 + - uid: 14871 + components: + - type: Transform + pos: -9.342772,20.742573 + parent: 2 - uid: 15109 components: - type: Transform @@ -44071,15 +44435,10 @@ entities: - type: Transform pos: 24.034512,-14.97134 parent: 2 - - uid: 16383 + - uid: 16308 components: - type: Transform - pos: -17.450197,18.73896 - parent: 2 - - uid: 16384 - components: - - type: Transform - pos: -17.793947,18.67646 + pos: -9.358397,22.055073 parent: 2 - proto: CigarGold entities: @@ -44137,10 +44496,10 @@ entities: parent: 2 - proto: CircuitImprinter entities: - - uid: 16381 + - uid: 14513 components: - type: Transform - pos: -15.5,19.5 + pos: -12.5,24.5 parent: 2 - proto: CleanerDispenser entities: @@ -44157,10 +44516,10 @@ entities: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 16385 + - uid: 6847 components: - type: Transform - pos: -16.5,20.5 + pos: -22.5,11.5 parent: 2 - proto: ClosetChefFilled entities: @@ -44271,29 +44630,6 @@ entities: - type: Transform pos: -39.5,-34.5 parent: 2 - - uid: 6379 - components: - - type: Transform - pos: -20.5,12.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: 7219 components: - type: Transform @@ -44468,11 +44804,6 @@ entities: - type: Transform pos: -28.5,-19.5 parent: 2 - - uid: 4566 - components: - - type: Transform - pos: -9.5,18.5 - parent: 2 - uid: 4814 components: - type: Transform @@ -44483,11 +44814,6 @@ entities: - type: Transform pos: -12.5,5.5 parent: 2 - - uid: 5307 - components: - - type: Transform - pos: -21.5,22.5 - parent: 2 - uid: 6151 components: - type: Transform @@ -44498,11 +44824,6 @@ entities: - type: Transform pos: -1.5,33.5 parent: 2 - - uid: 6725 - components: - - type: Transform - pos: -21.5,12.5 - parent: 2 - uid: 7220 components: - type: Transform @@ -44543,6 +44864,11 @@ entities: - type: Transform pos: -24.5,-12.5 parent: 2 + - uid: 13196 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 - uid: 13634 components: - type: Transform @@ -44579,10 +44905,10 @@ entities: parent: 2 - proto: ClosetL3ScienceFilled entities: - - uid: 5309 + - uid: 5145 components: - type: Transform - pos: -11.5,13.5 + pos: -13.5,18.5 parent: 2 - proto: ClosetL3VirologyFilled entities: @@ -44653,6 +44979,11 @@ entities: - type: Transform pos: -42.5,-16.5 parent: 2 + - uid: 5128 + components: + - type: Transform + pos: -26.5,26.5 + parent: 2 - uid: 5582 components: - type: Transform @@ -44673,11 +45004,6 @@ entities: - type: Transform pos: 2.5,12.5 parent: 2 - - uid: 6729 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 - uid: 7217 components: - type: Transform @@ -44768,17 +45094,58 @@ entities: - type: Transform pos: -21.5,39.5 parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - proto: ClosetRadiationSuitFilled entities: + - uid: 2119 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 - uid: 2841 components: - type: Transform pos: 38.5,-22.5 parent: 2 - - uid: 3480 + - uid: 6665 components: - type: Transform - pos: -11.5,14.5 + pos: -21.5,46.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 16462 + components: + - type: Transform + pos: 20.5,32.5 parent: 2 - proto: ClosetSteelBase entities: @@ -44837,12 +45204,31 @@ entities: - uid: 4066 components: - type: Transform - pos: 40.518276,13.51988 + pos: 40.507828,13.163326 parent: 2 - - uid: 5317 + - 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 + - message: This decreases your running speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null + - uid: 5275 components: - type: Transform - pos: -26.67173,11.788899 + pos: -12.517433,9.588177 parent: 2 - proto: ClothingBeltMercWebbing entities: @@ -44858,11 +45244,6 @@ entities: - type: Transform pos: 40.904457,-0.7000258 parent: 2 - - uid: 16394 - components: - - type: Transform - pos: -24.123486,14.509014 - parent: 2 - proto: ClothingBeltUtilityEngineering entities: - uid: 15108 @@ -44877,6 +45258,11 @@ entities: - type: Transform pos: 40.67693,-4.1979237 parent: 2 + - uid: 11250 + components: + - type: Transform + pos: -16.257227,13.512635 + parent: 2 - proto: ClothingEyesGlassesCheapSunglasses entities: - uid: 12928 @@ -44943,13 +45329,6 @@ entities: - type: Transform pos: 26.525785,20.491726 parent: 2 -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 15830 - components: - - type: Transform - pos: -23.458628,19.472885 - parent: 2 - proto: ClothingHandsTacticalMaidGloves entities: - uid: 13753 @@ -45099,11 +45478,6 @@ entities: parent: 2 - proto: ClothingHeadHatWelding entities: - - uid: 5138 - components: - - type: Transform - pos: -26.503574,16.524607 - parent: 2 - uid: 6641 components: - type: Transform @@ -45123,10 +45497,10 @@ entities: parent: 2 - proto: ClothingMaskBreathMedical entities: - - uid: 16386 + - uid: 13200 components: - type: Transform - pos: -26.26548,11.413899 + pos: -12.400035,7.470314 parent: 2 - proto: ClothingMaskGas entities: @@ -45496,15 +45870,15 @@ entities: parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 5030 + - uid: 11225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,23.5 + rot: 3.141592653589793 rad + pos: -24.5,11.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 4350: + 12747: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - proto: ComputerAtmosMonitoring entities: @@ -45533,11 +45907,10 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,4.5 parent: 2 - - uid: 5140 + - uid: 15130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,12.5 + pos: -14.5,9.5 parent: 2 - proto: ComputerBroken entities: @@ -45580,12 +45953,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-6.5 parent: 2 - - uid: 16390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 2 - uid: 16431 components: - type: Transform @@ -45803,30 +46170,24 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-8.5 parent: 2 - - uid: 5094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 2 - - uid: 8445 + - uid: 10607 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,9.5 + pos: -19.5,24.5 parent: 2 - - uid: 12566 + - uid: 11142 components: - type: Transform - pos: -10.5,22.5 + pos: -13.5,27.5 parent: 2 - proto: ComputerRoboticsControl entities: - - uid: 4217 + - uid: 3549 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,8.5 + pos: -12.5,12.5 parent: 2 - uid: 4653 components: @@ -45834,10 +46195,11 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-9.5 parent: 2 - - uid: 5125 + - uid: 5133 components: - type: Transform - pos: -25.5,17.5 + rot: 1.5707963267948966 rad + pos: -21.5,24.5 parent: 2 - proto: ComputerSalvageExpedition entities: @@ -45962,6 +46324,12 @@ entities: - type: Transform pos: 2.5,15.5 parent: 2 + - uid: 6951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,22.5 + parent: 2 - uid: 14291 components: - type: Transform @@ -46212,15 +46580,10 @@ entities: parent: 2 - proto: CrateArtifactContainer entities: - - uid: 4343 + - uid: 16483 components: - type: Transform - pos: -24.5,21.5 - parent: 2 - - uid: 4401 - components: - - type: Transform - pos: -24.5,22.5 + pos: -18.5,15.5 parent: 2 - proto: CrateContrabandStorageSecure entities: @@ -46310,6 +46673,7 @@ entities: - uid: 1249 components: - type: MetaData + desc: A specialised crate for storing volatile P.A.C.M.A.N. fuel. It is insulated from radiation. name: secure P.A.C.M.A.N. fuel crate - type: Transform pos: 30.5,-15.5 @@ -46344,6 +46708,7 @@ entities: showEnts: False occludes: True ent: null + - type: RadiationBlockingContainer - proto: CrateEngineeringShuttle entities: - uid: 6177 @@ -46722,12 +47087,12 @@ entities: - type: Transform pos: 42.5,-14.5 parent: 2 -- proto: CurtainsPinkOpen +- proto: CurtainsPurpleOpen entities: - - uid: 6607 + - uid: 6851 components: - type: Transform - pos: -17.5,8.5 + pos: -23.5,26.5 parent: 2 - proto: CurtainsRedOpen entities: @@ -46801,10 +47166,10 @@ entities: parent: 2 - proto: CyborgEndoskeleton entities: - - uid: 14513 + - uid: 3613 components: - type: Transform - pos: -27.066074,16.227732 + pos: -13.486183,14.181927 parent: 2 - proto: d6Dice entities: @@ -46848,10 +47213,10 @@ entities: parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 14286 + - uid: 16583 components: - type: Transform - pos: -14.5,24.5 + pos: -27.5,20.5 parent: 2 - proto: DefaultStationBeaconArmory entities: @@ -46869,10 +47234,10 @@ entities: parent: 2 - proto: DefaultStationBeaconArtifactLab entities: - - uid: 14289 + - uid: 16582 components: - type: Transform - pos: -20.5,21.5 + pos: -23.5,13.5 parent: 2 - proto: DefaultStationBeaconAtmospherics entities: @@ -47133,24 +47498,24 @@ entities: parent: 2 - proto: DefaultStationBeaconRDRoom entities: - - uid: 14595 + - uid: 16584 components: - type: Transform - pos: -13.5,9.5 + pos: -19.5,25.5 parent: 2 - proto: DefaultStationBeaconRND entities: - - uid: 14598 + - uid: 16585 components: - type: Transform - pos: -13.5,19.5 + pos: -12.5,21.5 parent: 2 - proto: DefaultStationBeaconRobotics entities: - - uid: 14597 + - uid: 16586 components: - type: Transform - pos: -25.5,15.5 + pos: -15.5,12.5 parent: 2 - proto: DefaultStationBeaconSalvage entities: @@ -47161,10 +47526,10 @@ entities: parent: 2 - proto: DefaultStationBeaconScience entities: - - uid: 14599 + - uid: 16587 components: - type: Transform - pos: -18.5,15.5 + pos: -18.5,20.5 parent: 2 - proto: DefaultStationBeaconSecurity entities: @@ -47190,13 +47555,6 @@ entities: - type: Transform pos: -2.5,28.5 parent: 2 -- proto: DefaultStationBeaconServerRoom - entities: - - uid: 14596 - components: - - type: Transform - pos: -17.5,11.5 - parent: 2 - proto: DefaultStationBeaconService entities: - uid: 14606 @@ -47341,11 +47699,6 @@ entities: - type: Transform pos: 9.738823,-16.446983 parent: 2 - - uid: 5495 - components: - - type: Transform - pos: -9.39356,20.272663 - parent: 2 - uid: 5496 components: - type: Transform @@ -47366,6 +47719,11 @@ entities: - type: Transform pos: 9.369369,29.300024 parent: 2 + - uid: 14476 + components: + - type: Transform + pos: -9.7411585,19.644455 + parent: 2 - proto: DiceBag entities: - uid: 15813 @@ -47603,24 +47961,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,18.5 parent: 2 - - uid: 13204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,15.5 - parent: 2 - - uid: 13205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,15.5 - parent: 2 - - uid: 13206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,16.5 - parent: 2 - uid: 13207 components: - type: Transform @@ -49432,54 +49772,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,41.5 parent: 2 - - uid: 13195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,15.5 - parent: 2 - - uid: 13196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,15.5 - parent: 2 - - uid: 13197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,15.5 - parent: 2 - - uid: 13198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,16.5 - parent: 2 - - uid: 13199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,16.5 - parent: 2 - - uid: 13200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,16.5 - parent: 2 - - uid: 13201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,16.5 - parent: 2 - - uid: 13202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,16.5 - parent: 2 - uid: 13203 components: - type: Transform @@ -50758,12 +51050,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,41.5 parent: 2 - - uid: 13087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,14.5 - parent: 2 - uid: 13088 components: - type: Transform @@ -51052,11 +51338,6 @@ entities: - type: Transform pos: 37.5,-8.5 parent: 2 - - uid: 13082 - components: - - type: Transform - pos: -17.5,14.5 - parent: 2 - uid: 13083 components: - type: Transform @@ -51232,10 +51513,10 @@ entities: parent: 2 - proto: DresserResearchDirectorFilled entities: - - uid: 5072 + - uid: 5134 components: - type: Transform - pos: -16.5,8.5 + pos: -24.5,26.5 parent: 2 - proto: DrinkAleBottleFull entities: @@ -51871,42 +52152,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,50.5 parent: 2 - - uid: 15538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 2 - - uid: 15539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,24.5 - parent: 2 - - uid: 15540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,24.5 - parent: 2 - - uid: 15541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,14.5 - parent: 2 - - uid: 15542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 2 - - uid: 15543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 2 - uid: 15544 components: - type: Transform @@ -52137,12 +52382,6 @@ entities: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 15586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,8.5 - parent: 2 - uid: 15587 components: - type: Transform @@ -52287,10 +52526,10 @@ entities: parent: 2 - proto: ExosuitFabricator entities: - - uid: 5127 + - uid: 11188 components: - type: Transform - pos: -26.5,14.5 + pos: -16.5,10.5 parent: 2 - proto: ExtinguisherCabinetFilled entities: @@ -52391,12 +52630,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,9.5 parent: 2 - - uid: 15976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,13.5 - parent: 2 - uid: 15977 components: - type: Transform @@ -52479,6 +52712,14 @@ entities: - type: FaxMachine name: Service destinationAddress: Service + - uid: 6607 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - type: FaxMachine + name: Science + destinationAddress: Science - uid: 7129 components: - type: Transform @@ -52503,22 +52744,6 @@ entities: - type: FaxMachine name: Cargo destinationAddress: Cargo - - uid: 9400 - components: - - type: Transform - pos: -13.5,10.5 - parent: 2 - - type: FaxMachine - name: RD's Office - destinationAddress: RD's Office - - uid: 9402 - components: - - type: Transform - pos: -18.5,14.5 - parent: 2 - - type: FaxMachine - name: Science - destinationAddress: Science - uid: 9403 components: - type: Transform @@ -52581,6 +52806,11 @@ entities: - type: Transform pos: -29.5,-5.5 parent: 2 + - uid: 5135 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 - uid: 6020 components: - type: Transform @@ -52623,10 +52853,10 @@ entities: - type: Transform pos: -34.5,-33.5 parent: 2 - - uid: 5502 + - uid: 5136 components: - type: Transform - pos: -18.5,22.5 + pos: -20.5,26.5 parent: 2 - uid: 6581 components: @@ -52653,6 +52883,11 @@ entities: - type: Transform pos: 5.5,30.5 parent: 2 + - uid: 14438 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 - proto: filingCabinetTallRandom entities: - uid: 2153 @@ -52699,6 +52934,8 @@ entities: - 10851 - uid: 10771 components: + - type: MetaData + name: fire alarm (TEG) - type: Transform rot: 3.141592653589793 rad pos: 29.5,-25.5 @@ -52809,8 +53046,11 @@ entities: - 10837 - 10838 - 4114 - - 10880 - - 10881 + - 16469 + - 16468 + - 11224 + - 16478 + - 16479 - uid: 12225 components: - type: MetaData @@ -52824,7 +53064,6 @@ entities: - 10837 - 10838 - 4114 - - 10882 - 10883 - 10841 - 10840 @@ -53264,6 +53503,7 @@ entities: - 10891 - 10893 - 10892 + - 11143 - uid: 14678 components: - type: MetaData @@ -53292,45 +53532,6 @@ entities: devices: - 10894 - 10895 - - uid: 14680 - components: - - type: MetaData - name: fire alarm (Science) - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,15.5 - parent: 2 - - type: DeviceList - devices: - - 10880 - - 10881 - - 10884 - - 10885 - - 10886 - - 10882 - - uid: 14681 - components: - - type: MetaData - name: fire alarm (Xenoarchaeology) - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,25.5 - parent: 2 - - type: DeviceList - devices: - - 10884 - - uid: 14682 - components: - - type: MetaData - name: fire alarm (Robotics) - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,13.5 - parent: 2 - - type: DeviceList - devices: - - 10885 - - 10886 - uid: 14683 components: - type: MetaData @@ -53371,6 +53572,7 @@ entities: - 10844 - 10888 - 10889 + - 11143 - uid: 15794 components: - type: MetaData @@ -53421,6 +53623,82 @@ entities: - 3815 - 14702 - 1628 + - uid: 16472 + components: + - type: MetaData + name: fire alarm (Anomaly Lab) + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 16467 + - 16470 + - uid: 16473 + components: + - type: MetaData + name: fire alarm (Science) + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 12913 + - 12918 + - 12912 + - 16467 + - 16470 + - 6856 + - 16465 + - 16471 + - uid: 16474 + components: + - type: MetaData + name: fire alarm (Xenoarchaeology) + - type: Transform + pos: -23.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 6856 + - 16465 + - uid: 16475 + components: + - type: MetaData + name: fire alarm (Robotics) + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 16471 + - uid: 16476 + components: + - type: MetaData + name: fire alarm (Science Entrance) + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 16469 + - 16468 + - uid: 16477 + components: + - type: MetaData + name: fire alarm (Science Front) + - type: Transform + pos: -10.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 16479 + - 16478 + - 11224 - proto: FireAlarmElectronics entities: - uid: 2284 @@ -53505,30 +53783,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,31.5 parent: 2 - - uid: 10880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11119 - - 13870 - - 14680 - - 12224 - - uid: 10881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11119 - - 13870 - - 14680 - - 12224 - uid: 10888 components: - type: Transform @@ -53720,6 +53974,30 @@ entities: - type: Transform pos: -18.5,55.5 parent: 2 + - uid: 16468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16476 + - 11204 + - 12224 + - 13870 + - uid: 16469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16476 + - 11204 + - 12224 + - 13870 - proto: FirelockEdge entities: - uid: 197 @@ -53930,18 +54208,6 @@ entities: - 11399 - 14128 - 14656 - - uid: 10882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12612 - - 13933 - - 14680 - - 12225 - uid: 10883 components: - type: Transform @@ -54000,6 +54266,29 @@ entities: - 13802 - 8137 - 14663 + - uid: 11143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14677 + - 13862 + - 14787 + - 13860 + - uid: 11224 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11207 + - 16477 + - 12224 + - 13870 - uid: 13803 components: - type: Transform @@ -54068,6 +54357,28 @@ entities: deviceLists: - 14671 - 14673 + - uid: 16478 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11207 + - 16477 + - 12224 + - 13870 + - uid: 16479 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11207 + - 16477 + - 12224 + - 13870 - proto: FirelockElectronics entities: - uid: 2286 @@ -54223,6 +54534,17 @@ entities: - 13806 - 13817 - 14673 + - uid: 6856 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11211 + - 16473 + - 11199 + - 16474 - uid: 9755 components: - type: Transform @@ -54876,42 +55198,6 @@ entities: - 11020 - 11574 - 14654 - - uid: 10884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12612 - - 11255 - - 14680 - - 14681 - - uid: 10885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11254 - - 12612 - - 14680 - - 14682 - - uid: 10886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11254 - - 12612 - - 14680 - - 14682 - uid: 10894 components: - type: Transform @@ -55081,6 +55367,50 @@ entities: - 15797 - 14657 - 11893 + - uid: 16465 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11211 + - 16473 + - 11199 + - 16474 + - uid: 16467 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11197 + - 11211 + - 16472 + - 16473 + - uid: 16470 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11197 + - 11211 + - 16472 + - 16473 + - uid: 16471 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11211 + - 16473 + - 16475 + - 11212 - proto: Fireplace entities: - uid: 4697 @@ -55149,13 +55479,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 5318 - components: - - type: Transform - pos: -25.5,11.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 6122 components: - type: Transform @@ -55170,13 +55493,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 12257 - components: - - type: Transform - pos: -10.5,18.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 15928 components: - type: Transform @@ -55184,6 +55500,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 16310 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 16372 components: - type: Transform @@ -55603,6 +55926,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-43.5 parent: 2 + - uid: 7769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,11.5 + parent: 2 - uid: 8933 components: - type: Transform @@ -55621,22 +55950,12 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-37.5 parent: 2 - - uid: 11240 + - uid: 11231 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,26.5 + pos: -27.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#5883E8FF' - - uid: 11241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#C75F5FFF' - uid: 13921 components: - type: Transform @@ -55886,6 +56205,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4260 components: - type: Transform @@ -55918,6 +56245,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,11.5 + parent: 2 - uid: 4918 components: - type: Transform @@ -55941,14 +56274,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4943 components: - type: Transform @@ -55971,6 +56296,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,15.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5609 components: - type: Transform @@ -56015,6 +56370,30 @@ entities: - type: Transform pos: 28.5,-35.5 parent: 2 + - uid: 6879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7183 components: - type: Transform @@ -56577,154 +56956,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11117 + - uid: 11152 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,17.5 + pos: -24.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11218 + components: + - type: Transform + pos: -13.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11129 - components: - - type: Transform - pos: -12.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11148 - components: - - type: Transform - pos: -14.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11167 + - uid: 11219 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,7.5 + pos: -25.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11200 - components: - - type: Transform - pos: -21.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11230 - components: - - type: Transform - pos: -26.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,14.5 + rot: -1.5707963267948966 rad + pos: -18.5,24.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11243 + - uid: 11252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,10.5 + pos: -17.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 11260 components: - type: Transform @@ -56764,13 +57031,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11310 - components: - - type: Transform - pos: -9.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11311 components: - type: Transform @@ -57450,14 +57710,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12461 components: - type: Transform @@ -57717,6 +57969,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 14441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14464 components: - type: Transform @@ -57779,6 +58039,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15277 components: - type: Transform @@ -57809,14 +58077,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 16325 components: - type: Transform @@ -57888,6 +58148,13 @@ entities: - type: Transform pos: 32.5,-36.5 parent: 2 + - uid: 5071 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6468 components: - type: Transform @@ -57895,6 +58162,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCDFFF' + - uid: 6854 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8536 components: - type: Transform @@ -57930,10 +58204,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11184 + - uid: 10884 components: - type: Transform - pos: -14.5,16.5 + pos: -16.5,16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -58014,6 +58288,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14175 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeHalf entities: - uid: 9004 @@ -58062,6 +58343,14 @@ entities: color: '#990000FF' - proto: GasPipeStraight entities: + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 215 components: - type: Transform @@ -58964,6 +59253,22 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-27.5 parent: 2 + - uid: 2064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2181 components: - type: Transform @@ -59514,6 +59819,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3582 components: - type: Transform @@ -59522,6 +59843,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3588 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4245 components: - type: Transform @@ -59546,6 +59890,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4540 components: - type: Transform @@ -59594,6 +59954,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 4735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 2 - uid: 4919 components: - type: Transform @@ -59626,6 +59992,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 4933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4934 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4936 components: - type: Transform @@ -59637,8 +60026,8 @@ entities: - uid: 4938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,7.5 + rot: 3.141592653589793 rad + pos: -14.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -59653,19 +60042,35 @@ entities: - uid: 5013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,26.5 + rot: 3.141592653589793 rad + pos: -16.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#5883E8FF' + color: '#990000FF' + - uid: 5014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,24.5 + rot: 1.5707963267948966 rad + pos: -15.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#C75F5FFF' + color: '#990000FF' - uid: 5032 components: - type: Transform @@ -59678,10 +60083,63 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,26.5 + pos: -14.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#5883E8FF' + color: '#990000FF' + - uid: 5153 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5207 components: - type: Transform @@ -59695,11 +60153,19 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-39.5 parent: 2 - - uid: 5300 + - uid: 5211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,16.5 + rot: 3.141592653589793 rad + pos: -14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -59907,6 +60373,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6533 components: - type: Transform @@ -59939,17 +60413,294 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 6734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6735 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6825 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-36.5 parent: 2 + - uid: 6845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6870 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6876 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7026 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7027 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7473 components: - type: Transform pos: 27.5,-19.5 parent: 2 + - uid: 7768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,13.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7790 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7927 components: - type: Transform @@ -59994,6 +60745,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8466 components: - type: Transform @@ -60797,6 +61564,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8746 components: - type: Transform @@ -61571,6 +62346,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 9571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9653 components: - type: Transform @@ -61587,6 +62370,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 9688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9699 components: - type: Transform @@ -61625,6 +62424,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 9971 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10051 components: - type: Transform @@ -61694,6 +62500,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10716 components: - type: Transform @@ -61713,6 +62527,22 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-32.5 parent: 2 + - uid: 10880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10931 components: - type: Transform @@ -62436,43 +63266,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11106 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,17.5 + pos: -18.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -62484,363 +63282,69 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11124 + - uid: 11116 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,19.5 + pos: -13.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11125 + - uid: 11161 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,20.5 + pos: -16.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11140 + - uid: 11162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11143 - components: - - type: Transform - pos: -20.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11144 - components: - - type: Transform - pos: -20.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11149 - components: - - type: Transform - pos: -14.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11171 - components: - - type: Transform - rot: 3.141592653589793 rad pos: -13.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11173 + - uid: 11165 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,10.5 + pos: -19.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11175 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 11176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11189 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,14.5 + pos: -8.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11190 + color: '#990000FF' + - uid: 11184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,14.5 + rot: 3.141592653589793 rad + pos: -13.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11187 + components: + - type: Transform + pos: -17.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11199 - components: - - type: Transform - pos: -16.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11209 components: - type: Transform rot: 1.5707963267948966 rad @@ -62848,126 +63352,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11220 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,16.5 + pos: -26.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11234 + - uid: 11226 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,24.5 + pos: -23.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#C75F5FFF' - - uid: 11244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 11266 components: - type: Transform @@ -68101,14 +68499,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12450 components: - type: Transform @@ -68548,6 +68938,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13838 components: - type: Transform @@ -68743,6 +69197,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 14011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14096 components: - type: Transform @@ -68863,6 +69325,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14396 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14462 components: - type: Transform @@ -68879,22 +69372,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 14469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14707 components: - type: Transform @@ -69007,14 +69484,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 16218 components: - type: Transform @@ -69298,6 +69767,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 4733 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4903 components: - type: Transform @@ -69314,22 +69796,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4933 + - uid: 4939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,11.5 + rot: 3.141592653589793 rad + pos: -14.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5019 components: - type: Transform @@ -69338,10 +69812,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5297 + - uid: 5206 components: - type: Transform - pos: -18.5,16.5 + rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -69388,12 +69871,44 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 6379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6538 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-36.5 parent: 2 + - uid: 6740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7390 components: - type: Transform @@ -69759,6 +70274,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 9961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9999 components: - type: Transform @@ -69766,14 +70289,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10555 components: - type: Transform @@ -69889,90 +70404,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11188 - components: - - type: Transform - pos: -13.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11203 - components: - - type: Transform - pos: -17.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11217 - components: - - type: Transform - pos: -16.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11218 - components: - - type: Transform - pos: -26.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11265 components: - type: Transform @@ -70280,13 +70711,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11850 - components: - - type: Transform - pos: -10.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11851 components: - type: Transform @@ -70858,6 +71282,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 14467 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 1710 @@ -70902,22 +71333,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11238 + - uid: 7767 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,26.5 + pos: -23.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#5883E8FF' - - uid: 11239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#E85858FF' - proto: GasPressurePump entities: - uid: 985 @@ -71018,22 +71439,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4466 + - uid: 4726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,24.5 + rot: 3.141592653589793 rad + pos: -24.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#C75F5FFF' - - uid: 4501 + - uid: 5199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,26.5 + pos: -25.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#5883E8FF' - proto: GasThermoMachineFreezer entities: - uid: 153 @@ -71298,6 +71714,17 @@ entities: - 12726 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11206 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5500 components: - type: Transform @@ -71316,6 +71743,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6869 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11204 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6886 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11203 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11199 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7484 components: - type: Transform @@ -71424,17 +71882,6 @@ entities: - 13812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11119 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8754 components: - type: Transform @@ -71656,90 +72103,37 @@ entities: - 11081 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12612 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11134 + - uid: 11150 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,24.5 + pos: -12.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11256 + - 11210 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11135 + - uid: 11163 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,21.5 + pos: -14.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11255 + - 11212 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11252 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11195 - components: - - type: Transform - pos: -20.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12612 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11250 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11222 + - uid: 11254 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,12.5 + pos: -20.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11253 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11227 - components: - - type: Transform - pos: -24.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11254 + - 11208 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11257 @@ -72300,6 +72694,18 @@ entities: - 13802 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11211 + - 16473 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13829 components: - type: Transform @@ -72364,6 +72770,16 @@ entities: - 13872 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14237 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11197 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14457 components: - type: Transform @@ -72385,6 +72801,17 @@ entities: - 13860 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11207 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14759 components: - type: Transform @@ -72418,17 +72845,6 @@ entities: - 15940 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11251 - - type: AtmosPipeColor - color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 300 @@ -72593,6 +73009,16 @@ entities: - 12724 - type: AtmosPipeColor color: '#990000FF' + - uid: 3560 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11207 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4480 components: - type: Transform @@ -72657,26 +73083,15 @@ entities: - 11083 - type: AtmosPipeColor color: '#990000FF' - - uid: 5310 + - uid: 5155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,15.5 + rot: 1.5707963267948966 rad + pos: -26.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12612 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11250 + - 11197 - type: AtmosPipeColor color: '#990000FF' - uid: 5498 @@ -72728,6 +73143,16 @@ entities: - 11864 - type: AtmosPipeColor color: '#990000FF' + - uid: 6737 + components: + - type: Transform + pos: -24.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11206 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7523 components: - type: Transform @@ -72739,6 +73164,16 @@ entities: - 1136 - type: AtmosPipeColor color: '#990000FF' + - uid: 7789 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11204 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8358 components: - type: Transform @@ -73030,68 +73465,15 @@ entities: - 11081 - type: AtmosPipeColor color: '#990000FF' - - uid: 11121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12612 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11255 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11154 - components: - - type: Transform - pos: -15.5,24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11256 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11160 + - uid: 11185 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,7.5 + pos: -14.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11252 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11254 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11228 - components: - - type: Transform - pos: -9.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11119 + - 11210 - type: AtmosPipeColor color: '#990000FF' - uid: 11259 @@ -73603,6 +73985,38 @@ entities: - 822 - type: AtmosPipeColor color: '#990000FF' + - uid: 12751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11199 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12913 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11211 + - 16473 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12921 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11208 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13827 components: - type: Transform @@ -73666,6 +74080,16 @@ entities: - 13872 - type: AtmosPipeColor color: '#990000FF' + - uid: 13967 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11212 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14180 components: - type: Transform @@ -73706,17 +74130,6 @@ entities: - 3340 - type: AtmosPipeColor color: '#990000FF' - - uid: 14467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11253 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14760 components: - type: Transform @@ -73728,6 +74141,16 @@ entities: - 14751 - type: AtmosPipeColor color: '#990000FF' + - uid: 14784 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11203 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15330 components: - type: Transform @@ -73760,16 +74183,6 @@ entities: - 15940 - type: AtmosPipeColor color: '#990000FF' - - uid: 16168 - components: - - type: Transform - pos: -12.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11251 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasVolumePump entities: - uid: 2458 @@ -73813,6 +74226,11 @@ entities: - type: Transform pos: -24.5,-29.5 parent: 2 + - uid: 3571 + components: + - type: Transform + pos: -26.5,27.5 + parent: 2 - uid: 4111 components: - type: Transform @@ -73896,10 +74314,10 @@ entities: - type: Transform pos: 39.5,30.5 parent: 2 - - uid: 16103 + - uid: 12446 components: - type: Transform - pos: -21.5,46.5 + pos: -27.5,27.5 parent: 2 - uid: 16104 components: @@ -74744,15 +75162,16 @@ entities: - type: Transform pos: -22.5,-36.5 parent: 2 - - uid: 3474 + - uid: 3480 components: - type: Transform - pos: -25.5,21.5 + rot: 1.5707963267948966 rad + pos: -13.5,19.5 parent: 2 - - uid: 3512 + - uid: 3602 components: - type: Transform - pos: -24.5,19.5 + pos: -26.5,11.5 parent: 2 - uid: 3608 components: @@ -74888,6 +75307,11 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-7.5 parent: 2 + - uid: 3710 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 - uid: 3715 components: - type: Transform @@ -74976,6 +75400,12 @@ entities: - type: Transform pos: -1.5,-44.5 parent: 2 + - uid: 4263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 - uid: 4293 components: - type: Transform @@ -75193,106 +75623,12 @@ entities: - type: Transform pos: -29.5,9.5 parent: 2 - - uid: 4733 - components: - - type: Transform - pos: -14.5,12.5 - parent: 2 - - uid: 4734 - components: - - type: Transform - pos: -12.5,12.5 - parent: 2 - uid: 4741 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-10.5 parent: 2 - - uid: 5122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,16.5 - parent: 2 - - uid: 5123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,15.5 - parent: 2 - - uid: 5146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 2 - - uid: 5147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,19.5 - parent: 2 - - uid: 5157 - components: - - type: Transform - pos: -21.5,24.5 - parent: 2 - - uid: 5160 - components: - - type: Transform - pos: -21.5,26.5 - parent: 2 - - uid: 5161 - components: - - type: Transform - pos: -21.5,25.5 - parent: 2 - - uid: 5222 - components: - - type: Transform - pos: -15.5,22.5 - parent: 2 - - uid: 5223 - components: - - type: Transform - pos: -13.5,22.5 - parent: 2 - - uid: 5272 - components: - - type: Transform - pos: -30.5,15.5 - parent: 2 - - uid: 5273 - components: - - type: Transform - pos: -30.5,14.5 - parent: 2 - - uid: 5277 - components: - - type: Transform - pos: -30.5,16.5 - parent: 2 - - uid: 5278 - components: - - type: Transform - pos: -30.5,13.5 - parent: 2 - - uid: 5279 - components: - - type: Transform - pos: -30.5,18.5 - parent: 2 - - uid: 5280 - components: - - type: Transform - pos: -28.5,20.5 - parent: 2 - - uid: 5281 - components: - - type: Transform - pos: -28.5,21.5 - parent: 2 - uid: 5286 components: - type: Transform @@ -75343,12 +75679,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,23.5 parent: 2 - - uid: 5509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,23.5 - parent: 2 - uid: 5510 components: - type: Transform @@ -75951,10 +76281,10 @@ entities: - type: Transform pos: 29.5,-11.5 parent: 2 - - uid: 6669 + - uid: 6606 components: - type: Transform - pos: -25.5,22.5 + pos: -33.5,20.5 parent: 2 - uid: 6698 components: @@ -75971,23 +76301,12 @@ entities: - type: Transform pos: -27.5,33.5 parent: 2 - - uid: 6724 - components: - - type: Transform - pos: -28.5,22.5 - parent: 2 - uid: 6730 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-6.5 parent: 2 - - uid: 6731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,13.5 - parent: 2 - uid: 6827 components: - type: Transform @@ -75998,6 +76317,11 @@ entities: - type: Transform pos: 58.5,-12.5 parent: 2 + - uid: 6953 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 - uid: 7101 components: - type: Transform @@ -77204,6 +77528,11 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-40.5 parent: 2 + - uid: 10481 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 - uid: 10530 components: - type: Transform @@ -77231,6 +77560,50 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-56.5 parent: 2 + - uid: 11129 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 11153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,12.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,14.5 + parent: 2 + - uid: 11244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,14.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + pos: -26.5,12.5 + parent: 2 - uid: 11307 components: - type: Transform @@ -77269,6 +77642,11 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-46.5 parent: 2 + - uid: 13470 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 - uid: 13748 components: - type: Transform @@ -77285,6 +77663,11 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-4.5 parent: 2 + - uid: 14012 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 - uid: 14045 components: - type: Transform @@ -77302,11 +77685,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-48.5 parent: 2 - - uid: 14237 - components: - - type: Transform - pos: 9.5,28.5 - parent: 2 - uid: 14242 components: - type: Transform @@ -77482,6 +77860,11 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 + - uid: 14868 + components: + - type: Transform + pos: -31.5,21.5 + parent: 2 - uid: 15199 components: - type: Transform @@ -77502,12 +77885,22 @@ entities: - type: Transform pos: 47.5,32.5 parent: 2 + - uid: 15461 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 - uid: 15480 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-37.5 parent: 2 + - uid: 15540 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 - uid: 15658 components: - type: Transform @@ -77682,12 +78075,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-34.5 parent: 2 - - uid: 16004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 2 - uid: 16020 components: - type: Transform @@ -77734,6 +78121,12 @@ entities: - type: Transform pos: -26.5,41.5 parent: 2 + - uid: 16167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,19.5 + parent: 2 - uid: 16332 components: - type: Transform @@ -77769,6 +78162,11 @@ entities: - type: Transform pos: 29.5,58.5 parent: 2 + - uid: 16389 + components: + - type: Transform + pos: -26.5,13.5 + parent: 2 - uid: 16403 components: - type: Transform @@ -77906,11 +78304,6 @@ entities: - type: Transform pos: -30.5,38.5 parent: 2 - - uid: 3510 - components: - - type: Transform - pos: -34.5,23.5 - parent: 2 - uid: 3511 components: - type: Transform @@ -78111,11 +78504,6 @@ entities: - type: Transform pos: -53.5,23.5 parent: 2 - - uid: 8446 - components: - - type: Transform - pos: -30.5,17.5 - parent: 2 - uid: 8528 components: - type: Transform @@ -78141,6 +78529,11 @@ entities: - type: Transform pos: 39.5,39.5 parent: 2 + - uid: 11148 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 - uid: 11579 components: - type: Transform @@ -78397,10 +78790,10 @@ entities: parent: 2 - proto: HolopadCommandRd entities: - - uid: 4935 + - uid: 16500 components: - type: Transform - pos: -14.5,9.5 + pos: -18.5,24.5 parent: 2 - proto: HolopadCommandVault entities: @@ -78600,38 +78993,31 @@ entities: parent: 2 - proto: HolopadScienceAnomaly entities: - - uid: 16303 + - uid: 16498 components: - type: Transform - pos: -14.5,23.5 + pos: -25.5,20.5 parent: 2 - proto: HolopadScienceArtifact entities: - - uid: 14718 + - uid: 16497 components: - type: Transform - pos: -20.5,21.5 + pos: -23.5,13.5 parent: 2 -- proto: HolopadScienceBreakroom +- proto: HolopadScienceFront entities: - - uid: 5298 + - uid: 16496 components: - type: Transform - pos: -19.5,15.5 - parent: 2 -- proto: HolopadScienceRnd - entities: - - uid: 16391 - components: - - type: Transform - pos: -14.5,18.5 + pos: -12.5,22.5 parent: 2 - proto: HolopadScienceRobotics entities: - - uid: 14720 + - uid: 16499 components: - type: Transform - pos: -25.5,16.5 + pos: -15.5,12.5 parent: 2 - proto: HolopadSecurityArmory entities: @@ -79041,11 +79427,6 @@ entities: parent: 2 - proto: InflatableWallStack5 entities: - - uid: 6734 - components: - - type: Transform - pos: -19.439934,7.59067 - parent: 2 - uid: 10457 components: - type: Transform @@ -79139,10 +79520,11 @@ entities: parent: 2 - proto: IntercomScience entities: - - uid: 14476 + - uid: 11181 components: - type: Transform - pos: -8.5,23.5 + rot: 1.5707963267948966 rad + pos: -12.5,18.5 parent: 2 - proto: IntercomSecurity entities: @@ -79277,18 +79659,18 @@ entities: rot: 3.141592653589793 rad pos: 13.5,13.5 parent: 2 - - uid: 15896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,15.5 - parent: 2 - uid: 15902 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-14.5 parent: 2 + - uid: 16579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,15.5 + parent: 2 - proto: JetpackMiniFilled entities: - uid: 1733 @@ -79407,11 +79789,6 @@ entities: parent: 2 - proto: LargeBeaker entities: - - uid: 6738 - components: - - type: Transform - pos: -21.578773,20.764584 - parent: 2 - uid: 8820 components: - type: Transform @@ -79426,12 +79803,12 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: LeftArmBorg +- proto: LeftLegBorg entities: - - uid: 14514 + - uid: 16481 components: - type: Transform - pos: -27.534824,16.087107 + pos: -13.835352,13.575135 parent: 2 - proto: Lighter entities: @@ -79826,19 +80203,19 @@ entities: - Pressed: Toggle - proto: LockableButtonResearchDirector entities: - - uid: 4210 + - uid: 11128 components: - - type: MetaData - name: lockable button (Shutters) - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,10.5 + rot: 3.141592653589793 rad + pos: -18.5,23.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 7233: + 14681: - Pressed: Toggle - 7120: + 15086: + - Pressed: Toggle + 11182: - Pressed: Toggle - proto: LockableButtonSecurity entities: @@ -80186,10 +80563,10 @@ entities: parent: 2 - proto: LockerResearchDirectorFilled entities: - - uid: 5076 + - uid: 5132 components: - type: Transform - pos: -16.5,6.5 + pos: -24.5,24.5 parent: 2 - proto: LockerSalvageSpecialistFilled entities: @@ -80205,20 +80582,20 @@ entities: parent: 2 - proto: LockerScienceFilled entities: - - uid: 5241 + - uid: 5126 components: - type: Transform - pos: -21.5,18.5 + pos: -21.5,21.5 parent: 2 - - uid: 5242 + - uid: 5257 components: - type: Transform - pos: -20.5,18.5 + pos: -20.5,21.5 parent: 2 - - uid: 5243 + - uid: 7788 components: - type: Transform - pos: -19.5,18.5 + pos: -19.5,21.5 parent: 2 - proto: LockerSecurityFilled entities: @@ -80456,15 +80833,25 @@ entities: parent: 2 - proto: LootSpawnerScienceMinor entities: - - uid: 3588 + - uid: 16529 components: - type: Transform - pos: -18.5,18.5 + pos: -9.5,21.5 parent: 2 - - uid: 16395 + - uid: 16530 components: - type: Transform - pos: -18.5,23.5 + pos: -30.5,19.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + pos: -25.5,13.5 + parent: 2 + - uid: 16532 + components: + - type: Transform + pos: -16.5,8.5 parent: 2 - proto: LootSpawnerSecurityBasic entities: @@ -80502,47 +80889,47 @@ entities: parent: 2 - proto: MachineAnomalyGenerator entities: - - uid: 5191 + - uid: 5298 components: - type: Transform - pos: -14.5,26.5 + pos: -27.5,22.5 parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 5288 + - uid: 5255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,23.5 + pos: -28.5,17.5 parent: 2 - - uid: 5289 + - uid: 11134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,23.5 + pos: -24.5,17.5 parent: 2 - proto: MachineAPE entities: - - uid: 5290 + - uid: 16493 components: - type: Transform - pos: -16.5,25.5 + rot: -1.5707963267948966 rad + pos: -28.5,18.5 parent: 2 - - uid: 5291 + - uid: 16494 components: - type: Transform - pos: -12.5,25.5 + rot: -1.5707963267948966 rad + pos: -24.5,18.5 parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 4350 + - uid: 12747 components: - type: Transform - pos: -23.5,25.5 + pos: -28.5,12.5 parent: 2 - type: ItemPlacer placedEntities: - - 15285 + - 5291 - proto: MachineCentrifuge entities: - uid: 3969 @@ -80585,11 +80972,15 @@ entities: - type: Transform pos: 31.5,-17.5 parent: 2 - - uid: 7892 + - uid: 5127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,26.5 + pos: -19.5,26.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: -26.5,17.5 parent: 2 - uid: 10554 components: @@ -80597,6 +80988,11 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-40.5 parent: 2 + - uid: 11248 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 - uid: 13489 components: - type: Transform @@ -80625,11 +81021,6 @@ entities: - type: Transform pos: -21.5,51.5 parent: 2 - - uid: 16387 - components: - - type: Transform - pos: -15.5,14.5 - parent: 2 - uid: 16430 components: - type: Transform @@ -80648,15 +81039,10 @@ entities: - type: Transform pos: 17.5,-22.5 parent: 2 - - uid: 5167 + - uid: 5268 components: - type: Transform - pos: -17.5,12.5 - parent: 2 - - uid: 6384 - components: - - type: Transform - pos: -12.5,26.5 + pos: -26.5,18.5 parent: 2 - uid: 9119 components: @@ -80678,11 +81064,6 @@ entities: - type: Transform pos: 26.5,-8.5 parent: 2 - - uid: 16388 - components: - - type: Transform - pos: -12.5,19.5 - parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 5644 @@ -80732,11 +81113,6 @@ entities: - type: Transform pos: -13.5,5.5 parent: 2 - - uid: 13705 - components: - - type: Transform - pos: -27.5,29.5 - parent: 2 - uid: 13715 components: - type: Transform @@ -80792,6 +81168,11 @@ entities: - type: Transform pos: -19.5,54.5 parent: 2 + - uid: 16572 + components: + - type: Transform + pos: -19.5,9.5 + parent: 2 - proto: MaintenanceInsulsSpawner entities: - uid: 1076 @@ -80819,13 +81200,13 @@ entities: - type: Transform pos: -39.5,-43.5 parent: 2 -- proto: MaintenancePlantSpawner - entities: - - uid: 372 + - uid: 16574 components: - type: Transform - pos: -21.5,11.5 + pos: -26.5,25.5 parent: 2 +- proto: MaintenancePlantSpawner + entities: - uid: 1066 components: - type: Transform @@ -80851,11 +81232,6 @@ entities: - type: Transform pos: -23.5,8.5 parent: 2 - - uid: 13708 - components: - - type: Transform - pos: -29.5,29.5 - parent: 2 - uid: 13709 components: - type: Transform @@ -81023,6 +81399,11 @@ entities: - type: Transform pos: -23.5,46.5 parent: 2 + - uid: 16573 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 - proto: MaintenanceWeaponSpawner entities: - uid: 725 @@ -81106,6 +81487,13 @@ entities: - type: Transform pos: 13.618376,-18.105558 parent: 2 +- proto: MatterBinStockPart + entities: + - uid: 16567 + components: + - type: Transform + pos: -13.066984,24.89437 + parent: 2 - proto: Mattress entities: - uid: 16062 @@ -81147,6 +81535,14 @@ entities: - type: Transform pos: 40.5,20.5 parent: 2 +- proto: MediumXenoArtifact + entities: + - uid: 5291 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 + - type: BiasedArtifact - proto: MedkitAdvancedFilled entities: - uid: 4057 @@ -81260,6 +81656,12 @@ entities: parent: 2 - proto: Morgue entities: + - uid: 2620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,6.5 + parent: 2 - uid: 3117 components: - type: Transform @@ -81293,11 +81695,6 @@ entities: - type: Transform pos: 40.5,15.5 parent: 2 - - uid: 10442 - components: - - type: Transform - pos: -23.5,12.5 - parent: 2 - uid: 14191 components: - type: Transform @@ -81327,11 +81724,6 @@ entities: - type: Transform pos: 36.18178,-9.866242 parent: 2 - - uid: 16393 - components: - - type: Transform - pos: -18.25016,18.529314 - parent: 2 - proto: NitrogenCanister entities: - uid: 1206 @@ -81344,11 +81736,6 @@ entities: - type: Transform pos: 37.5,-28.5 parent: 2 - - uid: 5305 - components: - - type: Transform - pos: -20.5,20.5 - parent: 2 - uid: 5972 components: - type: Transform @@ -81369,6 +81756,11 @@ entities: - type: Transform pos: 10.5,-24.5 parent: 2 + - uid: 6979 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 - uid: 10464 components: - type: Transform @@ -81388,19 +81780,11 @@ entities: parent: 2 - proto: NitrousOxideTankFilled entities: - - uid: 5301 + - uid: 10611 components: - type: Transform - pos: -26.468605,11.632649 + pos: -12.587535,7.564064 parent: 2 - - type: GasTank - toggleActionEntity: 5302 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 5302 - proto: NoticeBoard entities: - uid: 2033 @@ -81470,10 +81854,10 @@ entities: - type: Transform pos: 36.5,4.5 parent: 2 - - uid: 5139 + - uid: 16391 components: - type: Transform - pos: -25.5,11.5 + pos: -13.5,7.5 parent: 2 - proto: OreBox entities: @@ -81513,11 +81897,6 @@ entities: - type: Transform pos: 16.5,-24.5 parent: 2 - - uid: 5306 - components: - - type: Transform - pos: -19.5,20.5 - parent: 2 - uid: 6298 components: - type: Transform @@ -81548,6 +81927,11 @@ entities: - type: Transform pos: 24.5,47.5 parent: 2 + - uid: 16484 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 - proto: PaintingMonkey entities: - uid: 23 @@ -81808,6 +82192,16 @@ entities: - type: Transform pos: 5.4015055,27.15652 parent: 2 + - uid: 12904 + components: + - type: Transform + pos: -20.67901,23.579952 + parent: 2 + - uid: 16495 + components: + - type: Transform + pos: -25.613398,12.407049 + parent: 2 - proto: PersonalAI entities: - uid: 6312 @@ -82302,11 +82696,6 @@ entities: - type: Transform pos: -38.5,29.5 parent: 2 - - uid: 13470 - components: - - type: Transform - pos: -14.5,13.5 - parent: 2 - uid: 13473 components: - type: Transform @@ -82509,10 +82898,10 @@ entities: parent: 2 - proto: PottedPlantRD entities: - - uid: 7110 + - uid: 5252 components: - type: Transform - pos: -12.5,11.5 + pos: -21.5,26.5 parent: 2 - proto: PowerCellRecharger entities: @@ -82556,6 +82945,11 @@ entities: - type: Transform pos: 4.5,36.5 parent: 2 + - uid: 6936 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 - uid: 7509 components: - type: Transform @@ -82566,6 +82960,11 @@ entities: - type: Transform pos: 21.5,38.5 parent: 2 + - uid: 7892 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 - uid: 9117 components: - type: Transform @@ -82592,15 +82991,12 @@ entities: - type: Transform pos: -44.5,-13.5 parent: 2 - - uid: 16164 +- proto: PowerDrill + entities: + - uid: 16166 components: - type: Transform - pos: -13.5,7.5 - parent: 2 - - uid: 16397 - components: - - type: Transform - pos: -20.5,14.5 + pos: -18.635149,26.547112 parent: 2 - proto: PoweredDimSmallLight entities: @@ -82805,23 +83201,6 @@ entities: - type: Transform pos: -30.5,-15.5 parent: 2 - - uid: 12910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 2 - - uid: 12911 - components: - - type: Transform - pos: -24.5,22.5 - parent: 2 - - uid: 12912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,11.5 - parent: 2 - uid: 13498 components: - type: Transform @@ -83002,12 +83381,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,31.5 parent: 2 - - uid: 13579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,27.5 - parent: 2 - uid: 13580 components: - type: Transform @@ -83175,6 +83548,27 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-12.5 parent: 2 + - uid: 16513 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 16515 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - uid: 16516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,11.5 + parent: 2 + - uid: 16581 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 - proto: PoweredLEDSmallLight entities: - uid: 8364 @@ -83183,17 +83577,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,20.5 parent: 2 - - uid: 12920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,24.5 - parent: 2 - - uid: 12921 - components: - - type: Transform - pos: -23.5,26.5 - parent: 2 - uid: 13558 components: - type: Transform @@ -83234,17 +83617,41 @@ entities: rot: 3.141592653589793 rad pos: -40.5,28.5 parent: 2 - - uid: 13967 + - uid: 16512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,22.5 + rot: -1.5707963267948966 rad + pos: -12.5,25.5 parent: 2 - - uid: 13972 + - uid: 16514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 2 + - uid: 16517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 2 + - uid: 16518 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,18.5 + pos: -30.5,22.5 + parent: 2 + - uid: 16519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,17.5 + parent: 2 + - uid: 16520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,19.5 parent: 2 - proto: Poweredlight entities: @@ -83345,12 +83752,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-22.5 parent: 2 - - uid: 11194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,18.5 - parent: 2 - uid: 12711 components: - type: Transform @@ -83645,11 +84046,6 @@ entities: - type: Transform pos: -8.5,44.5 parent: 2 - - uid: 12904 - components: - - type: Transform - pos: -18.5,18.5 - parent: 2 - uid: 13559 components: - type: Transform @@ -83842,6 +84238,17 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-39.5 parent: 2 + - uid: 16510 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 16521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,16.5 + parent: 2 - proto: PoweredlightLED entities: - uid: 12907 @@ -83849,35 +84256,6 @@ entities: - type: Transform pos: 24.5,8.5 parent: 2 - - uid: 12908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,18.5 - parent: 2 - - uid: 12909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,14.5 - parent: 2 - - uid: 12913 - components: - - type: Transform - pos: -25.5,17.5 - parent: 2 - - uid: 12918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,22.5 - parent: 2 - - uid: 12919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 2 - uid: 13585 components: - type: Transform @@ -83971,6 +84349,46 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,30.5 parent: 2 + - uid: 16503 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,11.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 16508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - uid: 16509 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 - proto: PoweredlightSodium entities: - uid: 13969 @@ -84353,12 +84771,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-42.5 parent: 2 - - uid: 13604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,7.5 - parent: 2 - uid: 13626 components: - type: Transform @@ -84480,12 +84892,18 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-34.5 parent: 2 -- proto: Protolathe - entities: - - uid: 16379 + - uid: 16511 components: - type: Transform - pos: -15.5,18.5 + rot: 1.5707963267948966 rad + pos: -24.5,25.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 14514 + components: + - type: Transform + pos: -12.5,25.5 parent: 2 - proto: PsychBed entities: @@ -84582,6 +85000,11 @@ entities: - type: Transform pos: 8.5,-24.5 parent: 2 + - uid: 3474 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 - uid: 4739 components: - type: Transform @@ -84612,6 +85035,11 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,5.5 parent: 2 + - uid: 5180 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 - uid: 5481 components: - type: Transform @@ -84670,11 +85098,6 @@ entities: - type: Transform pos: 0.5,12.5 parent: 2 - - uid: 6728 - components: - - type: Transform - pos: -19.5,7.5 - parent: 2 - uid: 7225 components: - type: Transform @@ -84763,6 +85186,21 @@ entities: - type: Transform pos: 31.5,29.5 parent: 2 + - uid: 11119 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: -23.5,22.5 + parent: 2 - uid: 11263 components: - type: Transform @@ -84804,6 +85242,21 @@ entities: - type: Transform pos: 42.5,5.5 parent: 2 + - uid: 14824 + components: + - type: Transform + pos: -15.5,25.5 + parent: 2 + - uid: 15129 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 - uid: 16045 components: - type: Transform @@ -84824,6 +85277,26 @@ entities: - type: Transform pos: -19.5,54.5 parent: 2 + - uid: 16382 + components: + - type: Transform + pos: -25.5,22.5 + parent: 2 + - uid: 16388 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 16570 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 16571 + components: + - type: Transform + pos: -19.5,9.5 + parent: 2 - proto: RadioHandheld entities: - uid: 8080 @@ -84909,6 +85382,12 @@ entities: rot: 3.141592653589793 rad pos: 4.5,2.5 parent: 2 + - uid: 5113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,15.5 + parent: 2 - uid: 7644 components: - type: Transform @@ -85065,6 +85544,23 @@ entities: parent: 2 - proto: RailingCorner entities: + - uid: 6976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,21.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,21.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 - uid: 14310 components: - type: Transform @@ -85119,6 +85615,17 @@ entities: - type: Transform pos: 5.5,2.5 parent: 2 + - uid: 5075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,21.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 - uid: 7834 components: - type: Transform @@ -85321,16 +85828,6 @@ entities: - type: Transform pos: -27.5,-5.5 parent: 2 - - uid: 15461 - components: - - type: Transform - pos: -18.5,8.5 - parent: 2 - - uid: 15462 - components: - - type: Transform - pos: -16.5,5.5 - parent: 2 - uid: 15463 components: - type: Transform @@ -85396,13 +85893,23 @@ entities: - type: Transform pos: -20.5,-17.5 parent: 2 -- proto: RandomPosterAny - entities: - - uid: 14831 + - uid: 16561 components: - type: Transform - pos: -28.5,14.5 + pos: -25.5,26.5 parent: 2 + - uid: 16562 + components: + - type: Transform + pos: -23.5,27.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 +- proto: RandomPosterAny + entities: - uid: 14845 components: - type: Transform @@ -85697,56 +86204,11 @@ entities: - type: Transform pos: 28.5,-19.5 parent: 2 - - uid: 12786 - components: - - type: Transform - pos: -21.5,19.5 - parent: 2 - uid: 14448 components: - type: Transform pos: 12.5,-11.5 parent: 2 - - uid: 14784 - components: - - type: Transform - pos: -25.5,18.5 - parent: 2 - - uid: 14797 - components: - - type: Transform - pos: -27.5,18.5 - parent: 2 - - uid: 14824 - components: - - type: Transform - pos: -11.5,10.5 - parent: 2 - - uid: 14825 - components: - - type: Transform - pos: -11.5,7.5 - parent: 2 - - uid: 14826 - components: - - type: Transform - pos: -20.5,13.5 - parent: 2 - - uid: 14828 - components: - - type: Transform - pos: -10.5,23.5 - parent: 2 - - uid: 14829 - components: - - type: Transform - pos: -18.5,19.5 - parent: 2 - - uid: 14832 - components: - - type: Transform - pos: -25.5,10.5 - parent: 2 - uid: 14833 components: - type: Transform @@ -85862,31 +86324,6 @@ entities: - type: Transform pos: -14.5,3.5 parent: 2 - - uid: 14867 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 - - uid: 14868 - components: - - type: Transform - pos: -15.5,9.5 - parent: 2 - - uid: 14869 - components: - - type: Transform - pos: -17.5,26.5 - parent: 2 - - uid: 14870 - components: - - type: Transform - pos: -22.5,22.5 - parent: 2 - - uid: 14871 - components: - - type: Transform - pos: -22.5,17.5 - parent: 2 - uid: 14872 components: - type: Transform @@ -86432,6 +86869,86 @@ entities: - type: Transform pos: 3.5,-7.5 parent: 2 + - uid: 16544 + components: + - type: Transform + pos: -23.5,23.5 + parent: 2 + - uid: 16545 + components: + - type: Transform + pos: -31.5,22.5 + parent: 2 + - uid: 16546 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - uid: 16547 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 16550 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 16551 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 16552 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 16554 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 16555 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 16556 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 16557 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 16558 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 16559 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + pos: -18.5,27.5 + parent: 2 - proto: RandomProduce entities: - uid: 7751 @@ -86446,11 +86963,6 @@ entities: parent: 2 - proto: RandomSpawner100 entities: - - uid: 14339 - components: - - type: Transform - pos: -20.5,25.5 - parent: 2 - uid: 14416 components: - type: Transform @@ -86641,21 +87153,6 @@ entities: - type: Transform pos: 22.5,-28.5 parent: 2 - - uid: 5153 - components: - - type: Transform - pos: -21.5,26.5 - parent: 2 - - uid: 5159 - components: - - type: Transform - pos: -21.5,25.5 - parent: 2 - - uid: 5174 - components: - - type: Transform - pos: -21.5,24.5 - parent: 2 - uid: 5974 components: - type: Transform @@ -87075,16 +87572,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-47.5 parent: 2 - - uid: 4296 - components: - - type: Transform - pos: -25.5,21.5 - parent: 2 - - uid: 4297 - components: - - type: Transform - pos: -25.5,22.5 - parent: 2 - uid: 4326 components: - type: Transform @@ -87181,27 +87668,10 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-7.5 parent: 2 - - uid: 5074 + - uid: 5140 components: - type: Transform - pos: -14.5,12.5 - parent: 2 - - uid: 5075 - components: - - type: Transform - pos: -12.5,12.5 - parent: 2 - - uid: 5101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,16.5 - parent: 2 - - uid: 5118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,15.5 + pos: -31.5,20.5 parent: 2 - uid: 5165 components: @@ -87214,11 +87684,26 @@ entities: - type: Transform pos: -21.5,43.5 parent: 2 + - uid: 5270 + components: + - type: Transform + pos: -31.5,21.5 + parent: 2 - uid: 5445 components: - type: Transform pos: -40.5,31.5 parent: 2 + - uid: 5502 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 - uid: 6170 components: - type: Transform @@ -87301,6 +87786,22 @@ entities: - type: Transform pos: -29.5,33.5 parent: 2 + - uid: 6937 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,11.5 + parent: 2 - uid: 7042 components: - type: Transform @@ -87409,24 +87910,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,42.5 parent: 2 - - uid: 7767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,19.5 - parent: 2 - - uid: 7770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,22.5 - parent: 2 - - uid: 7771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,22.5 - parent: 2 - uid: 7781 components: - type: Transform @@ -87439,12 +87922,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,32.5 parent: 2 - - uid: 7787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,19.5 - parent: 2 - uid: 7876 components: - type: Transform @@ -87583,6 +88060,29 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 2 + - uid: 11171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,12.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 2 + - uid: 11234 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 11239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,14.5 + parent: 2 - uid: 12554 components: - type: Transform @@ -87616,6 +88116,12 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-7.5 parent: 2 + - uid: 12902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,13.5 + parent: 2 - uid: 13451 components: - type: Transform @@ -87634,6 +88140,11 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-36.5 parent: 2 + - uid: 13972 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 - uid: 14139 components: - type: Transform @@ -87686,11 +88197,17 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-38.5 parent: 2 - - uid: 14627 + - uid: 14828 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,14.5 + pos: -14.5,19.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,22.5 parent: 2 - uid: 14904 components: @@ -87703,12 +88220,6 @@ entities: - type: Transform pos: 36.5,-7.5 parent: 2 - - uid: 14934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,13.5 - parent: 2 - uid: 15244 components: - type: Transform @@ -87758,10 +88269,17 @@ entities: parent: 2 - proto: ResearchAndDevelopmentServer entities: - - uid: 5093 + - uid: 11247 components: - type: Transform - pos: -17.5,10.5 + pos: -17.5,26.5 + parent: 2 +- proto: RightArmBorg + entities: + - uid: 16482 + components: + - type: Transform + pos: -13.225977,14.12201 parent: 2 - proto: RiotBulletShield entities: @@ -87831,13 +88349,6 @@ entities: - type: Transform pos: -8.471848,57.431126 parent: 2 -- proto: SaxophoneInstrument - entities: - - uid: 15610 - components: - - type: Transform - pos: -17.539948,8.356122 - parent: 2 - proto: Scalpel entities: - uid: 16046 @@ -87847,10 +88358,10 @@ entities: parent: 2 - proto: SciFlash entities: - - uid: 6737 + - uid: 11178 components: - type: Transform - pos: -26.98795,15.337107 + pos: -13.190674,13.584721 parent: 2 - proto: ScrapCamera entities: @@ -87953,12 +88464,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,12.5 parent: 2 - - uid: 14650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,13.5 - parent: 2 - uid: 14916 components: - type: Transform @@ -87976,16 +88481,16 @@ entities: - type: Transform pos: 35.523155,-18.499912 parent: 2 - - uid: 14515 - components: - - type: Transform - pos: -26.507914,15.899607 - parent: 2 - uid: 15841 components: - type: Transform pos: 41.654457,-0.7625258 parent: 2 + - uid: 16566 + components: + - type: Transform + pos: -14.238859,26.941244 + parent: 2 - proto: SecurityTechFab entities: - uid: 3426 @@ -88024,16 +88529,16 @@ entities: - type: Transform pos: 16.53406,33.578266 parent: 2 - - uid: 6742 - components: - - type: Transform - pos: -18.453773,20.545834 - parent: 2 - uid: 7894 components: - type: Transform pos: 33.90753,-21.955515 parent: 2 + - uid: 15134 + components: + - type: Transform + pos: -15.551138,26.577679 + parent: 2 - uid: 15304 components: - type: Transform @@ -88046,6 +88551,11 @@ entities: - type: Transform pos: 26.304653,30.75047 parent: 2 + - uid: 12764 + components: + - type: Transform + pos: -12.272852,11.512635 + parent: 2 - proto: SheetPlasma entities: - uid: 1252 @@ -88055,10 +88565,10 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 6743 + - uid: 14395 components: - type: Transform - pos: -15.476229,20.535725 + pos: -23.619665,22.58191 parent: 2 - proto: SheetPlasteel entities: @@ -88074,10 +88584,10 @@ entities: - type: Transform pos: 16.56531,35.453266 parent: 2 - - uid: 6741 + - uid: 16163 components: - type: Transform - pos: -15.388418,25.607353 + pos: -15.598013,25.562054 parent: 2 - proto: SheetPlastic10 entities: @@ -88086,6 +88596,11 @@ entities: - type: Transform pos: 27.173573,-15.335665 parent: 2 + - uid: 5072 + components: + - type: Transform + pos: -12.491602,11.46576 + parent: 2 - proto: SheetRGlass entities: - uid: 1250 @@ -88115,10 +88630,10 @@ entities: - type: Transform pos: 4.5028095,34.609516 parent: 2 - - uid: 6740 + - uid: 6742 components: - type: Transform - pos: -9.539493,22.367113 + pos: -12.600977,11.606385 parent: 2 - uid: 12557 components: @@ -88135,6 +88650,11 @@ entities: - type: Transform pos: -3.4503732,-15.515963 parent: 2 + - uid: 16303 + components: + - type: Transform + pos: -15.582388,24.593304 + parent: 2 - proto: SheetSteel10 entities: - uid: 6087 @@ -88166,6 +88686,12 @@ entities: parent: 2 - proto: ShuttersNormal entities: + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 - uid: 3436 components: - type: Transform @@ -88200,6 +88726,12 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-4.5 parent: 2 + - uid: 11215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,13.5 + parent: 2 - uid: 14372 components: - type: Transform @@ -88271,16 +88803,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-16.5 parent: 2 - - uid: 7120 - components: - - type: Transform - pos: -12.5,12.5 - parent: 2 - - uid: 7233 - components: - - type: Transform - pos: -14.5,12.5 - parent: 2 - uid: 7324 components: - type: Transform @@ -88364,6 +88886,11 @@ entities: - type: Transform pos: -32.5,-4.5 parent: 2 + - uid: 11182 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 - uid: 12813 components: - type: Transform @@ -88388,6 +88915,16 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-21.5 parent: 2 + - uid: 14681 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 - uid: 15279 components: - type: Transform @@ -88472,11 +89009,6 @@ entities: parent: 2 - proto: SignAi entities: - - uid: 2836 - components: - - type: Transform - pos: -18.5,27.5 - parent: 2 - uid: 2837 components: - type: Transform @@ -88530,22 +89062,6 @@ entities: - Pressed: Toggle 2360: - Pressed: Toggle - - uid: 5199 - components: - - type: MetaData - name: signal button (Blast Doors) - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,23.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5269: - - Pressed: Toggle - 5270: - - Pressed: Toggle - 5271: - - Pressed: Toggle - uid: 6029 components: - type: MetaData @@ -88557,6 +89073,20 @@ entities: linkedPorts: 7748: - Pressed: Toggle + - uid: 7024 + components: + - type: MetaData + name: signal button (Door B) + - type: Transform + rot: 3.141592653589793 rad + pos: -12.684232,19.501225 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5144: + - Pressed: Toggle + 16017: + - Pressed: Toggle - uid: 9353 components: - type: Transform @@ -88585,6 +89115,8 @@ entities: - Pressed: Toggle - uid: 10510 components: + - type: MetaData + name: signal button (Janitor) - type: Transform pos: -26.5,-6.5 parent: 2 @@ -88592,6 +89124,45 @@ entities: linkedPorts: 9968: - Pressed: Toggle + - uid: 11169 + components: + - type: MetaData + name: signal button (Blast Door) + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14013: + - Pressed: Toggle + - uid: 11201 + components: + - type: MetaData + name: signal button (Shutters) + - type: Transform + pos: -12.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1540: + - Pressed: Toggle + 11215: + - Pressed: Toggle + - uid: 12773 + components: + - type: MetaData + name: signal button (Door A) + - type: Transform + rot: 3.141592653589793 rad + pos: -12.277982,19.501225 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11249: + - Pressed: Toggle + 5141: + - Pressed: Toggle - uid: 14428 components: - type: MetaData @@ -88645,34 +89216,6 @@ entities: - Pressed: Toggle 2588: - Pressed: Toggle - - uid: 14440 - components: - - type: MetaData - name: signal button (Door A) - - type: Transform - rot: 3.141592653589793 rad - pos: -10.293873,19.456495 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5202: - - Pressed: Toggle - 5245: - - Pressed: Toggle - - uid: 14441 - components: - - type: MetaData - name: signal button (Door B) - - type: Transform - rot: 3.141592653589793 rad - pos: -10.715748,19.456495 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5200: - - Pressed: Toggle - 5203: - - Pressed: Toggle - uid: 14446 components: - type: MetaData @@ -88896,16 +89439,17 @@ entities: linkedPorts: 3590: - Pressed: Toggle - - uid: 15898 + - uid: 16553 components: - type: MetaData name: signal button (Janitor) - type: Transform - pos: -11.5,22.5 + rot: -1.5707963267948966 rad + pos: -15.5,15.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15896: + 16579: - Pressed: Toggle - proto: SignalSwitchDirectional entities: @@ -88978,17 +89522,17 @@ entities: - Off: Close - proto: SignAnomaly entities: - - uid: 12760 + - uid: 16169 components: - type: Transform - pos: -17.5,20.5 + pos: -19.5,15.5 parent: 2 - proto: SignAnomaly2 entities: - - uid: 1353 + - uid: 5317 components: - type: Transform - pos: -12.5,22.5 + pos: -22.5,21.5 parent: 2 - proto: SignArmory entities: @@ -89833,6 +90377,11 @@ entities: - type: Transform pos: 17.5,-12.5 parent: 2 + - uid: 16466 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 - proto: SignExamroom entities: - uid: 12705 @@ -89996,17 +90545,17 @@ entities: parent: 2 - proto: SignRND entities: - - uid: 14719 + - uid: 11141 components: - type: Transform - pos: -16.5,17.5 + pos: -15.5,22.5 parent: 2 - proto: SignRobo entities: - - uid: 12747 + - uid: 10494 components: - type: Transform - pos: -22.5,14.5 + pos: -16.5,14.5 parent: 2 - proto: SignSalvage entities: @@ -90017,7 +90566,7 @@ entities: parent: 2 - proto: SignScience entities: - - uid: 12748 + - uid: 11170 components: - type: Transform pos: -8.5,15.5 @@ -90034,11 +90583,6 @@ entities: - type: Transform pos: -6.5,-19.5 parent: 2 - - uid: 12764 - components: - - type: Transform - pos: -17.5,13.5 - parent: 2 - uid: 12765 components: - type: Transform @@ -90088,13 +90632,6 @@ entities: - type: Transform pos: 17.5,-7.5 parent: 2 -- proto: SignServer - entities: - - uid: 12746 - components: - - type: Transform - pos: -15.5,13.5 - parent: 2 - proto: SignShipDock entities: - uid: 10122 @@ -90139,11 +90676,6 @@ entities: - type: Transform pos: 38.5,6.5 parent: 2 - - uid: 12773 - components: - - type: Transform - pos: -16.5,22.5 - parent: 2 - proto: SignSpace entities: - uid: 10495 @@ -90151,11 +90683,6 @@ entities: - type: Transform pos: 22.5,41.5 parent: 2 - - uid: 12751 - components: - - type: Transform - pos: -28.5,28.5 - parent: 2 - uid: 12753 components: - type: Transform @@ -90241,20 +90768,12 @@ entities: - type: Transform pos: -13.509577,-5.578573 parent: 2 -- proto: SimpleXenoArtifact - entities: - - uid: 15285 - components: - - type: Transform - pos: -23.5,25.5 - parent: 2 - - type: BiasedArtifact - proto: SimpleXenoArtifactItem entities: - - uid: 15286 + - uid: 12908 components: - type: Transform - pos: -24.550694,26.571077 + pos: -29.556358,11.565254 parent: 2 - proto: Sink entities: @@ -90315,6 +90834,12 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-33.5 parent: 2 + - uid: 16588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-2.5 + parent: 2 - proto: SinkWide entities: - uid: 115 @@ -90362,15 +90887,16 @@ entities: rot: 3.141592653589793 rad pos: 22.5,21.5 parent: 2 - - uid: 5204 + - uid: 5143 components: - type: Transform - pos: -10.5,18.5 + pos: -14.5,18.5 parent: 2 - - uid: 5313 + - uid: 5147 components: - type: Transform - pos: -24.5,12.5 + rot: -1.5707963267948966 rad + pos: -12.5,8.5 parent: 2 - uid: 15823 components: @@ -91112,16 +91638,16 @@ entities: parent: 2 - proto: SpacemenFigureSpawner entities: + - uid: 6935 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 - uid: 7846 components: - type: Transform pos: 24.5,36.5 parent: 2 - - uid: 8463 - components: - - type: Transform - pos: -12.5,10.5 - parent: 2 - uid: 14347 components: - type: Transform @@ -91217,6 +91743,11 @@ entities: - type: Transform pos: 1.5,10.5 parent: 2 + - uid: 16564 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 - proto: SpaceVillainArcadeFilled entities: - uid: 13998 @@ -91246,10 +91777,10 @@ entities: parent: 2 - proto: SpawnMobCatBingus entities: - - uid: 16162 + - uid: 16565 components: - type: Transform - pos: -13.5,11.5 + pos: -19.5,25.5 parent: 2 - proto: SpawnMobCatException entities: @@ -91358,10 +91889,10 @@ entities: parent: 2 - proto: SpawnMobSmile entities: - - uid: 13527 + - uid: 16502 components: - type: Transform - pos: -14.5,18.5 + pos: -17.5,16.5 parent: 2 - proto: SpawnMobWalter entities: @@ -91663,15 +92194,15 @@ entities: parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 10496 + - uid: 16527 components: - type: Transform - pos: -20.5,17.5 + pos: -20.5,20.5 parent: 2 - - uid: 10497 + - uid: 16528 components: - type: Transform - pos: -19.5,17.5 + pos: -19.5,20.5 parent: 2 - proto: SpawnPointResearchDirector entities: @@ -91694,25 +92225,20 @@ entities: parent: 2 - proto: SpawnPointScientist entities: - - uid: 9124 + - uid: 16524 components: - type: Transform - pos: -19.5,21.5 + pos: -24.5,21.5 parent: 2 - - uid: 10493 + - uid: 16525 components: - type: Transform - pos: -21.5,17.5 + pos: -23.5,12.5 parent: 2 - - uid: 10494 + - uid: 16526 components: - type: Transform - pos: -25.5,15.5 - parent: 2 - - uid: 10765 - components: - - type: Transform - pos: -14.5,24.5 + pos: -12.5,21.5 parent: 2 - proto: SpawnPointSecurityCadet entities: @@ -91839,10 +92365,28 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-13.5 parent: 2 - - uid: 6665 + - uid: 3705 components: - type: Transform - pos: -15.5,25.5 + rot: -1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,18.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: -27.5,21.5 parent: 2 - uid: 11099 components: @@ -91855,6 +92399,12 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-35.5 parent: 2 + - uid: 13201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,18.5 + parent: 2 - uid: 13485 components: - type: Transform @@ -92084,27 +92634,12 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,31.5 parent: 2 - - uid: 16306 - components: - - type: Transform - pos: -14.5,10.5 - parent: 2 - uid: 16307 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,31.5 parent: 2 - - uid: 16308 - components: - - type: Transform - pos: -13.5,25.5 - parent: 2 - - uid: 16309 - components: - - type: Transform - pos: -14.5,25.5 - parent: 2 - uid: 16311 components: - type: Transform @@ -92123,6 +92658,18 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-22.5 parent: 2 + - uid: 16393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,7.5 + parent: 2 + - uid: 16394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,18.5 + parent: 2 - proto: StairStageDark entities: - uid: 15852 @@ -92452,12 +92999,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-0.5 parent: 2 - - uid: 15678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 2 - proto: StorageCanister entities: - uid: 1399 @@ -92485,6 +93026,14 @@ entities: - type: Transform pos: 19.5,-35.5 parent: 2 + - uid: 16485 + components: + - type: Transform + anchored: True + pos: -23.5,15.5 + parent: 2 + - type: Physics + bodyType: Static - proto: SubstationBasic entities: - uid: 674 @@ -92799,10 +93348,10 @@ entities: parent: 2 - proto: SuitStorageRD entities: - - uid: 5077 + - uid: 5146 components: - type: Transform - pos: -17.5,6.5 + pos: -23.5,24.5 parent: 2 - proto: SuitStorageSalv entities: @@ -93089,32 +93638,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: C20 - QM's Bedroom - - uid: 15086 - components: - - type: MetaData - name: camera (C21 - RD's Office) - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: C21 - RD's Office - - uid: 15087 - components: - - type: MetaData - name: camera (C22 - RD's Bedroom) - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: C22 - RD's Bedroom - uid: 15088 components: - type: MetaData @@ -93216,6 +93739,31 @@ entities: - SurveillanceCameraCommand nameSet: True id: C12 - HoP's Bedroom + - uid: 16541 + components: + - type: MetaData + name: camera (C21 - RD's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C21 - RD's Office + - uid: 16542 + components: + - type: MetaData + name: camera (C22 - RD's Bedroom) + - type: Transform + pos: -24.5,24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C22 - RD's Bedroom - proto: SurveillanceCameraEngineering entities: - uid: 8941 @@ -93976,73 +94524,98 @@ entities: parent: 2 - proto: SurveillanceCameraScience entities: - - uid: 5151 + - uid: 16533 + components: + - type: MetaData + name: camera (N01 - Science Entrance) + - type: Transform + pos: -14.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: N01 - Science Entrance + - uid: 16534 + components: + - type: MetaData + name: camera (N05 - Robotics) + - type: Transform + pos: -14.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: N05 - Robotics + - uid: 16535 components: - type: MetaData name: camera (N02 - Science) - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,17.5 + rot: 1.5707963267948966 rad + pos: -16.5,19.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True id: N02 - Science - - uid: 15127 + - uid: 16536 components: - type: MetaData - name: camera (N01 - Science Entrance) + name: camera (N06 - Surgery) - type: Transform rot: 3.141592653589793 rad - pos: -9.5,18.5 + pos: -12.5,9.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: N01 - Science Entrace - - uid: 15128 + id: N06 - Surgery + - uid: 16537 components: - type: MetaData - name: camera (N03 - Locker Room) + name: camera (N07 - Xenoarchaeology) - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,18.5 + pos: -21.5,12.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: N03 - Locker Room - - uid: 15129 + id: N07 - Xenoarchaeology + - uid: 16538 components: - type: MetaData - name: camera (N08 - Server Room) + name: camera (N08 - Anomaly Lab) - type: Transform - pos: -16.5,10.5 + rot: 3.141592653589793 rad + pos: -23.5,22.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: N08 - Server Room - - uid: 15130 + id: N07 - Anomaly Lab + - uid: 16539 components: - type: MetaData - name: camera (N04 - Robotics) + name: camera (N03 - Science Front) - type: Transform - pos: -27.5,14.5 + rot: 3.141592653589793 rad + pos: -9.5,22.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: N04 - Robotics - - uid: 15131 + id: N03 - Science Front + - uid: 16540 components: - type: MetaData - name: camera (N07 - Anomaly Generator) + name: camera (N04 - R&D) - type: Transform rot: 1.5707963267948966 rad pos: -12.5,24.5 @@ -94051,32 +94624,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: N07 - Anomaly Generator - - uid: 15132 - components: - - type: MetaData - name: camera (N05 - Surgery) - - type: Transform - pos: -24.5,11.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: N05 - Surgery - - uid: 15184 - components: - - type: MetaData - name: camera (N06 - Xenoarchaeology) - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: N06 - Xenoarchaeology + id: N04 - R&D - proto: SurveillanceCameraSecurity entities: - uid: 15125 @@ -94714,12 +95262,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-11.5 parent: 2 - - uid: 8135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,13.5 - parent: 2 - uid: 8136 components: - type: Transform @@ -94737,11 +95279,15 @@ entities: - type: Transform pos: 28.5,-32.5 parent: 2 + - uid: 9124 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 - uid: 9401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,18.5 + pos: -30.5,19.5 parent: 2 - uid: 9618 components: @@ -94791,6 +95337,16 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-1.5 parent: 2 + - uid: 11125 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 - uid: 11371 components: - type: Transform @@ -94825,12 +95381,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,23.5 parent: 2 - - uid: 13471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,14.5 - parent: 2 - uid: 13682 components: - type: Transform @@ -94888,22 +95438,11 @@ entities: - type: Transform pos: 16.5,35.5 parent: 2 - - uid: 14394 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - uid: 15215 components: - type: Transform pos: -64.5,-31.5 parent: 2 - - uid: 16075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,18.5 - parent: 2 - uid: 16345 components: - type: Transform @@ -95198,17 +95737,16 @@ entities: - type: Transform pos: -31.5,-5.5 parent: 2 - - uid: 5303 + - uid: 5254 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,20.5 + rot: -1.5707963267948966 rad + pos: -9.5,21.5 parent: 2 - - uid: 5304 + - uid: 5274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,20.5 + pos: -12.5,7.5 parent: 2 - uid: 5887 components: @@ -95254,6 +95792,12 @@ entities: - type: Transform pos: 4.5,36.5 parent: 2 + - uid: 6605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,8.5 + parent: 2 - uid: 6650 components: - type: Transform @@ -95264,11 +95808,17 @@ entities: - type: Transform pos: -1.5,22.5 parent: 2 - - uid: 6736 + - uid: 6883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,14.5 + rot: -1.5707963267948966 rad + pos: -9.5,20.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,22.5 parent: 2 - uid: 7361 components: @@ -95309,6 +95859,16 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,26.5 parent: 2 + - uid: 10885 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 11243 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 - uid: 11346 components: - type: Transform @@ -95327,6 +95887,11 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-44.5 parent: 2 + - uid: 12786 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 - uid: 12808 components: - type: Transform @@ -95337,12 +95902,22 @@ entities: - type: Transform pos: -30.5,-5.5 parent: 2 + - uid: 13205 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 - uid: 13531 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,7.5 parent: 2 + - uid: 13708 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 - uid: 13725 components: - type: Transform @@ -95394,6 +95969,11 @@ entities: - type: Transform pos: 41.5,26.5 parent: 2 + - uid: 14680 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 - uid: 15846 components: - type: Transform @@ -95426,15 +96006,10 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-12.5 parent: 2 - - uid: 16392 + - uid: 16377 components: - type: Transform - pos: -15.5,20.5 - parent: 2 - - uid: 16396 - components: - - type: Transform - pos: -18.5,23.5 + pos: 9.5,28.5 parent: 2 - proto: TableCounterWood entities: @@ -95929,6 +96504,11 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-9.5 parent: 2 + - uid: 3443 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 - uid: 3505 components: - type: Transform @@ -96057,35 +96637,11 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-16.5 parent: 2 - - uid: 5083 + - uid: 5151 components: - type: Transform - pos: -13.5,10.5 - parent: 2 - - uid: 5129 - components: - - type: Transform - pos: -26.5,11.5 - parent: 2 - - uid: 5131 - components: - - type: Transform - pos: -23.5,14.5 - parent: 2 - - uid: 5247 - components: - - type: Transform - pos: -9.5,22.5 - parent: 2 - - uid: 5248 - components: - - type: Transform - pos: -9.5,21.5 - parent: 2 - - uid: 5249 - components: - - type: Transform - pos: -9.5,20.5 + rot: 3.141592653589793 rad + pos: -25.5,13.5 parent: 2 - uid: 6207 components: @@ -96133,21 +96689,22 @@ entities: - type: Transform pos: -23.5,33.5 parent: 2 + - uid: 6724 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,12.5 + parent: 2 - uid: 7107 components: - type: Transform pos: 39.5,-16.5 parent: 2 - - uid: 7127 - components: - - type: Transform - pos: -12.5,7.5 - parent: 2 - - uid: 7323 - components: - - type: Transform - pos: -13.5,7.5 - parent: 2 - uid: 7383 components: - type: Transform @@ -96223,6 +96780,17 @@ entities: - type: Transform pos: 24.5,32.5 parent: 2 + - uid: 11135 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 11230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 2 - uid: 13503 components: - type: Transform @@ -96238,11 +96806,6 @@ entities: - type: Transform pos: 30.5,-11.5 parent: 2 - - uid: 16163 - components: - - type: Transform - pos: -12.5,10.5 - parent: 2 - uid: 16181 components: - type: Transform @@ -96261,12 +96824,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-19.5 parent: 2 - - uid: 16310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,14.5 - parent: 2 - proto: TableWood entities: - uid: 228 @@ -96668,16 +97225,16 @@ entities: parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 5133 - components: - - type: Transform - pos: -24.462934,14.669847 - parent: 2 - uid: 6205 components: - type: Transform pos: -39.502537,-42.40745 parent: 2 + - uid: 6929 + components: + - type: Transform + pos: -16.398607,13.704446 + parent: 2 - uid: 7469 components: - type: Transform @@ -96961,16 +97518,16 @@ entities: - type: Transform pos: -35.5,-42.5 parent: 2 + - uid: 6739 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 - uid: 15844 components: - type: Transform pos: 43.5,32.5 parent: 2 - - uid: 16389 - components: - - type: Transform - pos: -12.5,18.5 - parent: 2 - proto: UniformPrinter entities: - uid: 1787 @@ -97244,17 +97801,17 @@ entities: parent: 2 - proto: VendingMachineRoboDrobe entities: - - uid: 6735 + - uid: 16162 components: - type: Transform - pos: -27.5,14.5 + pos: -17.5,8.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 5124 + - uid: 11186 components: - type: Transform - pos: -26.5,17.5 + pos: -17.5,10.5 parent: 2 - proto: VendingMachineSalvage entities: @@ -97265,10 +97822,10 @@ entities: parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 5128 + - uid: 372 components: - type: Transform - pos: -21.5,14.5 + pos: -18.5,21.5 parent: 2 - proto: VendingMachineSec entities: @@ -97368,10 +97925,10 @@ entities: parent: 2 - proto: VendingMachineVendomat entities: - - uid: 5126 + - uid: 5297 components: - type: Transform - pos: -27.5,17.5 + pos: -16.5,22.5 parent: 2 - uid: 8100 components: @@ -98649,6 +99206,11 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-16.5 parent: 2 + - uid: 2836 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 - uid: 2957 components: - type: Transform @@ -98721,12 +99283,7 @@ entities: - uid: 3442 components: - type: Transform - pos: -28.5,27.5 - parent: 2 - - uid: 3443 - components: - - type: Transform - pos: -27.5,27.5 + pos: -25.5,25.5 parent: 2 - uid: 3446 components: @@ -98829,6 +99386,12 @@ entities: - type: Transform pos: -26.5,-47.5 parent: 2 + - uid: 3541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,15.5 + parent: 2 - uid: 3542 components: - type: Transform @@ -98864,16 +99427,17 @@ entities: - type: Transform pos: -31.5,-47.5 parent: 2 - - uid: 3560 - components: - - type: Transform - pos: -28.5,28.5 - parent: 2 - uid: 3565 components: - type: Transform pos: -36.5,-47.5 parent: 2 + - uid: 3569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,13.5 + parent: 2 - uid: 3573 components: - type: Transform @@ -98923,6 +99487,11 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-38.5 parent: 2 + - uid: 3666 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 - uid: 3668 components: - type: Transform @@ -99704,28 +100273,12 @@ entities: - type: Transform pos: -24.5,9.5 parent: 2 - - uid: 4685 - components: - - type: Transform - pos: -25.5,10.5 - parent: 2 - - uid: 4686 - components: - - type: Transform - pos: -27.5,10.5 - parent: 2 - uid: 4715 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 2 - - uid: 4718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,7.5 - parent: 2 - uid: 4719 components: - type: Transform @@ -99738,24 +100291,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,9.5 parent: 2 - - uid: 4723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,9.5 - parent: 2 - - uid: 4725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 2 - - uid: 4726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,8.5 - parent: 2 - uid: 4727 components: - type: Transform @@ -99774,18 +100309,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,10.5 parent: 2 - - uid: 4735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,12.5 - parent: 2 - - uid: 4737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,10.5 - parent: 2 - uid: 4742 components: - type: Transform @@ -99838,138 +100361,26 @@ entities: rot: 3.141592653589793 rad pos: -20.5,36.5 parent: 2 - - uid: 5088 + - uid: 5124 components: - type: Transform - pos: -18.5,12.5 + pos: -27.5,10.5 parent: 2 - - uid: 5090 + - uid: 5125 components: - type: Transform - pos: -17.5,13.5 + pos: -15.5,20.5 parent: 2 - - uid: 5096 + - uid: 5138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,11.5 - parent: 2 - - uid: 5097 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,13.5 - parent: 2 - - uid: 5099 - components: - - type: Transform - pos: -22.5,12.5 - parent: 2 - - uid: 5102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,12.5 - parent: 2 - - uid: 5103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,18.5 - parent: 2 - - uid: 5104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,13.5 - parent: 2 - - uid: 5110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,13.5 - parent: 2 - - uid: 5112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,18.5 - parent: 2 - - uid: 5113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,18.5 - parent: 2 - - uid: 5114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,17.5 - parent: 2 - - uid: 5115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,14.5 - parent: 2 - - uid: 5116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,13.5 - parent: 2 - - uid: 5117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,13.5 - parent: 2 - - uid: 5119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,14.5 - parent: 2 - - uid: 5121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,18.5 - parent: 2 - - uid: 5144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,19.5 - parent: 2 - - uid: 5145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,19.5 + rot: 3.141592653589793 rad + pos: -19.5,14.5 parent: 2 - uid: 5148 components: - type: Transform - pos: -16.5,17.5 - parent: 2 - - uid: 5149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 2 - - uid: 5155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,12.5 - parent: 2 - - uid: 5158 - components: - - type: Transform - pos: -17.5,20.5 + pos: -11.5,24.5 parent: 2 - uid: 5166 components: @@ -99987,41 +100398,11 @@ entities: rot: 3.141592653589793 rad pos: -23.5,37.5 parent: 2 - - uid: 5172 - components: - - type: Transform - pos: -22.5,22.5 - parent: 2 - - uid: 5173 - components: - - type: Transform - pos: -17.5,23.5 - parent: 2 - - uid: 5175 - components: - - type: Transform - pos: -17.5,24.5 - parent: 2 - uid: 5178 components: - type: Transform pos: -20.5,27.5 parent: 2 - - uid: 5180 - components: - - type: Transform - pos: -18.5,27.5 - parent: 2 - - uid: 5182 - components: - - type: Transform - pos: -17.5,26.5 - parent: 2 - - uid: 5184 - components: - - type: Transform - pos: -16.5,28.5 - parent: 2 - uid: 5185 components: - type: Transform @@ -100047,41 +100428,11 @@ entities: - type: Transform pos: -11.5,25.5 parent: 2 - - uid: 5196 - components: - - type: Transform - pos: -11.5,24.5 - parent: 2 - - uid: 5201 - components: - - type: Transform - pos: -11.5,18.5 - parent: 2 - - uid: 5205 - components: - - type: Transform - pos: -12.5,22.5 - parent: 2 - - uid: 5206 - components: - - type: Transform - pos: -10.5,15.5 - parent: 2 - uid: 5208 components: - type: Transform pos: -10.5,23.5 parent: 2 - - uid: 5211 - components: - - type: Transform - pos: -9.5,15.5 - parent: 2 - - uid: 5213 - components: - - type: Transform - pos: -8.5,18.5 - parent: 2 - uid: 5214 components: - type: Transform @@ -100102,10 +100453,10 @@ entities: - type: Transform pos: 4.5,31.5 parent: 2 - - uid: 5250 + - uid: 5249 components: - type: Transform - pos: -11.5,19.5 + pos: -30.5,14.5 parent: 2 - uid: 5259 components: @@ -100119,34 +100470,47 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,27.5 parent: 2 - - uid: 5262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,23.5 - parent: 2 - - uid: 5266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,20.5 - parent: 2 - uid: 5267 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,35.5 parent: 2 - - uid: 5268 + - uid: 5269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,20.5 + pos: -26.5,16.5 parent: 2 - - uid: 5312 + - uid: 5272 components: - type: Transform - pos: -8.5,19.5 + pos: -26.5,10.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + pos: -28.5,24.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: -22.5,26.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: -22.5,23.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,26.5 parent: 2 - uid: 5331 components: @@ -100673,6 +101037,16 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,40.5 parent: 2 + - uid: 6725 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 - uid: 6782 components: - type: Transform @@ -100693,6 +101067,36 @@ entities: - type: Transform pos: -0.5,27.5 parent: 2 + - uid: 6850 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 - uid: 7046 components: - type: Transform @@ -101527,6 +101931,16 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-27.5 parent: 2 + - uid: 10493 + components: + - type: Transform + pos: -32.5,24.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + pos: -23.5,23.5 + parent: 2 - uid: 10537 components: - type: Transform @@ -101552,6 +101966,57 @@ entities: - type: Transform pos: -45.5,-14.5 parent: 2 + - uid: 11127 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,12.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 11154 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 11245 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 - uid: 11793 components: - type: Transform @@ -101637,6 +102102,12 @@ entities: rot: 3.141592653589793 rad pos: 42.5,16.5 parent: 2 + - uid: 13579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,14.5 + parent: 2 - uid: 13616 components: - type: Transform @@ -101676,6 +102147,11 @@ entities: - type: Transform pos: 15.5,-25.5 parent: 2 + - uid: 14010 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 - uid: 14190 components: - type: Transform @@ -101712,6 +102188,11 @@ entities: rot: 3.141592653589793 rad pos: -21.5,57.5 parent: 2 + - uid: 14394 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 - uid: 14426 components: - type: Transform @@ -101754,11 +102235,36 @@ entities: - type: Transform pos: 20.5,-38.5 parent: 2 + - uid: 14627 + components: + - type: Transform + pos: -24.5,23.5 + parent: 2 + - uid: 14718 + components: + - type: Transform + pos: -12.5,18.5 + parent: 2 + - uid: 14797 + components: + - type: Transform + pos: -15.5,27.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 - uid: 14890 components: - type: Transform pos: 48.5,-3.5 parent: 2 + - uid: 15128 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 - uid: 15349 components: - type: Transform @@ -101811,12 +102317,44 @@ entities: - type: Transform pos: 49.5,-7.5 parent: 2 + - uid: 15538 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + pos: -27.5,24.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,27.5 + parent: 2 + - uid: 15896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,23.5 + parent: 2 - uid: 15924 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-35.5 parent: 2 + - uid: 16004 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 + - uid: 16018 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 - uid: 16034 components: - type: Transform @@ -101857,10 +102395,48 @@ entities: - type: Transform pos: -19.5,-49.5 parent: 2 - - uid: 16370 + - uid: 16103 components: - type: Transform - pos: -16.5,19.5 + rot: 1.5707963267948966 rad + pos: -15.5,9.5 + parent: 2 + - uid: 16164 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 16165 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,11.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 16390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,17.5 parent: 2 - proto: WallReinforcedRust entities: @@ -102961,16 +103537,6 @@ entities: - type: Transform pos: -26.5,34.5 parent: 2 - - uid: 2064 - components: - - type: Transform - pos: -28.5,26.5 - parent: 2 - - uid: 2067 - components: - - type: Transform - pos: -26.5,27.5 - parent: 2 - uid: 2069 components: - type: Transform @@ -103737,11 +104303,6 @@ entities: - type: Transform pos: -27.5,-0.5 parent: 2 - - uid: 3481 - components: - - type: Transform - pos: -13.5,6.5 - parent: 2 - uid: 3485 components: - type: Transform @@ -103782,11 +104343,6 @@ entities: - type: Transform pos: -24.5,6.5 parent: 2 - - uid: 3521 - components: - - type: Transform - pos: -26.5,10.5 - parent: 2 - uid: 3526 components: - type: Transform @@ -103812,16 +104368,6 @@ entities: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 3539 - components: - - type: Transform - pos: -18.5,10.5 - parent: 2 - - uid: 3541 - components: - - type: Transform - pos: -16.5,9.5 - parent: 2 - uid: 3544 components: - type: Transform @@ -103837,11 +104383,6 @@ entities: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 3549 - components: - - type: Transform - pos: -15.5,11.5 - parent: 2 - uid: 3552 components: - type: Transform @@ -103857,106 +104398,16 @@ entities: - type: Transform pos: -25.5,-6.5 parent: 2 - - uid: 3563 - components: - - type: Transform - pos: -18.5,11.5 - parent: 2 - - uid: 3564 - components: - - type: Transform - pos: -18.5,13.5 - parent: 2 - - uid: 3568 - components: - - type: Transform - pos: -15.5,13.5 - parent: 2 - - uid: 3569 - components: - - type: Transform - pos: -21.5,13.5 - parent: 2 - - uid: 3571 - components: - - type: Transform - pos: -23.5,18.5 - parent: 2 - - uid: 3581 - components: - - type: Transform - pos: -22.5,18.5 - parent: 2 - - uid: 3583 - components: - - type: Transform - pos: -27.5,13.5 - parent: 2 - - uid: 3585 - components: - - type: Transform - pos: -22.5,13.5 - parent: 2 - - uid: 3587 - components: - - type: Transform - pos: -28.5,17.5 - parent: 2 - - uid: 3599 - components: - - type: Transform - pos: -17.5,22.5 - parent: 2 - - uid: 3602 - components: - - type: Transform - pos: -16.5,22.5 - parent: 2 - - uid: 3603 - components: - - type: Transform - pos: -8.5,15.5 - parent: 2 - uid: 3609 components: - type: Transform pos: -14.5,28.5 parent: 2 - - uid: 3611 - components: - - type: Transform - pos: -21.5,23.5 - parent: 2 - - uid: 3613 - components: - - type: Transform - pos: -22.5,20.5 - parent: 2 - - uid: 3615 - components: - - type: Transform - pos: -22.5,23.5 - parent: 2 - - uid: 3618 - components: - - type: Transform - pos: -17.5,27.5 - parent: 2 - - uid: 3621 - components: - - type: Transform - pos: -17.5,25.5 - parent: 2 - uid: 3629 components: - type: Transform pos: -11.5,23.5 parent: 2 - - uid: 3666 - components: - - type: Transform - pos: -11.5,22.5 - parent: 2 - uid: 3669 components: - type: Transform @@ -103967,11 +104418,6 @@ entities: - type: Transform pos: 4.5,29.5 parent: 2 - - uid: 3675 - components: - - type: Transform - pos: -11.5,15.5 - parent: 2 - uid: 3676 components: - type: Transform @@ -103980,28 +104426,13 @@ entities: - uid: 3680 components: - type: Transform - pos: -10.5,19.5 + pos: -15.5,19.5 parent: 2 - uid: 3683 components: - type: Transform pos: -25.5,27.5 parent: 2 - - uid: 3686 - components: - - type: Transform - pos: -24.5,23.5 - parent: 2 - - uid: 3705 - components: - - type: Transform - pos: -24.5,20.5 - parent: 2 - - uid: 3710 - components: - - type: Transform - pos: -9.5,19.5 - parent: 2 - uid: 3711 components: - type: Transform @@ -104815,6 +105246,11 @@ entities: - type: Transform pos: 47.5,18.5 parent: 2 + - uid: 4566 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 - uid: 4576 components: - type: Transform @@ -104992,6 +105428,11 @@ entities: - type: Transform pos: 38.5,-4.5 parent: 2 + - uid: 5123 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 - uid: 5150 components: - type: Transform @@ -105080,6 +105521,21 @@ entities: - type: Transform pos: 8.5,41.5 parent: 2 + - uid: 5266 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + pos: -26.5,24.5 + parent: 2 - uid: 5563 components: - type: Transform @@ -105096,6 +105552,56 @@ entities: - type: Transform pos: 12.5,-20.5 parent: 2 + - uid: 6729 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 - uid: 7096 components: - type: Transform @@ -105218,6 +105724,12 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,55.5 parent: 2 + - uid: 9397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 2 - uid: 10474 components: - type: Transform @@ -105238,6 +105750,51 @@ entities: - type: Transform pos: 22.5,-14.5 parent: 2 + - uid: 11103 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 11123 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 11124 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 11130 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: -31.5,22.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - uid: 11242 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 - uid: 11862 components: - type: Transform @@ -105275,11 +105832,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-16.5 parent: 2 - - uid: 12902 - components: - - type: Transform - pos: -18.5,19.5 - parent: 2 - uid: 13279 components: - type: Transform @@ -105464,15 +106016,25 @@ entities: - type: Transform pos: 20.5,-40.5 parent: 2 - - uid: 14830 + - uid: 14682 components: - type: Transform - pos: -26.5,18.5 + pos: -18.5,22.5 parent: 2 - - uid: 15134 + - uid: 14832 components: - type: Transform - pos: -16.5,18.5 + pos: -15.5,23.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: -18.5,27.5 parent: 2 - uid: 15251 components: @@ -105531,6 +106093,16 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-9.5 parent: 2 + - uid: 15539 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 15898 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 - uid: 15919 components: - type: Transform @@ -105549,6 +106121,11 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-36.5 parent: 2 + - uid: 15976 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 - uid: 16033 components: - type: Transform @@ -105569,6 +106146,21 @@ entities: - type: Transform pos: -10.5,59.5 parent: 2 + - uid: 16309 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 16392 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 + - uid: 16395 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 - proto: WallSolid entities: - uid: 6 @@ -106285,6 +106877,11 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-40.5 parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 - uid: 2808 components: - type: Transform @@ -107254,17 +107851,16 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 - - uid: 4721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 2 - uid: 4848 components: - type: Transform pos: -27.5,-14.5 parent: 2 + - uid: 5139 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 - uid: 5168 components: - type: Transform @@ -107287,12 +107883,6 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,13.5 parent: 2 - - uid: 5314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,23.5 - parent: 2 - uid: 5883 components: - type: Transform @@ -107893,6 +108483,11 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-32.5 parent: 2 + - uid: 11238 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 - uid: 11354 components: - type: Transform @@ -107976,6 +108571,26 @@ entities: - type: Transform pos: -23.5,-13.5 parent: 2 + - uid: 14719 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 14870 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 - uid: 15926 components: - type: Transform @@ -109524,12 +110139,6 @@ entities: - type: Transform pos: 42.5,21.5 parent: 2 - - uid: 9397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-1.5 - parent: 2 - uid: 9656 components: - type: Transform @@ -109981,11 +110590,6 @@ entities: - type: Transform pos: -50.5,-13.5 parent: 2 - - uid: 14175 - components: - - type: Transform - pos: -9.5,14.5 - parent: 2 - proto: WaterTankFull entities: - uid: 2971 @@ -110064,6 +110668,11 @@ entities: - type: Transform pos: -11.5,-34.5 parent: 2 + - uid: 5262 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 - uid: 9404 components: - type: Transform @@ -110144,6 +110753,11 @@ entities: - type: Transform pos: -3.6076689,19.599415 parent: 2 + - uid: 8135 + components: + - type: Transform + pos: -13.929857,13.860696 + parent: 2 - proto: WelderIndustrialAdvanced entities: - uid: 9084 @@ -110225,6 +110839,11 @@ entities: - type: Transform pos: 49.5,30.5 parent: 2 + - uid: 16464 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 - proto: WetFloorSign entities: - uid: 421 @@ -110251,12 +110870,6 @@ entities: parent: 2 - proto: Windoor entities: - - uid: 4263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,29.5 - parent: 2 - uid: 12763 components: - type: Transform @@ -110305,6 +110918,12 @@ entities: rot: 3.141592653589793 rad pos: 23.5,38.5 parent: 2 + - uid: 16384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 2 - proto: WindoorHydroponicsLocked entities: - uid: 6727 @@ -110351,12 +110970,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 5257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,20.5 - parent: 2 - uid: 16149 components: - type: Transform @@ -110494,33 +111107,47 @@ entities: parent: 2 - proto: WindoorSecureScienceLocked entities: + - uid: 4296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,18.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,18.5 + parent: 2 - uid: 5258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,20.5 + rot: 3.141592653589793 rad + pos: -25.5,18.5 parent: 2 - - uid: 7789 + - uid: 6846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,24.5 + rot: 3.141592653589793 rad + pos: -13.5,23.5 parent: 2 - - uid: 7790 + - uid: 11146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,24.5 + rot: 3.141592653589793 rad + pos: -14.5,23.5 parent: 2 - - uid: 9961 + - uid: 14469 components: - type: Transform - pos: -16.5,26.5 + rot: 3.141592653589793 rad + pos: -11.5,19.5 parent: 2 - - uid: 9971 + - uid: 15541 components: - type: Transform - pos: -12.5,26.5 + rot: 3.141592653589793 rad + pos: -10.5,19.5 parent: 2 - proto: WindoorSecureSecurityLawyerLocked entities: @@ -110733,11 +111360,6 @@ entities: - type: Transform pos: -4.5,21.5 parent: 2 - - uid: 14238 - components: - - type: Transform - pos: 9.5,28.5 - parent: 2 - uid: 15433 components: - type: Transform @@ -110818,6 +111440,11 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,8.5 parent: 2 + - uid: 11118 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 - proto: WindowFrostedDirectional entities: - uid: 161 @@ -110988,6 +111615,12 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-32.5 parent: 2 + - uid: 3585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,22.5 + parent: 2 - uid: 3901 components: - type: Transform @@ -111030,6 +111663,12 @@ entities: rot: 3.141592653589793 rad pos: 30.5,22.5 parent: 2 + - uid: 4217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,22.5 + parent: 2 - uid: 4520 components: - type: Transform @@ -111134,22 +111773,17 @@ entities: - type: Transform pos: -35.5,-7.5 parent: 2 - - uid: 5252 + - uid: 5149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,22.5 + rot: 3.141592653589793 rad + pos: -28.5,18.5 parent: 2 - - uid: 5254 + - uid: 5302 components: - type: Transform - pos: -9.5,21.5 - parent: 2 - - uid: 5255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,21.5 + rot: -1.5707963267948966 rad + pos: -27.5,18.5 parent: 2 - uid: 5321 components: @@ -111239,30 +111873,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,30.5 parent: 2 - - uid: 7768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,23.5 - parent: 2 - - uid: 7769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,25.5 - parent: 2 - - uid: 7788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,25.5 - parent: 2 - - uid: 7792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,23.5 - parent: 2 - uid: 7844 components: - type: Transform @@ -111298,16 +111908,29 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-0.5 parent: 2 - - uid: 11157 + - uid: 10606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,17.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,18.5 + parent: 2 + - uid: 11183 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,19.5 + pos: -24.5,18.5 parent: 2 - - uid: 11207 + - uid: 11246 components: - type: Transform - pos: -15.5,17.5 + rot: 3.141592653589793 rad + pos: -26.5,18.5 parent: 2 - uid: 12915 components: @@ -111350,27 +111973,11 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-15.5 parent: 2 - - uid: 15559 - components: - - type: Transform - pos: -15.5,26.5 - parent: 2 - - uid: 15561 - components: - - type: Transform - pos: -13.5,26.5 - parent: 2 - - uid: 16165 + - uid: 14468 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,10.5 - parent: 2 - - uid: 16166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,10.5 + pos: -9.5,19.5 parent: 2 - uid: 16179 components: @@ -111390,11 +111997,17 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-29.5 parent: 2 - - uid: 16302 + - uid: 16383 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,10.5 + pos: -25.5,17.5 + parent: 2 + - uid: 16501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,26.5 parent: 2 - proto: WoodblockInstrument entities: @@ -111452,4 +112065,14 @@ entities: - type: Transform pos: 14.655553,27.842356 parent: 2 + - uid: 15830 + components: + - type: Transform + pos: -25.538683,22.590054 + parent: 2 + - uid: 16486 + components: + - type: Transform + pos: -23.765726,15.140665 + parent: 2 ... From c956f26d9f0b5abb804a5acef4f171810665e033 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 23 Feb 2025 12:35:23 +0100 Subject: [PATCH 134/155] Update submodule (#35411) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 7104a4f459..76b46479b6 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 7104a4f4594149f5c09aeefc34275b1cbac4e297 +Subproject commit 76b46479b6a1ad1d960fba7c8df878469590d1ea From 17218b72777aef63cc6533340d686fc3fd391455 Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Sun, 23 Feb 2025 23:43:15 +1200 Subject: [PATCH 135/155] Lattice tiles footsteps now sound like catwalks (#35421) change lattice from FootstepPlating to FootstepCatwalk --- Resources/Prototypes/Tiles/plating.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Tiles/plating.yml b/Resources/Prototypes/Tiles/plating.yml index 9627ab21f2..1f6579c47e 100644 --- a/Resources/Prototypes/Tiles/plating.yml +++ b/Resources/Prototypes/Tiles/plating.yml @@ -67,7 +67,7 @@ deconstructTools: [ Cutting ] weather: true footstepSounds: - collection: FootstepPlating + collection: FootstepCatwalk friction: 0.3 isSpace: true itemDrop: PartRodMetal1 From 1d210b52e06c8b405be1e90ec8e5f2948bfdfe7e Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 23 Feb 2025 11:44:22 +0000 Subject: [PATCH 136/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 0c044cb2eb..a295636617 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: SaphireLattice - changes: - - message: Minibomb is now explosion resistant and will start counting down if damaged - by a C4 - type: Tweak - id: 7492 - time: '2024-10-07T22:42:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32429 - author: shampunj changes: - message: When curtains are destroyed, only 1 cloth drops out @@ -3899,3 +3891,10 @@ id: 7991 time: '2025-02-23T02:01:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35413 +- author: K-Dynamic + changes: + - message: Lattice tiles footsteps now sound like catwalks. + type: Tweak + id: 7992 + time: '2025-02-23T11:43:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35421 From fabfdd06736ad54093c60d3114b083ebc7ae49fd Mon Sep 17 00:00:00 2001 From: pathetic meowmeow Date: Sun, 23 Feb 2025 07:14:56 -0500 Subject: [PATCH 137/155] Refactor audio system to send collection IDs over the network (#33610) --- Content.Client/Audio/ClientGlobalSoundSystem.cs | 6 +++--- .../Audio/ContentAudioSystem.LobbyMusic.cs | 2 +- .../Disposal/Systems/DisposalUnitSystem.cs | 2 +- .../GameTicking/Managers/ClientGameTicker.cs | 3 ++- .../Visualizers/PoweredLightVisualizerSystem.cs | 2 +- .../Trigger/TimerTriggerVisualizerSystem.cs | 2 +- Content.Server/Audio/ServerGlobalSoundSystem.cs | 14 +++++++------- Content.Server/Cargo/Systems/CargoSystem.Orders.cs | 2 +- .../Cargo/Systems/CargoSystem.Telepad.cs | 2 +- Content.Server/Chat/Systems/ChatSystem.cs | 2 +- Content.Server/GameTicking/GameTicker.RoundFlow.cs | 2 +- .../Light/EntitySystems/HandheldLightSystem.cs | 4 ++-- Content.Server/Nuke/NukeSystem.cs | 12 ++++++------ .../Nutrition/EntitySystems/CreamPieSystem.cs | 2 +- Content.Server/Radiation/Systems/GeigerSystem.cs | 2 +- .../Expeditions/SalvageExpeditionComponent.cs | 2 +- .../Salvage/SalvageSystem.Expeditions.cs | 3 +-- Content.Server/Salvage/SalvageSystem.Runner.cs | 2 +- Content.Shared/Audio/SharedGlobalSoundSystem.cs | 14 +++++++------- Content.Shared/GameTicking/SharedGameTicker.cs | 5 +++-- Content.Shared/Sound/SharedEmitSoundSystem.cs | 2 +- 21 files changed, 44 insertions(+), 43 deletions(-) diff --git a/Content.Client/Audio/ClientGlobalSoundSystem.cs b/Content.Client/Audio/ClientGlobalSoundSystem.cs index 50c3971d95..882ab1be6d 100644 --- a/Content.Client/Audio/ClientGlobalSoundSystem.cs +++ b/Content.Client/Audio/ClientGlobalSoundSystem.cs @@ -66,7 +66,7 @@ public sealed class ClientGlobalSoundSystem : SharedGlobalSoundSystem { if(!_adminAudioEnabled) return; - var stream = _audio.PlayGlobal(soundEvent.Filename, Filter.Local(), false, soundEvent.AudioParams); + var stream = _audio.PlayGlobal(soundEvent.Specifier, Filter.Local(), false, soundEvent.AudioParams); _adminAudio.Add(stream?.Entity); } @@ -75,13 +75,13 @@ public sealed class ClientGlobalSoundSystem : SharedGlobalSoundSystem // Either the cvar is disabled or it's already playing if(!_eventAudioEnabled || _eventAudio.ContainsKey(soundEvent.Type)) return; - var stream = _audio.PlayGlobal(soundEvent.Filename, Filter.Local(), false, soundEvent.AudioParams); + var stream = _audio.PlayGlobal(soundEvent.Specifier, Filter.Local(), false, soundEvent.AudioParams); _eventAudio.Add(soundEvent.Type, stream?.Entity); } private void PlayGameSound(GameGlobalSoundEvent soundEvent) { - _audio.PlayGlobal(soundEvent.Filename, Filter.Local(), false, soundEvent.AudioParams); + _audio.PlayGlobal(soundEvent.Specifier, Filter.Local(), false, soundEvent.AudioParams); } private void StopStationEventMusic(StopStationEventMusic soundEvent) diff --git a/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs b/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs index 7d7d77f51a..fda2c0062c 100644 --- a/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs +++ b/Content.Client/Audio/ContentAudioSystem.LobbyMusic.cs @@ -218,7 +218,7 @@ public sealed partial class ContentAudioSystem return; var file = _gameTicker.RestartSound; - if (string.IsNullOrEmpty(file)) + if (ResolvedSoundSpecifier.IsNullOrEmpty(file)) { return; } diff --git a/Content.Client/Disposal/Systems/DisposalUnitSystem.cs b/Content.Client/Disposal/Systems/DisposalUnitSystem.cs index 2fe56fcce9..da548c1e54 100644 --- a/Content.Client/Disposal/Systems/DisposalUnitSystem.cs +++ b/Content.Client/Disposal/Systems/DisposalUnitSystem.cs @@ -144,7 +144,7 @@ public sealed class DisposalUnitSystem : SharedDisposalUnitSystem { KeyFrames = { - new AnimationTrackPlaySound.KeyFrame(_audioSystem.GetSound(unit.FlushSound), 0) + new AnimationTrackPlaySound.KeyFrame(_audioSystem.ResolveSound(unit.FlushSound), 0) } }); } diff --git a/Content.Client/GameTicking/Managers/ClientGameTicker.cs b/Content.Client/GameTicking/Managers/ClientGameTicker.cs index 3d5775a3c5..170b24c02a 100644 --- a/Content.Client/GameTicking/Managers/ClientGameTicker.cs +++ b/Content.Client/GameTicking/Managers/ClientGameTicker.cs @@ -10,6 +10,7 @@ using Robust.Client.Graphics; using Robust.Client.State; using Robust.Client.UserInterface; using Robust.Shared.Prototypes; +using Robust.Shared.Audio; namespace Content.Client.GameTicking.Managers { @@ -26,7 +27,7 @@ namespace Content.Client.GameTicking.Managers [ViewVariables] public bool AreWeReady { get; private set; } [ViewVariables] public bool IsGameStarted { get; private set; } - [ViewVariables] public string? RestartSound { get; private set; } + [ViewVariables] public ResolvedSoundSpecifier? RestartSound { get; private set; } [ViewVariables] public string? LobbyBackground { get; private set; } [ViewVariables] public bool DisallowedLateJoin { get; private set; } [ViewVariables] public string? ServerInfoBlob { get; private set; } diff --git a/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs b/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs index 2dc7f5a822..ee81641d26 100644 --- a/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs +++ b/Content.Client/Light/Visualizers/PoweredLightVisualizerSystem.cs @@ -122,7 +122,7 @@ public sealed class PoweredLightVisualizerSystem : VisualizerSystem pi.PlayerOOCName).ToArray(); - var sound = RoundEndSoundCollection == null ? null : _audio.GetSound(new SoundCollectionSpecifier(RoundEndSoundCollection)); + var sound = RoundEndSoundCollection == null ? null : _audio.ResolveSound(new SoundCollectionSpecifier(RoundEndSoundCollection)); var roundEndMessageEvent = new RoundEndMessageEvent( gamemodeTitle, diff --git a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs index a1977d5a46..2c8d18539f 100644 --- a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs +++ b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs @@ -202,7 +202,7 @@ namespace Content.Server.Light.EntitySystems if (!_powerCell.TryGetBatteryFromSlot(uid, out var battery) && !TryComp(uid, out battery)) { - _audio.PlayPvs(_audio.GetSound(component.TurnOnFailSound), uid); + _audio.PlayPvs(_audio.ResolveSound(component.TurnOnFailSound), uid); _popup.PopupEntity(Loc.GetString("handheld-light-component-cell-missing-message"), uid, user); return false; } @@ -212,7 +212,7 @@ namespace Content.Server.Light.EntitySystems // Simple enough. if (component.Wattage > battery.CurrentCharge) { - _audio.PlayPvs(_audio.GetSound(component.TurnOnFailSound), uid); + _audio.PlayPvs(_audio.ResolveSound(component.TurnOnFailSound), uid); _popup.PopupEntity(Loc.GetString("handheld-light-component-cell-dead-message"), uid, user); return false; } diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs index 84118931b1..aa1fe32401 100644 --- a/Content.Server/Nuke/NukeSystem.cs +++ b/Content.Server/Nuke/NukeSystem.cs @@ -49,7 +49,7 @@ public sealed class NukeSystem : EntitySystem /// Used to calculate when the nuke song should start playing for maximum kino with the nuke sfx /// private float _nukeSongLength; - private string _selectedNukeSong = String.Empty; + private ResolvedSoundSpecifier _selectedNukeSong = String.Empty; /// /// Time to leave between the nuke song and the nuke alarm playing. @@ -302,7 +302,7 @@ public sealed class NukeSystem : EntitySystem // Start playing the nuke event song so that it ends a couple seconds before the alert sound // should play - if (nuke.RemainingTime <= _nukeSongLength + nuke.AlertSoundTime + NukeSongBuffer && !nuke.PlayedNukeSong && !string.IsNullOrEmpty(_selectedNukeSong)) + if (nuke.RemainingTime <= _nukeSongLength + nuke.AlertSoundTime + NukeSongBuffer && !nuke.PlayedNukeSong && !ResolvedSoundSpecifier.IsNullOrEmpty(_selectedNukeSong)) { _sound.DispatchStationEventMusic(uid, _selectedNukeSong, StationEventMusicType.Nuke); nuke.PlayedNukeSong = true; @@ -311,7 +311,7 @@ public sealed class NukeSystem : EntitySystem // play alert sound if time is running out if (nuke.RemainingTime <= nuke.AlertSoundTime && !nuke.PlayedAlertSound) { - _sound.PlayGlobalOnStation(uid, _audio.GetSound(nuke.AlertSound), new AudioParams{Volume = -5f}); + _sound.PlayGlobalOnStation(uid, _audio.ResolveSound(nuke.AlertSound), new AudioParams{Volume = -5f}); _sound.StopStationEventMusic(uid, StationEventMusicType.Nuke); nuke.PlayedAlertSound = true; UpdateAppearance(uid, nuke); @@ -469,7 +469,7 @@ public sealed class NukeSystem : EntitySystem var posText = $"({x}, {y})"; // We are collapsing the randomness here, otherwise we would get separate random song picks for checking duration and when actually playing the song afterwards - _selectedNukeSong = _audio.GetSound(component.ArmMusic); + _selectedNukeSong = _audio.ResolveSound(component.ArmMusic); // warn a crew var announcement = Loc.GetString("nuke-component-announcement-armed", @@ -478,7 +478,7 @@ public sealed class NukeSystem : EntitySystem var sender = Loc.GetString("nuke-component-announcement-sender"); _chatSystem.DispatchStationAnnouncement(stationUid ?? uid, announcement, sender, false, null, Color.Red); - _sound.PlayGlobalOnStation(uid, _audio.GetSound(component.ArmSound)); + _sound.PlayGlobalOnStation(uid, _audio.ResolveSound(component.ArmSound)); _nukeSongLength = (float) _audio.GetAudioLength(_selectedNukeSong).TotalSeconds; // turn on the spinny light @@ -519,7 +519,7 @@ public sealed class NukeSystem : EntitySystem _chatSystem.DispatchStationAnnouncement(uid, announcement, sender, false); component.PlayedNukeSong = false; - _sound.PlayGlobalOnStation(uid, _audio.GetSound(component.DisarmSound)); + _sound.PlayGlobalOnStation(uid, _audio.ResolveSound(component.DisarmSound)); _sound.StopStationEventMusic(uid, StationEventMusicType.Nuke); // reset nuke remaining time to either itself or the minimum time, whichever is higher diff --git a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs index b107e47c79..cdcfcc1f21 100644 --- a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs @@ -43,7 +43,7 @@ namespace Content.Server.Nutrition.EntitySystems { // The entity is deleted, so play the sound at its position rather than parenting var coordinates = Transform(uid).Coordinates; - _audio.PlayPvs(_audio.GetSound(creamPie.Sound), coordinates, AudioParams.Default.WithVariation(0.125f)); + _audio.PlayPvs(_audio.ResolveSound(creamPie.Sound), coordinates, AudioParams.Default.WithVariation(0.125f)); if (EntityManager.TryGetComponent(uid, out FoodComponent? foodComp)) { diff --git a/Content.Server/Radiation/Systems/GeigerSystem.cs b/Content.Server/Radiation/Systems/GeigerSystem.cs index a0bc5dd739..9b6ed31781 100644 --- a/Content.Server/Radiation/Systems/GeigerSystem.cs +++ b/Content.Server/Radiation/Systems/GeigerSystem.cs @@ -161,7 +161,7 @@ public sealed class GeigerSystem : SharedGeigerSystem if (!_player.TryGetSessionByEntity(component.User.Value, out var session)) return; - var sound = _audio.GetSound(sounds); + var sound = _audio.ResolveSound(sounds); var param = sounds.Params.WithLoop(true).WithVolume(-4f); component.Stream = _audio.PlayGlobal(sound, session, param)?.Entity; diff --git a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs index ff3c8176fd..2fa54fd11f 100644 --- a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs @@ -56,5 +56,5 @@ public sealed partial class SalvageExpeditionComponent : SharedSalvageExpedition /// Song selected on MapInit so we can predict the audio countdown properly. /// [DataField] - public SoundPathSpecifier SelectedSong; + public ResolvedSoundSpecifier SelectedSong; } diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index 923880169d..65583b38f5 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -69,8 +69,7 @@ public sealed partial class SalvageSystem private void OnExpeditionMapInit(EntityUid uid, SalvageExpeditionComponent component, MapInitEvent args) { - var selectedFile = _audio.GetSound(component.Sound); - component.SelectedSong = new SoundPathSpecifier(selectedFile, component.Sound.Params); + component.SelectedSong = _audio.ResolveSound(component.Sound); } private void OnExpeditionShutdown(EntityUid uid, SalvageExpeditionComponent component, ComponentShutdown args) diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index 921d966709..98cff49f99 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -144,7 +144,7 @@ public sealed partial class SalvageSystem while (query.MoveNext(out var uid, out var comp)) { var remaining = comp.EndTime - _timing.CurTime; - var audioLength = _audio.GetAudioLength(comp.SelectedSong.Path.ToString()); + var audioLength = _audio.GetAudioLength(comp.SelectedSong); if (comp.Stage < ExpeditionStage.FinalCountdown && remaining < TimeSpan.FromSeconds(45)) { diff --git a/Content.Shared/Audio/SharedGlobalSoundSystem.cs b/Content.Shared/Audio/SharedGlobalSoundSystem.cs index 7ad07c21aa..b2ed5dc90d 100644 --- a/Content.Shared/Audio/SharedGlobalSoundSystem.cs +++ b/Content.Shared/Audio/SharedGlobalSoundSystem.cs @@ -14,11 +14,11 @@ public abstract class SharedGlobalSoundSystem : EntitySystem [Serializable, NetSerializable] public class GlobalSoundEvent : EntityEventArgs { - public string Filename; + public ResolvedSoundSpecifier Specifier; public AudioParams? AudioParams; - public GlobalSoundEvent(string filename, AudioParams? audioParams = null) + public GlobalSoundEvent(ResolvedSoundSpecifier specifier, AudioParams? audioParams = null) { - Filename = filename; + Specifier = specifier; AudioParams = audioParams; } } @@ -29,7 +29,7 @@ public class GlobalSoundEvent : EntityEventArgs [Serializable, NetSerializable] public sealed class AdminSoundEvent : GlobalSoundEvent { - public AdminSoundEvent(string filename, AudioParams? audioParams = null) : base(filename, audioParams){} + public AdminSoundEvent(ResolvedSoundSpecifier specifier, AudioParams? audioParams = null) : base(specifier, audioParams){} } /// @@ -38,7 +38,7 @@ public sealed class AdminSoundEvent : GlobalSoundEvent [Serializable, NetSerializable] public sealed class GameGlobalSoundEvent : GlobalSoundEvent { - public GameGlobalSoundEvent(string filename, AudioParams? audioParams = null) : base(filename, audioParams){} + public GameGlobalSoundEvent(ResolvedSoundSpecifier specifier, AudioParams? audioParams = null) : base(specifier, audioParams){} } public enum StationEventMusicType : byte @@ -54,8 +54,8 @@ public sealed class StationEventMusicEvent : GlobalSoundEvent { public StationEventMusicType Type; - public StationEventMusicEvent(string filename, StationEventMusicType type, AudioParams? audioParams = null) : base( - filename, audioParams) + public StationEventMusicEvent(ResolvedSoundSpecifier specifier, StationEventMusicType type, AudioParams? audioParams = null) : base( + specifier, audioParams) { Type = type; } diff --git a/Content.Shared/GameTicking/SharedGameTicker.cs b/Content.Shared/GameTicking/SharedGameTicker.cs index 015889b152..050d4826cb 100644 --- a/Content.Shared/GameTicking/SharedGameTicker.cs +++ b/Content.Shared/GameTicking/SharedGameTicker.cs @@ -6,6 +6,7 @@ using Robust.Shared.Serialization; using Robust.Shared.Serialization.Markdown.Mapping; using Robust.Shared.Serialization.Markdown.Value; using Robust.Shared.Timing; +using Robust.Shared.Audio; namespace Content.Shared.GameTicking { @@ -196,7 +197,7 @@ namespace Content.Shared.GameTicking /// /// Sound gets networked due to how entity lifecycle works between client / server and to avoid clipping. /// - public string? RestartSound; + public ResolvedSoundSpecifier? RestartSound; public RoundEndMessageEvent( string gamemodeTitle, @@ -205,7 +206,7 @@ namespace Content.Shared.GameTicking int roundId, int playerCount, RoundEndPlayerInfo[] allPlayersEndInfo, - string? restartSound) + ResolvedSoundSpecifier? restartSound) { GamemodeTitle = gamemodeTitle; RoundEndText = roundEndText; diff --git a/Content.Shared/Sound/SharedEmitSoundSystem.cs b/Content.Shared/Sound/SharedEmitSoundSystem.cs index 30744b6864..67aabbb74d 100644 --- a/Content.Shared/Sound/SharedEmitSoundSystem.cs +++ b/Content.Shared/Sound/SharedEmitSoundSystem.cs @@ -187,7 +187,7 @@ public abstract class SharedEmitSoundSystem : EntitySystem if (_netMan.IsServer && sound != null) { - _audioSystem.PlayPvs(_audioSystem.GetSound(sound), uid, AudioParams.Default.WithVolume(volume)); + _audioSystem.PlayPvs(_audioSystem.ResolveSound(sound), uid, AudioParams.Default.WithVolume(volume)); } } From 634c4a7780b3692074fd48edecf6d8702d40aac4 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 23 Feb 2025 23:57:57 +1100 Subject: [PATCH 138/155] Fix window positions not saving (#35055) Co-authored-by: Kevin Zheng --- Content.Client/Atmos/UI/GasAnalyzerBoundUserInterface.cs | 5 ++--- Content.Client/Crayon/UI/CrayonBoundUserInterface.cs | 3 +-- .../Humanoid/HumanoidMarkingModifierBoundUserInterface.cs | 4 +--- Content.Client/Inventory/StrippableBoundUserInterface.cs | 4 +--- Content.Client/Lathe/UI/LatheBoundUserInterface.cs | 3 +-- Content.Client/Mech/Ui/MechBoundUserInterface.cs | 3 +-- .../Power/Generator/PortableGeneratorBoundUserInterface.cs | 4 +--- .../Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs | 3 +-- Content.Client/Salvage/UI/SalvageMagnetBoundUserInterface.cs | 3 +-- Content.Client/Shuttles/BUI/IFFConsoleBoundUserInterface.cs | 3 +-- .../VendingMachines/VendingMachineBoundUserInterface.cs | 3 +-- 11 files changed, 12 insertions(+), 26 deletions(-) diff --git a/Content.Client/Atmos/UI/GasAnalyzerBoundUserInterface.cs b/Content.Client/Atmos/UI/GasAnalyzerBoundUserInterface.cs index ad496caa8e..f838a69fdf 100644 --- a/Content.Client/Atmos/UI/GasAnalyzerBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasAnalyzerBoundUserInterface.cs @@ -1,4 +1,5 @@ using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using static Content.Shared.Atmos.Components.GasAnalyzerComponent; namespace Content.Client.Atmos.UI @@ -16,9 +17,7 @@ namespace Content.Client.Atmos.UI { base.Open(); - _window = new GasAnalyzerWindow(); - _window.OnClose += OnClose; - _window.OpenCenteredLeft(); + _window = this.CreateWindowCenteredLeft(); } protected override void ReceiveMessage(BoundUserInterfaceMessage message) diff --git a/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs b/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs index 44501767dd..55d7c8835d 100644 --- a/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs +++ b/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs @@ -21,11 +21,10 @@ namespace Content.Client.Crayon.UI protected override void Open() { base.Open(); - _menu = this.CreateWindow(); + _menu = this.CreateWindowCenteredLeft(); _menu.OnColorSelected += SelectColor; _menu.OnSelected += Select; PopulateCrayons(); - _menu.OpenCenteredLeft(); } private void PopulateCrayons() diff --git a/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs b/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs index 53977eb636..f900eec1eb 100644 --- a/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs +++ b/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs @@ -21,14 +21,12 @@ public sealed class HumanoidMarkingModifierBoundUserInterface : BoundUserInterfa { base.Open(); - _window = this.CreateWindow(); + _window = this.CreateWindowCenteredLeft(); _window.OnMarkingAdded += SendMarkingSet; _window.OnMarkingRemoved += SendMarkingSet; _window.OnMarkingColorChange += SendMarkingSetNoResend; _window.OnMarkingRankChange += SendMarkingSet; _window.OnLayerInfoModified += SendBaseLayer; - - _window.OpenCenteredLeft(); } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/Inventory/StrippableBoundUserInterface.cs b/Content.Client/Inventory/StrippableBoundUserInterface.cs index 90e52d7283..295d4848e5 100644 --- a/Content.Client/Inventory/StrippableBoundUserInterface.cs +++ b/Content.Client/Inventory/StrippableBoundUserInterface.cs @@ -64,11 +64,9 @@ namespace Content.Client.Inventory { base.Open(); - _strippingMenu = this.CreateWindow(); + _strippingMenu = this.CreateWindowCenteredLeft(); _strippingMenu.OnDirty += UpdateMenu; _strippingMenu.Title = Loc.GetString("strippable-bound-user-interface-stripping-menu-title", ("ownerName", Identity.Name(Owner, EntMan))); - - _strippingMenu?.OpenCenteredLeft(); } protected override void Dispose(bool disposing) diff --git a/Content.Client/Lathe/UI/LatheBoundUserInterface.cs b/Content.Client/Lathe/UI/LatheBoundUserInterface.cs index a599f79152..4ddde885fa 100644 --- a/Content.Client/Lathe/UI/LatheBoundUserInterface.cs +++ b/Content.Client/Lathe/UI/LatheBoundUserInterface.cs @@ -18,9 +18,8 @@ namespace Content.Client.Lathe.UI { base.Open(); - _menu = this.CreateWindow(); + _menu = this.CreateWindowCenteredRight(); _menu.SetEntity(Owner); - _menu.OpenCenteredRight(); _menu.OnServerListButtonPressed += _ => { diff --git a/Content.Client/Mech/Ui/MechBoundUserInterface.cs b/Content.Client/Mech/Ui/MechBoundUserInterface.cs index 2130a8c609..b3fbe8f7cb 100644 --- a/Content.Client/Mech/Ui/MechBoundUserInterface.cs +++ b/Content.Client/Mech/Ui/MechBoundUserInterface.cs @@ -21,9 +21,8 @@ public sealed class MechBoundUserInterface : BoundUserInterface { base.Open(); - _menu = this.CreateWindow(); + _menu = this.CreateWindowCenteredLeft(); _menu.SetEntity(Owner); - _menu.OpenCenteredLeft(); _menu.OnRemoveButtonPressed += uid => { diff --git a/Content.Client/Power/Generator/PortableGeneratorBoundUserInterface.cs b/Content.Client/Power/Generator/PortableGeneratorBoundUserInterface.cs index 550e1041b6..9fa3b0c68f 100644 --- a/Content.Client/Power/Generator/PortableGeneratorBoundUserInterface.cs +++ b/Content.Client/Power/Generator/PortableGeneratorBoundUserInterface.cs @@ -17,7 +17,7 @@ public sealed class PortableGeneratorBoundUserInterface : BoundUserInterface protected override void Open() { base.Open(); - _window = this.CreateWindow(); + _window = this.CreateWindowCenteredLeft(); _window.SetEntity(Owner); _window.OnState += args => { @@ -34,8 +34,6 @@ public sealed class PortableGeneratorBoundUserInterface : BoundUserInterface _window.OnPower += SetTargetPower; _window.OnEjectFuel += EjectFuel; _window.OnSwitchOutput += SwitchOutput; - - _window.OpenCenteredLeft(); } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs b/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs index fe48b042f3..1832f61c82 100644 --- a/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs +++ b/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs @@ -30,9 +30,8 @@ public sealed class SalvageExpeditionConsoleBoundUserInterface : BoundUserInterf protected override void Open() { base.Open(); - _window = this.CreateWindow(); + _window = this.CreateWindowCenteredLeft(); _window.Title = Loc.GetString("salvage-expedition-window-title"); - _window.OpenCenteredLeft(); } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/Salvage/UI/SalvageMagnetBoundUserInterface.cs b/Content.Client/Salvage/UI/SalvageMagnetBoundUserInterface.cs index d691f9acef..a344ddd1ee 100644 --- a/Content.Client/Salvage/UI/SalvageMagnetBoundUserInterface.cs +++ b/Content.Client/Salvage/UI/SalvageMagnetBoundUserInterface.cs @@ -22,9 +22,8 @@ public sealed class SalvageMagnetBoundUserInterface : BoundUserInterface { base.Open(); - _window = this.CreateWindow(); + _window = this.CreateWindowCenteredLeft(); _window.Title = Loc.GetString("salvage-magnet-window-title"); - _window.OpenCenteredLeft(); } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/Shuttles/BUI/IFFConsoleBoundUserInterface.cs b/Content.Client/Shuttles/BUI/IFFConsoleBoundUserInterface.cs index b8b4fb8a74..8d84abed8a 100644 --- a/Content.Client/Shuttles/BUI/IFFConsoleBoundUserInterface.cs +++ b/Content.Client/Shuttles/BUI/IFFConsoleBoundUserInterface.cs @@ -21,10 +21,9 @@ public sealed class IFFConsoleBoundUserInterface : BoundUserInterface { base.Open(); - _window = this.CreateWindow(); + _window = this.CreateWindowCenteredLeft(); _window.ShowIFF += SendIFFMessage; _window.ShowVessel += SendVesselMessage; - _window.OpenCenteredLeft(); } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs index 28b1b25ade..052bdacb89 100644 --- a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs +++ b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs @@ -23,8 +23,7 @@ namespace Content.Client.VendingMachines { base.Open(); - _menu = this.CreateWindow(); - _menu.OpenCenteredLeft(); + _menu = this.CreateWindowCenteredLeft(); _menu.Title = EntMan.GetComponent(Owner).EntityName; _menu.OnItemSelected += OnItemSelected; Refresh(); From fd4988e3c5d8888583aedcbd2b08bdb6952523e9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 23 Feb 2025 12:59:04 +0000 Subject: [PATCH 139/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a295636617..c549d92b26 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: shampunj - changes: - - message: When curtains are destroyed, only 1 cloth drops out - type: Tweak - id: 7493 - time: '2024-10-08T09:51:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32685 - author: Plykiya changes: - message: Librarians now start with a D20. @@ -3898,3 +3891,10 @@ id: 7992 time: '2025-02-23T11:43:15.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35421 +- author: metalgearsloth + changes: + - message: Fix several interface window positions not saving. + type: Fix + id: 7993 + time: '2025-02-23T12:57:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35055 From fad0b6a137e238f0a5524ebf1e7ba0fcead70056 Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sun, 23 Feb 2025 14:01:06 +0100 Subject: [PATCH 140/155] Swap price of EMAG and AD. (#35354) init --- Resources/Prototypes/Catalog/uplink_catalog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 7f0f668cb7..61f9a009ce 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -870,11 +870,11 @@ name: uplink-access-breaker-name description: uplink-access-breaker-desc productEntity: AccessBreaker - discountCategory: veryRareDiscounts + discountCategory: rareDiscounts discountDownTo: - Telecrystal: 3 + Telecrystal: 2 cost: - Telecrystal: 5 + Telecrystal: 4 categories: - UplinkDisruption @@ -883,11 +883,11 @@ name: uplink-emag-name description: uplink-emag-desc productEntity: Emag - discountCategory: rareDiscounts + discountCategory: veryRareDiscounts discountDownTo: - Telecrystal: 2 + Telecrystal: 3 cost: - Telecrystal: 4 + Telecrystal: 5 categories: - UplinkDisruption From b742afbe2c6aa8a49551de094cc6b8ab7680d8f3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 23 Feb 2025 13:02:12 +0000 Subject: [PATCH 141/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c549d92b26..2288054b1e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Librarians now start with a D20. - type: Tweak - id: 7494 - time: '2024-10-08T09:53:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32648 - author: K-Dynamic changes: - message: CHIMP and APE particles should be almost as fast as before @@ -3898,3 +3891,14 @@ id: 7993 time: '2025-02-23T12:57:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35055 +- author: ScarKy0 + changes: + - message: Increased the price of the EMAG to 5TC. It is also now part of the "very + rare discounts" instead of "rare discounts". + type: Tweak + - message: Decreased the price of the Access Breaker to 4TC. It is also now part + of the "rare discounts" instead of "very rare discounts". + type: Tweak + id: 7994 + time: '2025-02-23T13:01:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35354 From 066c77396544e24e1178236688a26cb4a728e7f2 Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Sun, 23 Feb 2025 07:39:44 -0600 Subject: [PATCH 142/155] Sentry turrets - Part 2: Basic prototype (#35031) --- .../ApcPowerReceiverBatteryComponent.cs | 49 ++++ .../Power/EntitySystems/PowerNetSystem.cs | 43 ++- Content.Shared/Power/SharedPowerDevice.cs | 3 +- .../Weapons/Guns/Projectiles/projectiles.yml | 105 ++++++- .../Guns/Turrets/turrets_ballistic.yml | 138 ++++++++++ .../Weapons/Guns/Turrets/turrets_base.yml | 135 +++++++++ .../Weapons/Guns/Turrets/turrets_broken.yml | 31 +++ .../Entities/Objects/Weapons/Guns/turrets.yml | 259 ------------------ 8 files changed, 500 insertions(+), 263 deletions(-) create mode 100644 Content.Server/Power/Components/ApcPowerReceiverBatteryComponent.cs create mode 100644 Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_ballistic.yml create mode 100644 Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_base.yml create mode 100644 Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_broken.yml delete mode 100644 Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml diff --git a/Content.Server/Power/Components/ApcPowerReceiverBatteryComponent.cs b/Content.Server/Power/Components/ApcPowerReceiverBatteryComponent.cs new file mode 100644 index 0000000000..e2af146f26 --- /dev/null +++ b/Content.Server/Power/Components/ApcPowerReceiverBatteryComponent.cs @@ -0,0 +1,49 @@ +using Content.Server.Power.EntitySystems; +using Content.Shared.Power.EntitySystems; + +namespace Content.Server.Power.Components; + +/// +/// Attached to APC powered entities that possess a rechargeable internal battery. +/// If external power is interrupted, the entity will draw power from this battery instead. +/// Requires and to function. +/// +[RegisterComponent] +[Access([typeof(PowerNetSystem), typeof(SharedPowerReceiverSystem)])] +public sealed partial class ApcPowerReceiverBatteryComponent : Component +{ + /// + /// Indicates whether power is currently being drawn from the battery. + /// + [DataField] + public bool Enabled = false; + + /// + /// The passive load the entity places on the APC power network. + /// If not connected to an active APC power network, this amount + /// of power is drained from the battery every second. + /// + [DataField] + public float IdleLoad { get; set; } = 5f; + + /// + /// Determines how much battery charge the entity's battery gains + /// per second when connected to an active APC power network. + /// + [DataField] + public float BatteryRechargeRate { get; set; } = 50f; + + /// + /// While the battery is being recharged, the load this entity places on the APC + /// power network is increased by the multiplied + /// by this factor. + /// + [DataField] + public float BatteryRechargeEfficiency { get; set; } = 1f; +} + +/// +/// Raised whenever an ApcPowerReceiverBattery starts / stops discharging +/// +[ByRefEvent] +public readonly record struct ApcPowerReceiverBatteryChangedEvent(bool Enabled); diff --git a/Content.Server/Power/EntitySystems/PowerNetSystem.cs b/Content.Server/Power/EntitySystems/PowerNetSystem.cs index a7098649ce..dbc17f2b9d 100644 --- a/Content.Server/Power/EntitySystems/PowerNetSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerNetSystem.cs @@ -22,6 +22,7 @@ namespace Content.Server.Power.EntitySystems [Dependency] private readonly PowerNetConnectorSystem _powerNetConnector = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IParallelManager _parMan = default!; + [Dependency] private readonly BatterySystem _battery = default!; private readonly PowerState _powerState = new(); private readonly HashSet _powerNetReconnectQueue = new(); @@ -278,7 +279,7 @@ namespace Content.Server.Power.EntitySystems // Send events where necessary. // TODO: Instead of querying ALL power components every tick, and then checking if an event needs to be // raised, should probably assemble a list of entity Uids during the actual solver steps. - UpdateApcPowerReceiver(); + UpdateApcPowerReceiver(frameTime); UpdatePowerConsumer(); UpdateNetworkBattery(); } @@ -306,10 +307,12 @@ namespace Content.Server.Power.EntitySystems _powerNetReconnectQueue.Clear(); } - private void UpdateApcPowerReceiver() + private void UpdateApcPowerReceiver(float frameTime) { var appearanceQuery = GetEntityQuery(); var metaQuery = GetEntityQuery(); + var apcBatteryQuery = GetEntityQuery(); + var enumerator = AllEntityQuery(); while (enumerator.MoveNext(out var uid, out var apcReceiver)) { @@ -318,6 +321,42 @@ namespace Content.Server.Power.EntitySystems || MathHelper.CloseToPercent(apcReceiver.NetworkLoad.ReceivingPower, apcReceiver.Load)); + // Check if the entity has an internal battery + if (apcBatteryQuery.TryComp(uid, out var apcBattery) && TryComp(uid, out var battery)) + { + apcReceiver.Load = apcBattery.IdleLoad; + + // Try to draw power from the battery if there isn't sufficient external power + var requireBattery = !powered && !apcReceiver.PowerDisabled; + + if (requireBattery) + { + _battery.SetCharge(uid, battery.CurrentCharge - apcBattery.IdleLoad * frameTime, battery); + } + + // Otherwise try to charge the battery + else if (powered && !_battery.IsFull(uid, battery)) + { + apcReceiver.Load += apcBattery.BatteryRechargeRate * apcBattery.BatteryRechargeEfficiency; + _battery.SetCharge(uid, battery.CurrentCharge + apcBattery.BatteryRechargeRate * frameTime, battery); + } + + // Enable / disable the battery if the state changed + var enableBattery = requireBattery && battery.CurrentCharge > 0; + + if (apcBattery.Enabled != enableBattery) + { + apcBattery.Enabled = enableBattery; + + var apcBatteryEv = new ApcPowerReceiverBatteryChangedEvent(enableBattery); + RaiseLocalEvent(uid, ref apcBatteryEv); + + _appearance.SetData(uid, PowerDeviceVisuals.BatteryPowered, enableBattery); + } + + powered |= enableBattery; + } + // If new value is the same as the old, then exit if (!apcReceiver.Recalculate && apcReceiver.Powered == powered) continue; diff --git a/Content.Shared/Power/SharedPowerDevice.cs b/Content.Shared/Power/SharedPowerDevice.cs index 4274dde60f..043a4dac48 100644 --- a/Content.Shared/Power/SharedPowerDevice.cs +++ b/Content.Shared/Power/SharedPowerDevice.cs @@ -6,6 +6,7 @@ namespace Content.Shared.Power public enum PowerDeviceVisuals : byte { VisualState, - Powered + Powered, + BatteryPowered } } diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 9f34a1c5d1..d71e40aa14 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -16,6 +16,34 @@ tags: - HideContextMenu - type: AnimationPlayer + +- type: entity + parent: MuzzleFlashEffect + id: MuzzleFlashEffectOmnilaser + categories: [ HideSpawnMenu ] + components: + - type: Sprite + drawdepth: BelowMobs + offset: 0.15, 0 + layers: + - shader: unshaded + map: ["enum.EffectLayers.Unshaded"] + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + state: omnilaser_flash + +- type: entity + parent: MuzzleFlashEffect + id: MuzzleFlashEffectHeavyLaser + categories: [ HideSpawnMenu ] + components: + - type: Sprite + drawdepth: BelowMobs + offset: 0.15, 0 + layers: + - shader: unshaded + map: ["enum.EffectLayers.Unshaded"] + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + state: heavylaser_flash # One bullet to bring them all into the darkness and bind them - type: entity @@ -949,6 +977,81 @@ collection: WeakHit forceSound: true +- type: entity + name : energy bolt + id: BulletEnergyTurretBase + parent: BaseBullet + categories: [ HideSpawnMenu ] + components: + - type: Reflective + reflective: + - Energy + - type: FlyBySound + sound: + collection: EnergyMiss + params: + volume: 5 + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + layers: + - state: heavylaser + shader: unshaded + - type: Physics + - type: Fixtures + fixtures: + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.15,-0.3,0.15,0.3" + hard: false + mask: + - Opaque + fly-by: *flybyfixture + - type: Ammo + +- type: entity + name : laser bolt + id: BulletEnergyTurretLaser + parent: BulletEnergyTurretBase + categories: [ HideSpawnMenu ] + components: + - type: Ammo + muzzleFlash: MuzzleFlashEffectHeavyLaser + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + layers: + - state: heavylaser + shader: unshaded + - type: Projectile + impactEffect: BulletImpactEffectOrangeDisabler + damage: + types: + Heat: 28 + +- type: entity + name : disabler bolt + id: BulletEnergyTurretDisabler + parent: BulletEnergyTurretBase + categories: [ HideSpawnMenu ] + components: + - type: Ammo + muzzleFlash: MuzzleFlashEffectOmnilaser + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi + layers: + - state: omnilaser + shader: unshaded + - type: StaminaDamageOnCollide + damage: 30 + - type: Projectile + impactEffect: BulletImpactEffectDisabler + damage: + types: + Heat: 0 + soundHit: + collection: WeakHit + forceSound: true + - type: entity name: tesla gun lightning id: TeslaGunBullet @@ -1051,4 +1154,4 @@ - type: ProjectileSpread proto: BulletDisablerSmg count: 3 #bit stronger than a disabler if you hit your shots you goober, still not a 2 hit stun though - spread: 9 + spread: 9 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_ballistic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_ballistic.yml new file mode 100644 index 0000000000..c5dbb1b216 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_ballistic.yml @@ -0,0 +1,138 @@ +- type: entity + parent: [BaseWeaponBallisticTurret, BaseSyndicateContraband] + id: WeaponTurretSyndicate + suffix: Syndicate + components: + - type: NpcFactionMember + factions: + - Syndicate + +- type: entity + parent: BaseWeaponBallisticTurret + id: WeaponTurretSyndicateDisposable + name: disposable ballistic turret + suffix: Syndicate, Disposable + components: + - type: NpcFactionMember + factions: + - Syndicate + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 600 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:TriggerBehavior + - type: Gun + fireRate: 2 + selectedMode: FullAuto + availableModes: + - FullAuto + soundGunshot: /Audio/Weapons/Guns/Gunshots/gun_sentry.ogg + - type: BallisticAmmoProvider + proto: CartridgePistol + capacity: 50 + - type: Construction + deconstructionTarget: null + graph: WeaponTurretSyndicateDisposable + node: disposableTurret + - type: Repairable + qualityNeeded: "Anchoring" + doAfterDelay: 3 + - type: TriggerWhenEmpty + - type: ExplodeOnTrigger + - type: Explosive + explosionType: Default + maxIntensity: 10 + intensitySlope: 1.5 + totalIntensity: 30 + canCreateVacuum: false + +- type: entity + parent: BaseWeaponBallisticTurret + id: WeaponTurretNanoTrasen + suffix: NanoTrasen + components: + - type: NpcFactionMember + factions: + - NanoTrasen + +- type: entity + parent: BaseWeaponBallisticTurret + id: WeaponTurretHostile + suffix: Hostile + components: + - type: NpcFactionMember + factions: + - SimpleHostile + +- type: entity + parent: BaseWeaponBallisticTurret + id: WeaponTurretAllHostile + suffix: All hostile + components: + - type: NpcFactionMember + factions: + - AllHostile + +- type: entity + parent: BaseWeaponBallisticTurret + id: WeaponTurretXeno + name: xeno turret + suffix: Xeno + description: Shoots 9mm acid projectiles. + components: + - type: NpcFactionMember + factions: + - Xeno + - type: Sprite + sprite: Objects/Weapons/Guns/Turrets/xenoturret.rsi + noRot: true + layers: + - state: acid_turret + - type: BallisticAmmoProvider + proto: BulletAcid + capacity: 500 + - type: Gun + fireRate: 1 + selectedMode: FullAuto + soundGunshot: /Audio/Weapons/Xeno/alien_spitacid.ogg + - type: HTN + rootTask: + task: TurretCompound + blackboard: + SoundTargetInLOS: !type:SoundPathSpecifier + path: /Audio/Animals/snake_hiss.ogg + - type: Damageable + damageContainer: Biological + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/gib1.ogg + - !type:SpawnEntitiesBehavior + spawn: + FoodMeatXeno: + min: 3 + max: 5 + - type: InteractionPopup + interactDelay: 1.0 + successChance: 0.8 + interactSuccessString: petting-success-generic + interactFailureString: petting-failure-generic + interactSuccessSound: + path: /Audio/Animals/snake_hiss.ogg \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_base.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_base.yml new file mode 100644 index 0000000000..aaa45a2136 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_base.yml @@ -0,0 +1,135 @@ +- type: entity + parent: BaseStructure + id: BaseWeaponTurret + name: turret + abstract: true + components: + - type: Clickable + - type: InteractionOutline + - type: Actions + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 60 + mask: + - MachineMask + layer: + - MachineLayer + - type: Sprite + sprite: Objects/Weapons/Guns/Turrets/turrets.rsi + drawdepth: Mobs + layers: + - state: syndie_lethal + - type: InteractionPopup + interactDelay: 0.2 + successChance: 0.8 + interactSuccessString: petting-success-generic + interactFailureString: petting-failure-generic + interactSuccessSound: + path: /Audio/Effects/double_beep.ogg + - type: CombatMode + toggleMouseRotator: false + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 600 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: MetalGlassBreak + - trigger: + !type:DamageTrigger + damage: 300 + # TODO: Construction graph + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: MetalGlassBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 3 + max: 5 + - type: HTN + rootTask: + task: TurretCompound + blackboard: + RotateSpeed: !type:Single + 3.141 + SoundTargetInLOS: !type:SoundPathSpecifier + path: /Audio/Effects/double_beep.ogg + - type: MouseRotator + angleTolerance: 5 + rotationSpeed: 180 + simple4DirMode: false + - type: NoRotateOnInteract + - type: NoRotateOnMove + - type: Input + context: "human" + +- type: entity + parent: BaseWeaponTurret + id: BaseWeaponBallisticTurret + description: A ballistic machine gun auto-turret. + name: ballistic turret + abstract: true + components: + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + - type: Gun + fireRate: 6 + selectedMode: FullAuto + availableModes: + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/gun_sentry.ogg + - type: BallisticAmmoProvider + proto: CartridgeCaselessRifle + capacity: 500 + +- type: entity + parent: BaseWeaponTurret + id: BaseWeaponEnergyTurret + name: laser turret + description: An auto-turret armed with a heavy laser. Its weapon will recharge while connected to an active power grid. + abstract: true + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Turrets/sentry_turret.rsi + drawdepth: FloorObjects + granularLayersRendering: true + layers: + - state: support + renderingStrategy: NoRotation + - state: base + - state: lethal + shader: unshaded + - type: Gun + projectileSpeed: 15 + fireRate: 1.5 + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/taser2.ogg + - type: ProjectileBatteryAmmoProvider + proto: BulletEnergyTurretLaser + fireCost: 100 + - type: Battery + maxCharge: 2000 + startingCharge: 0 + - type: ApcPowerReceiverBattery + idlePowerUse: 5 + batteryRechargeRate: 200 + batteryRechargeEfficiency: 1.225 + - type: ApcPowerReceiver + powerLoad: 5 + - type: ExtensionCableReceiver \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_broken.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_broken.yml new file mode 100644 index 0000000000..96218cd87d --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_broken.yml @@ -0,0 +1,31 @@ +- type: entity + parent: BaseStructure + id: WeaponTurretSyndicateBroken + name: ballistic turret (broken) + description: A ballistic machine gun auto-turret. + components: + - type: Clickable + - type: InteractionOutline + - type: Sprite + sprite: Objects/Weapons/Guns/Turrets/turrets.rsi + drawdepth: Mobs + layers: + - state: syndie_broken + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 450 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: MetalGlassBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 2 + max: 4 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml deleted file mode 100644 index 8da72b49ae..0000000000 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml +++ /dev/null @@ -1,259 +0,0 @@ -- type: entity - parent: BaseStructure - id: WeaponTurretSyndicateBroken - name: ballistic turret (broken) - description: A ballistic machine gun auto-turret. - components: - - type: Clickable - - type: InteractionOutline - - type: Sprite - sprite: Objects/Weapons/Guns/Turrets/turrets.rsi - drawdepth: Mobs - layers: - - state: syndie_broken - - type: Damageable - damageContainer: Inorganic - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 450 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - !type:PlaySoundBehavior - sound: - collection: MetalGlassBreak - - !type:SpawnEntitiesBehavior - spawn: - SheetSteel1: - min: 2 - max: 4 - -- type: entity - parent: BaseStructure - id: BaseWeaponTurret - name: ballistic turret - abstract: true - components: - - type: Clickable - - type: InteractionOutline - - type: Actions - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 60 - mask: - - MachineMask - layer: - - MachineLayer - - type: ContainerContainer - containers: - ballistic-ammo: !type:Container - - type: Sprite - sprite: Objects/Weapons/Guns/Turrets/turrets.rsi - drawdepth: Mobs - layers: - - state: syndie_lethal - - type: InteractionPopup - interactDelay: 0.2 - successChance: 0.8 - interactSuccessString: petting-success-generic - interactFailureString: petting-failure-generic - interactSuccessSound: - path: /Audio/Effects/double_beep.ogg - - type: CombatMode - toggleMouseRotator: false - - type: Damageable - damageContainer: Inorganic - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 600 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 300 - # TODO: Construction graph - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - !type:PlaySoundBehavior - sound: - collection: MetalGlassBreak - - !type:SpawnEntitiesBehavior - spawn: - SheetSteel1: - min: 3 - max: 5 - - type: Gun - fireRate: 6 - selectedMode: FullAuto - availableModes: - - FullAuto - soundGunshot: /Audio/Weapons/Guns/Gunshots/gun_sentry.ogg - # TODO: Power ammo provider? - - type: BallisticAmmoProvider - proto: CartridgeCaselessRifle - capacity: 500 - - type: HTN - rootTask: - task: TurretCompound - blackboard: - RotateSpeed: !type:Single - 3.141 - SoundTargetInLOS: !type:SoundPathSpecifier - path: /Audio/Effects/double_beep.ogg - - type: MouseRotator - angleTolerance: 5 - rotationSpeed: 180 - simple4DirMode: false - - type: NoRotateOnInteract - - type: NoRotateOnMove - - type: Input - context: "human" - -- type: entity - parent: [BaseWeaponTurret, BaseSyndicateContraband] - id: WeaponTurretSyndicate - suffix: Syndicate - components: - - type: NpcFactionMember - factions: - - Syndicate - -- type: entity - parent: BaseWeaponTurret - name: disposable ballistic turret - id: WeaponTurretSyndicateDisposable - suffix: Syndicate, Disposable - components: - - type: NpcFactionMember - factions: - - Syndicate - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 600 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 100 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - !type:TriggerBehavior - - type: Gun - fireRate: 2 - selectedMode: FullAuto - availableModes: - - FullAuto - soundGunshot: /Audio/Weapons/Guns/Gunshots/gun_sentry.ogg - - type: BallisticAmmoProvider - proto: CartridgePistol - capacity: 50 - - type: Construction - deconstructionTarget: null - graph: WeaponTurretSyndicateDisposable - node: disposableTurret - - type: Repairable - qualityNeeded: "Anchoring" - doAfterDelay: 3 - - type: TriggerWhenEmpty - - type: ExplodeOnTrigger - - type: Explosive - explosionType: Default - maxIntensity: 10 - intensitySlope: 1.5 - totalIntensity: 30 - canCreateVacuum: false - -- type: entity - parent: BaseWeaponTurret - id: WeaponTurretNanoTrasen - suffix: NanoTrasen - components: - - type: NpcFactionMember - factions: - - NanoTrasen - -- type: entity - parent: BaseWeaponTurret - id: WeaponTurretHostile - suffix: Hostile - components: - - type: NpcFactionMember - factions: - - SimpleHostile - -- type: entity - parent: BaseWeaponTurret - id: WeaponTurretAllHostile - suffix: All hostile - components: - - type: NpcFactionMember - factions: - - AllHostile - -- type: entity - name: xeno turret - description: Shoots 9mm acid projectiles. - parent: BaseWeaponTurret - id: WeaponTurretXeno - suffix: Xeno - components: - - type: NpcFactionMember - factions: - - Xeno - - type: Sprite - sprite: Objects/Weapons/Guns/Turrets/xenoturret.rsi - noRot: true - layers: - - state: acid_turret - - type: BallisticAmmoProvider - proto: BulletAcid - capacity: 500 - - type: Gun - fireRate: 1 - selectedMode: FullAuto - soundGunshot: /Audio/Weapons/Xeno/alien_spitacid.ogg - - type: HTN - rootTask: - task: TurretCompound - blackboard: - SoundTargetInLOS: !type:SoundPathSpecifier - path: /Audio/Animals/snake_hiss.ogg - - type: Damageable - damageContainer: Biological - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 100 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - !type:PlaySoundBehavior - sound: - path: /Audio/Effects/gib1.ogg - - !type:SpawnEntitiesBehavior - spawn: - FoodMeatXeno: - min: 3 - max: 5 - - type: InteractionPopup - interactDelay: 1.0 - successChance: 0.8 - interactSuccessString: petting-success-generic - interactFailureString: petting-failure-generic - interactSuccessSound: - path: /Audio/Animals/snake_hiss.ogg From 9cb65033199b1d1672f026e40c64ef0440a3c1d9 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Sun, 23 Feb 2025 08:46:59 -0500 Subject: [PATCH 143/155] Add interaction tests for prying airlocks (#35409) --- .../Tests/Doors/AirlockPryingTest.cs | 84 +++++++++++++++++++ .../Interaction/InteractionTest.Constants.cs | 3 + .../Doors/Systems/SharedDoorSystem.cs | 2 +- 3 files changed, 88 insertions(+), 1 deletion(-) create mode 100644 Content.IntegrationTests/Tests/Doors/AirlockPryingTest.cs diff --git a/Content.IntegrationTests/Tests/Doors/AirlockPryingTest.cs b/Content.IntegrationTests/Tests/Doors/AirlockPryingTest.cs new file mode 100644 index 0000000000..135abb28dc --- /dev/null +++ b/Content.IntegrationTests/Tests/Doors/AirlockPryingTest.cs @@ -0,0 +1,84 @@ +using Content.IntegrationTests.Tests.Interaction; +using Content.Server.Doors.Systems; +using Content.Shared.Doors.Components; + +namespace Content.IntegrationTests.Tests.Doors; + +public sealed class AirlockPryingTest : InteractionTest +{ + [Test] + public async Task PoweredClosedAirlock_Pry_DoesNotOpen() + { + await SpawnTarget(Airlock); + await SpawnEntity("APCBasic", SEntMan.GetCoordinates(TargetCoords)); + + await RunTicks(1); + + Assert.That(TryComp(out var airlockComp), "Airlock does not have AirlockComponent?"); + Assert.That(airlockComp.Powered, "Airlock should be powered for this test."); + + Assert.That(TryComp(out var doorComp), "Airlock does not have DoorComponent?"); + Assert.That(doorComp.State, Is.EqualTo(DoorState.Closed), "Airlock did not start closed."); + + await InteractUsing(Pry); + + Assert.That(doorComp.State, Is.EqualTo(DoorState.Closed), "Powered airlock was pried open."); + } + + [Test] + public async Task PoweredOpenAirlock_Pry_DoesNotClose() + { + await SpawnTarget(Airlock); + await SpawnEntity("APCBasic", SEntMan.GetCoordinates(TargetCoords)); + + await RunTicks(1); + + Assert.That(TryComp(out var airlockComp), "Airlock does not have AirlockComponent?"); + Assert.That(airlockComp.Powered, "Airlock should be powered for this test."); + + var doorSys = SEntMan.System(); + await Server.WaitPost(() => doorSys.SetState(SEntMan.GetEntity(Target.Value), DoorState.Open)); + + Assert.That(TryComp(out var doorComp), "Airlock does not have DoorComponent?"); + Assert.That(doorComp.State, Is.EqualTo(DoorState.Open), "Airlock did not start open."); + + await InteractUsing(Pry); + + Assert.That(doorComp.State, Is.EqualTo(DoorState.Open), "Powered airlock was pried closed."); + } + + [Test] + public async Task UnpoweredClosedAirlock_Pry_Opens() + { + await SpawnTarget(Airlock); + + Assert.That(TryComp(out var airlockComp), "Airlock does not have AirlockComponent?"); + Assert.That(airlockComp.Powered, Is.False, "Airlock should not be powered for this test."); + + Assert.That(TryComp(out var doorComp), "Airlock does not have DoorComponent?"); + Assert.That(doorComp.State, Is.EqualTo(DoorState.Closed), "Airlock did not start closed."); + + await InteractUsing(Pry); + + Assert.That(doorComp.State, Is.EqualTo(DoorState.Opening), "Unpowered airlock failed to pry open."); + } + + [Test] + public async Task UnpoweredOpenAirlock_Pry_Closes() + { + await SpawnTarget(Airlock); + + Assert.That(TryComp(out var airlockComp), "Airlock does not have AirlockComponent?"); + Assert.That(airlockComp.Powered, Is.False, "Airlock should not be powered for this test."); + + var doorSys = SEntMan.System(); + await Server.WaitPost(() => doorSys.SetState(SEntMan.GetEntity(Target.Value), DoorState.Open)); + + Assert.That(TryComp(out var doorComp), "Airlock does not have DoorComponent?"); + Assert.That(doorComp.State, Is.EqualTo(DoorState.Open), "Airlock did not start open."); + + await InteractUsing(Pry); + + Assert.That(doorComp.State, Is.EqualTo(DoorState.Closing), "Unpowered airlock failed to pry closed."); + } +} diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs index 11381fb8cc..aa58b30bf3 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs @@ -10,6 +10,9 @@ public abstract partial class InteractionTest protected const string Plating = "Plating"; protected const string Lattice = "Lattice"; + // Structures + protected const string Airlock = "Airlock"; + // Tools/steps protected const string Wrench = "Wrench"; protected const string Screw = "Screwdriver"; diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index a0d48b7d67..4d92cf9681 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -149,7 +149,7 @@ public abstract partial class SharedDoorSystem : EntitySystem RaiseLocalEvent(ent, new DoorStateChangedEvent(door.State)); } - protected bool SetState(EntityUid uid, DoorState state, DoorComponent? door = null) + public bool SetState(EntityUid uid, DoorState state, DoorComponent? door = null) { if (!Resolve(uid, ref door)) return false; From 1d004f4945c7d0654d842c6de2536eb5c905b9f2 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 24 Feb 2025 00:57:27 +1100 Subject: [PATCH 144/155] Sentry review (#35424) Co-authored-by: chromiumboy Co-authored-by: chromiumboy <50505512+chromiumboy@users.noreply.github.com> --- .../Power/EntitySystems/PowerNetSystem.cs | 8 +++++ .../Power/EntitySystems/PowerNetSystem.cs | 36 +++++++++++-------- .../ApcPowerReceiverBatteryChangedEvent.cs | 24 ++++++------- .../EntitySystems/SharedPowerNetSystem.cs | 6 ++++ 4 files changed, 47 insertions(+), 27 deletions(-) create mode 100644 Content.Client/Power/EntitySystems/PowerNetSystem.cs rename Content.Server/Power/Components/ApcPowerReceiverBatteryComponent.cs => Content.Shared/Power/Components/ApcPowerReceiverBatteryChangedEvent.cs (68%) create mode 100644 Content.Shared/Power/EntitySystems/SharedPowerNetSystem.cs diff --git a/Content.Client/Power/EntitySystems/PowerNetSystem.cs b/Content.Client/Power/EntitySystems/PowerNetSystem.cs new file mode 100644 index 0000000000..6fb9f482ce --- /dev/null +++ b/Content.Client/Power/EntitySystems/PowerNetSystem.cs @@ -0,0 +1,8 @@ +using Content.Shared.Power.EntitySystems; + +namespace Content.Client.Power.EntitySystems; + +public sealed class PowerNetSystem : SharedPowerNetSystem +{ + +} diff --git a/Content.Server/Power/EntitySystems/PowerNetSystem.cs b/Content.Server/Power/EntitySystems/PowerNetSystem.cs index dbc17f2b9d..666d3fcbe8 100644 --- a/Content.Server/Power/EntitySystems/PowerNetSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerNetSystem.cs @@ -5,6 +5,8 @@ using Content.Server.Power.NodeGroups; using Content.Server.Power.Pow3r; using Content.Shared.CCVar; using Content.Shared.Power; +using Content.Shared.Power.Components; +using Content.Shared.Power.EntitySystems; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Configuration; @@ -16,7 +18,7 @@ namespace Content.Server.Power.EntitySystems /// Manages power networks, power state, and all power components. /// [UsedImplicitly] - public sealed class PowerNetSystem : EntitySystem + public sealed class PowerNetSystem : SharedPowerNetSystem { [Dependency] private readonly AppearanceSystem _appearance = default!; [Dependency] private readonly PowerNetConnectorSystem _powerNetConnector = default!; @@ -28,12 +30,20 @@ namespace Content.Server.Power.EntitySystems private readonly HashSet _powerNetReconnectQueue = new(); private readonly HashSet _apcNetReconnectQueue = new(); + private EntityQuery _apcBatteryQuery; + private EntityQuery _appearanceQuery; + private EntityQuery _batteryQuery; + private BatteryRampPegSolver _solver = new(); public override void Initialize() { base.Initialize(); + _apcBatteryQuery = GetEntityQuery(); + _appearanceQuery = GetEntityQuery(); + _batteryQuery = GetEntityQuery(); + UpdatesAfter.Add(typeof(NodeGroupSystem)); _solver = new(_cfg.GetCVar(CCVars.DebugPow3rDisableParallel)); @@ -309,10 +319,6 @@ namespace Content.Server.Power.EntitySystems private void UpdateApcPowerReceiver(float frameTime) { - var appearanceQuery = GetEntityQuery(); - var metaQuery = GetEntityQuery(); - var apcBatteryQuery = GetEntityQuery(); - var enumerator = AllEntityQuery(); while (enumerator.MoveNext(out var uid, out var apcReceiver)) { @@ -321,8 +327,11 @@ namespace Content.Server.Power.EntitySystems || MathHelper.CloseToPercent(apcReceiver.NetworkLoad.ReceivingPower, apcReceiver.Load)); + MetaDataComponent? metadata = null; + + // TODO: If we get archetypes would be better to split this out. // Check if the entity has an internal battery - if (apcBatteryQuery.TryComp(uid, out var apcBattery) && TryComp(uid, out var battery)) + if (_apcBatteryQuery.TryComp(uid, out var apcBattery) && _batteryQuery.TryComp(uid, out var battery)) { apcReceiver.Load = apcBattery.IdleLoad; @@ -333,7 +342,6 @@ namespace Content.Server.Power.EntitySystems { _battery.SetCharge(uid, battery.CurrentCharge - apcBattery.IdleLoad * frameTime, battery); } - // Otherwise try to charge the battery else if (powered && !_battery.IsFull(uid, battery)) { @@ -347,6 +355,8 @@ namespace Content.Server.Power.EntitySystems if (apcBattery.Enabled != enableBattery) { apcBattery.Enabled = enableBattery; + metadata = MetaData(uid); + Dirty(uid, apcBattery, metadata); var apcBatteryEv = new ApcPowerReceiverBatteryChangedEvent(enableBattery); RaiseLocalEvent(uid, ref apcBatteryEv); @@ -361,8 +371,8 @@ namespace Content.Server.Power.EntitySystems if (!apcReceiver.Recalculate && apcReceiver.Powered == powered) continue; - var metadata = metaQuery.Comp(uid); - if (metadata.EntityPaused) + metadata ??= MetaData(uid); + if (Paused(uid, metadata)) continue; apcReceiver.Recalculate = false; @@ -372,15 +382,14 @@ namespace Content.Server.Power.EntitySystems var ev = new PowerChangedEvent(powered, apcReceiver.NetworkLoad.ReceivingPower); RaiseLocalEvent(uid, ref ev); - if (appearanceQuery.TryComp(uid, out var appearance)) + if (_appearanceQuery.TryComp(uid, out var appearance)) _appearance.SetData(uid, PowerDeviceVisuals.Powered, powered, appearance); } } private void UpdatePowerConsumer() { - var metaQuery = GetEntityQuery(); - var enumerator = AllEntityQuery(); + var enumerator = EntityQueryEnumerator(); while (enumerator.MoveNext(out var uid, out var consumer)) { var newRecv = consumer.NetworkLoad.ReceivingPower; @@ -388,9 +397,6 @@ namespace Content.Server.Power.EntitySystems if (MathHelper.CloseToPercent(lastRecv, newRecv)) continue; - if (metaQuery.GetComponent(uid).EntityPaused) - continue; - lastRecv = newRecv; var msg = new PowerConsumerReceivedChanged(newRecv, consumer.DrawRate); RaiseLocalEvent(uid, ref msg); diff --git a/Content.Server/Power/Components/ApcPowerReceiverBatteryComponent.cs b/Content.Shared/Power/Components/ApcPowerReceiverBatteryChangedEvent.cs similarity index 68% rename from Content.Server/Power/Components/ApcPowerReceiverBatteryComponent.cs rename to Content.Shared/Power/Components/ApcPowerReceiverBatteryChangedEvent.cs index e2af146f26..02c8328fa1 100644 --- a/Content.Server/Power/Components/ApcPowerReceiverBatteryComponent.cs +++ b/Content.Shared/Power/Components/ApcPowerReceiverBatteryChangedEvent.cs @@ -1,21 +1,21 @@ -using Content.Server.Power.EntitySystems; using Content.Shared.Power.EntitySystems; +using Robust.Shared.GameStates; -namespace Content.Server.Power.Components; +namespace Content.Shared.Power.Components; /// /// Attached to APC powered entities that possess a rechargeable internal battery. -/// If external power is interrupted, the entity will draw power from this battery instead. -/// Requires and to function. +/// If external power is interrupted, the entity will draw power from this battery instead. +/// Requires and to function. /// -[RegisterComponent] -[Access([typeof(PowerNetSystem), typeof(SharedPowerReceiverSystem)])] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedPowerNetSystem), typeof(SharedPowerReceiverSystem))] public sealed partial class ApcPowerReceiverBatteryComponent : Component { /// /// Indicates whether power is currently being drawn from the battery. /// - [DataField] + [DataField, AutoNetworkedField] public bool Enabled = false; /// @@ -24,22 +24,22 @@ public sealed partial class ApcPowerReceiverBatteryComponent : Component /// of power is drained from the battery every second. /// [DataField] - public float IdleLoad { get; set; } = 5f; + public float IdleLoad = 5f; /// - /// Determines how much battery charge the entity's battery gains + /// Determines how much battery charge the entity's battery gains /// per second when connected to an active APC power network. /// [DataField] - public float BatteryRechargeRate { get; set; } = 50f; + public float BatteryRechargeRate = 50f; /// - /// While the battery is being recharged, the load this entity places on the APC + /// While the battery is being recharged, the load this entity places on the APC /// power network is increased by the multiplied /// by this factor. /// [DataField] - public float BatteryRechargeEfficiency { get; set; } = 1f; + public float BatteryRechargeEfficiency = 1f; } /// diff --git a/Content.Shared/Power/EntitySystems/SharedPowerNetSystem.cs b/Content.Shared/Power/EntitySystems/SharedPowerNetSystem.cs new file mode 100644 index 0000000000..28f74536c4 --- /dev/null +++ b/Content.Shared/Power/EntitySystems/SharedPowerNetSystem.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Power.EntitySystems; + +public abstract class SharedPowerNetSystem : EntitySystem +{ + +} From 55e22b6a9443f66a8c02fa20350eb55e86e26fed Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sun, 23 Feb 2025 16:05:23 +0100 Subject: [PATCH 145/155] Remove disablers from emagged lathe (#35423) --- .../Prototypes/Entities/Structures/Machines/lathe.yml | 1 + Resources/Prototypes/Recipes/Lathes/Packs/security.yml | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 1207fc46f0..106448b2e3 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -399,6 +399,7 @@ - SecurityExplosives - SecurityAmmo - SecurityWeapons + - SecurityDisablers - type: MaterialStorage whitelist: tags: diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/security.yml b/Resources/Prototypes/Recipes/Lathes/Packs/security.yml index 77f2131e71..a8eee17d5e 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/security.yml @@ -124,8 +124,12 @@ recipes: - Truncheon - WeaponAdvancedLaser - - WeaponDisabler - - WeaponDisablerSMG - WeaponLaserCannon - WeaponLaserCarbine - WeaponXrayCannon + +- type: latheRecipePack + id: SecurityDisablers + recipes: + - WeaponDisabler + - WeaponDisablerSMG From b7414d85b4147ca097d38ba36a1af8015076948f Mon Sep 17 00:00:00 2001 From: pathetic meowmeow Date: Sun, 23 Feb 2025 10:24:44 -0500 Subject: [PATCH 146/155] Add microwave recipes to the guidebook (#34105) --- .../Controls/GuideMicrowaveEmbed.xaml | 35 +++ .../Controls/GuideMicrowaveEmbed.xaml.cs | 183 ++++++++++++++++ .../Controls/GuideMicrowaveGroupEmbed.cs | 59 ++++++ .../Kitchen/MicrowaveMealRecipePrototype.cs | 3 + Resources/Locale/en-US/guidebook/cooking.ftl | 15 ++ Resources/Locale/en-US/guidebook/guides.ftl | 16 ++ Resources/Prototypes/Guidebook/references.yml | 107 ++++++++++ .../Recipes/Cooking/meal_recipes.yml | 200 ++++++++++++++++++ .../Recipes/Cooking/medical_recipes.yml | 3 + .../Service/BarsAndCookiesRecipes.xml | 9 + .../Guidebook/Service/BreadRecipes.xml | 9 + .../Guidebook/Service/BreakfastRecipes.xml | 9 + .../Guidebook/Service/CakeRecipes.xml | 9 + .../Guidebook/Service/DessertRecipes.xml | 9 + .../Guidebook/Service/FoodRecipes.xml | 116 ++++------ .../Guidebook/Service/MedicinalRecipes.xml | 9 + .../Guidebook/Service/MothRecipes.xml | 10 + .../Guidebook/Service/OtherRecipes.xml | 9 + .../Guidebook/Service/PastaRecipes.xml | 9 + .../Guidebook/Service/PieRecipes.xml | 9 + .../Guidebook/Service/PizzaRecipes.xml | 9 + .../Guidebook/Service/SaladRecipes.xml | 9 + .../Guidebook/Service/SavoryRecipes.xml | 9 + .../Guidebook/Service/SecretRecipes.xml | 9 + .../Guidebook/Service/SoupRecipes.xml | 9 + 25 files changed, 794 insertions(+), 79 deletions(-) create mode 100644 Content.Client/Guidebook/Controls/GuideMicrowaveEmbed.xaml create mode 100644 Content.Client/Guidebook/Controls/GuideMicrowaveEmbed.xaml.cs create mode 100644 Content.Client/Guidebook/Controls/GuideMicrowaveGroupEmbed.cs create mode 100644 Resources/Locale/en-US/guidebook/cooking.ftl create mode 100644 Resources/ServerInfo/Guidebook/Service/BarsAndCookiesRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/BreadRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/BreakfastRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/CakeRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/DessertRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/MedicinalRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/MothRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/OtherRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/PastaRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/PieRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/PizzaRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/SaladRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/SavoryRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/SecretRecipes.xml create mode 100644 Resources/ServerInfo/Guidebook/Service/SoupRecipes.xml diff --git a/Content.Client/Guidebook/Controls/GuideMicrowaveEmbed.xaml b/Content.Client/Guidebook/Controls/GuideMicrowaveEmbed.xaml new file mode 100644 index 0000000000..fb09b5cbf4 --- /dev/null +++ b/Content.Client/Guidebook/Controls/GuideMicrowaveEmbed.xaml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/Guidebook/Controls/GuideMicrowaveEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideMicrowaveEmbed.xaml.cs new file mode 100644 index 0000000000..1ae09fc8fe --- /dev/null +++ b/Content.Client/Guidebook/Controls/GuideMicrowaveEmbed.xaml.cs @@ -0,0 +1,183 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Client.Guidebook.Richtext; +using Content.Client.Message; +using Content.Client.UserInterface.ControlExtensions; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Kitchen; +using JetBrains.Annotations; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Client.UserInterface; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Client.Guidebook.Controls; + +/// +/// Control for embedding a microwave recipe into a guidebook. +/// +[UsedImplicitly, GenerateTypedNameReferences] +public sealed partial class GuideMicrowaveEmbed : PanelContainer, IDocumentTag, ISearchableControl +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly ILogManager _logManager = default!; + + private ISawmill _sawmill = default!; + + public GuideMicrowaveEmbed() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + MouseFilter = MouseFilterMode.Stop; + + _sawmill = _logManager.GetSawmill("guidemicrowaveembed"); + } + + public GuideMicrowaveEmbed(string recipe) : this() + { + GenerateControl(_prototype.Index(recipe)); + } + + public GuideMicrowaveEmbed(FoodRecipePrototype recipe) : this() + { + GenerateControl(recipe); + } + + public bool CheckMatchesSearch(string query) + { + return this.ChildrenContainText(query); + } + + public void SetHiddenState(bool state, string query) + { + Visible = CheckMatchesSearch(query) ? state : !state; + } + + public bool TryParseTag(Dictionary args, [NotNullWhen(true)] out Control? control) + { + control = null; + if (!args.TryGetValue("Recipe", out var id)) + { + _sawmill.Error("Recipe embed tag is missing recipe prototype argument"); + return false; + } + + if (!_prototype.TryIndex(id, out var recipe)) + { + _sawmill.Error($"Specified recipe prototype \"{id}\" is not a valid recipe prototype"); + return false; + } + + GenerateControl(recipe); + + control = this; + return true; + } + + private void GenerateHeader(FoodRecipePrototype recipe) + { + var entity = _prototype.Index(recipe.Result); + + IconContainer.AddChild(new GuideEntityEmbed(recipe.Result, false, false)); + ResultName.SetMarkup(entity.Name); + ResultDescription.SetMarkup(entity.Description); + } + + private void GenerateSolidIngredients(FoodRecipePrototype recipe) + { + foreach (var (product, amount) in recipe.IngredientsSolids.OrderByDescending(p => p.Value)) + { + var ingredient = _prototype.Index(product); + + IngredientsGrid.AddChild(new GuideEntityEmbed(product, false, false)); + + // solid name + + var solidNameMsg = new FormattedMessage(); + solidNameMsg.AddMarkupOrThrow(Loc.GetString("guidebook-microwave-solid-name-display", ("ingredient", ingredient.Name))); + solidNameMsg.Pop(); + + var solidNameLabel = new RichTextLabel(); + solidNameLabel.SetMessage(solidNameMsg); + + IngredientsGrid.AddChild(solidNameLabel); + + // solid quantity + + var solidQuantityMsg = new FormattedMessage(); + solidQuantityMsg.AddMarkupOrThrow(Loc.GetString("guidebook-microwave-solid-quantity-display", ("amount", amount))); + solidQuantityMsg.Pop(); + + var solidQuantityLabel = new RichTextLabel(); + solidQuantityLabel.SetMessage(solidQuantityMsg); + + IngredientsGrid.AddChild(solidQuantityLabel); + } + } + + private void GenerateLiquidIngredients(FoodRecipePrototype recipe) + { + foreach (var (product, amount) in recipe.IngredientsReagents.OrderByDescending(p => p.Value)) + { + var reagent = _prototype.Index(product); + + // liquid color + + var liquidColorMsg = new FormattedMessage(); + liquidColorMsg.AddMarkupOrThrow(Loc.GetString("guidebook-microwave-reagent-color-display", ("color", reagent.SubstanceColor))); + liquidColorMsg.Pop(); + + var liquidColorLabel = new RichTextLabel(); + liquidColorLabel.SetMessage(liquidColorMsg); + liquidColorLabel.HorizontalAlignment = Control.HAlignment.Center; + + IngredientsGrid.AddChild(liquidColorLabel); + + // liquid name + + var liquidNameMsg = new FormattedMessage(); + liquidNameMsg.AddMarkupOrThrow(Loc.GetString("guidebook-microwave-reagent-name-display", ("reagent", reagent.LocalizedName))); + liquidNameMsg.Pop(); + + var liquidNameLabel = new RichTextLabel(); + liquidNameLabel.SetMessage(liquidNameMsg); + + IngredientsGrid.AddChild(liquidNameLabel); + + // liquid quantity + + var liquidQuantityMsg = new FormattedMessage(); + liquidQuantityMsg.AddMarkupOrThrow(Loc.GetString("guidebook-microwave-reagent-quantity-display", ("amount", amount))); + liquidQuantityMsg.Pop(); + + var liquidQuantityLabel = new RichTextLabel(); + liquidQuantityLabel.SetMessage(liquidQuantityMsg); + + IngredientsGrid.AddChild(liquidQuantityLabel); + } + } + + private void GenerateIngredients(FoodRecipePrototype recipe) + { + GenerateLiquidIngredients(recipe); + GenerateSolidIngredients(recipe); + } + + private void GenerateCookTime(FoodRecipePrototype recipe) + { + var msg = new FormattedMessage(); + msg.AddMarkupOrThrow(Loc.GetString("guidebook-microwave-cook-time", ("time", recipe.CookTime))); + msg.Pop(); + + CookTimeLabel.SetMessage(msg); + } + + private void GenerateControl(FoodRecipePrototype recipe) + { + GenerateHeader(recipe); + GenerateIngredients(recipe); + GenerateCookTime(recipe); + } +} diff --git a/Content.Client/Guidebook/Controls/GuideMicrowaveGroupEmbed.cs b/Content.Client/Guidebook/Controls/GuideMicrowaveGroupEmbed.cs new file mode 100644 index 0000000000..098e99459c --- /dev/null +++ b/Content.Client/Guidebook/Controls/GuideMicrowaveGroupEmbed.cs @@ -0,0 +1,59 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Client.Guidebook.Richtext; +using Content.Shared.Kitchen; +using JetBrains.Annotations; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface; +using Robust.Shared.Prototypes; + +namespace Content.Client.Guidebook.Controls; + +/// +/// Control for listing microwave recipes in a guidebook +/// +[UsedImplicitly] +public sealed partial class GuideMicrowaveGroupEmbed : BoxContainer, IDocumentTag +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + + public GuideMicrowaveGroupEmbed() + { + Orientation = LayoutOrientation.Vertical; + IoCManager.InjectDependencies(this); + MouseFilter = MouseFilterMode.Stop; + } + + public GuideMicrowaveGroupEmbed(string group) : this() + { + CreateEntries(group); + } + + public bool TryParseTag(Dictionary args, [NotNullWhen(true)] out Control? control) + { + control = null; + if (!args.TryGetValue("Group", out var group)) + { + Logger.Error("Microwave group embed tag is missing group argument"); + return false; + } + + CreateEntries(group); + + control = this; + return true; + } + + private void CreateEntries(string group) + { + var prototypes = _prototype.EnumeratePrototypes() + .Where(p => p.Group.Equals(group)) + .OrderBy(p => p.Name); + + foreach (var recipe in prototypes) + { + var embed = new GuideMicrowaveEmbed(recipe); + AddChild(embed); + } + } +} diff --git a/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs b/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs index 65a7b9ed04..a92e6bfd20 100644 --- a/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs +++ b/Content.Shared/Kitchen/MicrowaveMealRecipePrototype.cs @@ -19,6 +19,9 @@ namespace Content.Shared.Kitchen [DataField("name")] private string _name = string.Empty; + [DataField] + public string Group = "Other"; + [DataField("reagents", customTypeSerializer:typeof(PrototypeIdDictionarySerializer))] private Dictionary _ingsReagents = new(); diff --git a/Resources/Locale/en-US/guidebook/cooking.ftl b/Resources/Locale/en-US/guidebook/cooking.ftl new file mode 100644 index 0000000000..14b95253b3 --- /dev/null +++ b/Resources/Locale/en-US/guidebook/cooking.ftl @@ -0,0 +1,15 @@ +guidebook-microwave-ingredients-header = Ingredients +guidebook-microwave-cook-time-header = Cooking Time +guidebook-microwave-cook-time = + { $time -> + [0] Instant + [1] [bold]1[/bold] second + *[other] [bold]{$time}[/bold] seconds + } + +guidebook-microwave-reagent-color-display = [color={$color}]■[/color] +guidebook-microwave-reagent-name-display = [bold]{$reagent}[/bold] +guidebook-microwave-reagent-quantity-display = × {$amount}u + +guidebook-microwave-solid-name-display = [bold]{$ingredient}[/bold] +guidebook-microwave-solid-quantity-display = × {$amount} diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index 530881abd1..0e7bdc8db0 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -112,6 +112,22 @@ guide-entry-botanical = Botanical guide-entry-special = Special guide-entry-others = Others +guide-entry-pizza-recipes = Pizzas +guide-entry-savory-recipes = Savory Foods +guide-entry-bread-recipes = Breads +guide-entry-breakfast-recipes = Breakfast Foods +guide-entry-moth-recipes = Moth Foods +guide-entry-pasta-recipes = Pastas & Noodles +guide-entry-dessert-recipes = Desserts & Pastries +guide-entry-soup-recipes = Soups & Stews +guide-entry-pie-recipes = Pies & Tarts +guide-entry-barsandcookies-recipes = Bars & Cookies +guide-entry-cake-recipes = Cakes +guide-entry-salad-recipes = Salads +guide-entry-medicinal-recipes = Medicinal +guide-entry-other-recipes = Other +guide-entry-secret-recipes = Secret + guide-entry-antagonists = Antagonists guide-entry-nuclear-operatives = Nuclear Operatives guide-entry-traitors = Traitors diff --git a/Resources/Prototypes/Guidebook/references.yml b/Resources/Prototypes/Guidebook/references.yml index 7118bf3bc0..c7413892a0 100644 --- a/Resources/Prototypes/Guidebook/references.yml +++ b/Resources/Prototypes/Guidebook/references.yml @@ -19,6 +19,113 @@ id: FoodRecipes name: guide-entry-foodrecipes text: "/ServerInfo/Guidebook/Service/FoodRecipes.xml" + filterEnabled: True + children: + - PizzaRecipes + - SavoryRecipes + - BreadRecipes + - BreakfastRecipes + - MothRecipes + - PastaRecipes + - DessertRecipes + - SoupRecipes + - PieRecipes + - BarsAndCookiesRecipes + - CakeRecipes + - SaladRecipes + - OtherRecipes + - MedicinalRecipes + - SecretRecipes + +- type: guideEntry + id: PizzaRecipes + name: guide-entry-pizza-recipes + text: "/ServerInfo/Guidebook/Service/PizzaRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: SavoryRecipes + name: guide-entry-savory-recipes + text: "/ServerInfo/Guidebook/Service/SavoryRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: BreadRecipes + name: guide-entry-bread-recipes + text: "/ServerInfo/Guidebook/Service/BreadRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: BreakfastRecipes + name: guide-entry-breakfast-recipes + text: "/ServerInfo/Guidebook/Service/BreakfastRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: MothRecipes + name: guide-entry-moth-recipes + text: "/ServerInfo/Guidebook/Service/MothRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: PastaRecipes + name: guide-entry-pasta-recipes + text: "/ServerInfo/Guidebook/Service/PastaRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: DessertRecipes + name: guide-entry-dessert-recipes + text: "/ServerInfo/Guidebook/Service/DessertRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: SoupRecipes + name: guide-entry-soup-recipes + text: "/ServerInfo/Guidebook/Service/SoupRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: PieRecipes + name: guide-entry-pie-recipes + text: "/ServerInfo/Guidebook/Service/PieRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: BarsAndCookiesRecipes + name: guide-entry-barsandcookies-recipes + text: "/ServerInfo/Guidebook/Service/BarsAndCookiesRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: CakeRecipes + name: guide-entry-cake-recipes + text: "/ServerInfo/Guidebook/Service/CakeRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: SaladRecipes + name: guide-entry-salad-recipes + text: "/ServerInfo/Guidebook/Service/SaladRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: OtherRecipes + name: guide-entry-other-recipes + text: "/ServerInfo/Guidebook/Service/OtherRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: MedicinalRecipes + name: guide-entry-medicinal-recipes + text: "/ServerInfo/Guidebook/Service/MedicinalRecipes.xml" + filterEnabled: True + +- type: guideEntry + id: SecretRecipes + name: guide-entry-secret-recipes + text: "/ServerInfo/Guidebook/Service/SecretRecipes.xml" + filterEnabled: True - type: guideEntry id: Writing diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 8e2e97a746..c3a5012ac0 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -3,6 +3,7 @@ name: bun recipe result: FoodBreadBun time: 5 + group: Breads solids: FoodDoughSlice: 1 # one third of a standard bread dough recipe @@ -12,6 +13,7 @@ name: bagel recipe result: FoodBagel time: 5 + group: Breads solids: FoodDoughRope: 1 # created by rolling a dough slice. @@ -20,6 +22,7 @@ name: poppyseed bagel recipe result: FoodBagelPoppy time: 5 + group: Breads solids: FoodDoughRope: 1 PoppySeeds: 1 @@ -29,6 +32,7 @@ name: cotton bagel recipe result: FoodBagelCotton time: 5 + group: Moth solids: FoodDoughCottonRope: 1 @@ -39,6 +43,7 @@ name: appendix burger recipe result: FoodBurgerAppendix time: 10 + group: Savory solids: FoodBreadBun: 1 OrganHumanAppendix: 1 @@ -48,6 +53,7 @@ name: bacon burger recipe result: FoodBurgerBacon time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeatBacon: 1 @@ -58,6 +64,7 @@ name: baseball burger recipe result: FoodBurgerBaseball time: 10 + group: Savory solids: FoodBreadBun: 1 BaseBallBat: 1 @@ -67,6 +74,7 @@ name: bearger recipe result: FoodBurgerBear time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeatBear: 1 @@ -76,6 +84,7 @@ name: big bite burger recipe result: FoodBurgerBig time: 15 + group: Savory solids: FoodBreadBun: 1 FoodMeat: 2 @@ -88,6 +97,7 @@ name: brain burger recipe result: FoodBurgerBrain time: 10 + group: Savory solids: FoodBreadBun: 1 OrganHumanBrain: 1 @@ -97,6 +107,7 @@ name: cat burger recipe result: FoodBurgerCat time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeat: 1 @@ -107,6 +118,7 @@ name: cheeseburger recipe result: FoodBurgerCheese time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeat: 1 @@ -117,6 +129,7 @@ name: chicken sandwich recipe result: FoodBurgerChicken time: 10 + group: Savory reagents: Mayo: 5 solids: @@ -128,6 +141,7 @@ name: clownburger recipe result: FoodBurgerClown time: 10 + group: Savory solids: FoodBreadBun: 1 ClothingMaskClown: 1 @@ -137,6 +151,7 @@ name: corgi burger recipe result: FoodBurgerCorgi time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeatCorgi: 1 @@ -146,6 +161,7 @@ name: crab burger recipe result: FoodBurgerCrab time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeatCrab: 2 @@ -155,6 +171,7 @@ name: crazy hamburger recipe result: FoodBurgerCrazy time: 15 + group: Savory reagents: OilOlive: 15 solids: @@ -171,6 +188,7 @@ name: duck sandwich recipe result: FoodBurgerDuck time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeatDuck: 1 @@ -181,6 +199,7 @@ name: empowered burger recipe result: FoodBurgerEmpowered time: 10 + group: Savory solids: FoodBreadBun: 1 SheetPlasma1: 2 @@ -190,6 +209,7 @@ name: fillet-o-carp burger recipe result: FoodBurgerCarp time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeatFish: 1 @@ -200,6 +220,7 @@ name: five alarm burger recipe result: FoodBurgerFive time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeat: 1 @@ -210,6 +231,7 @@ name: ghost burger recipe result: FoodBurgerGhost time: 10 + group: Savory solids: FoodBreadBun: 1 Ectoplasm: 1 @@ -219,6 +241,7 @@ name: human burger recipe result: FoodBurgerHuman time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeatHuman: 1 @@ -228,6 +251,7 @@ name: jelly burger recipe result: FoodBurgerJelly time: 10 + group: Savory solids: FoodBreadBun: 1 FoodJellyAmanita: 1 @@ -237,6 +261,7 @@ name: McGuffin recipe result: FoodBurgerMcguffin time: 10 + group: Savory solids: FoodBreadBun: 1 FoodCheeseSlice: 1 @@ -247,6 +272,7 @@ name: BBQ rib sandwich recipe result: FoodBurgerMcrib time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMealRibs: 1 @@ -257,6 +283,7 @@ name: mime burger recipe result: FoodBurgerMime time: 10 + group: Savory solids: FoodBreadBun: 1 ClothingMaskMime: 1 @@ -266,6 +293,7 @@ name: plain burger recipe result: FoodBurgerPlain time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeat: 1 @@ -275,6 +303,7 @@ name: rat burger recipe result: FoodBurgerRat time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeatRat: 1 @@ -284,6 +313,7 @@ name: roburger recipe result: FoodBurgerRobot time: 10 + group: Savory solids: FoodBreadBun: 1 CapacitorStockPart: 2 @@ -294,6 +324,7 @@ name: soylent burger recipe result: FoodBurgerSoy time: 10 + group: Savory solids: FoodBreadBun: 1 FoodCheeseSlice: 2 @@ -304,6 +335,7 @@ name: spell burger recipe result: FoodBurgerSpell time: 10 + group: Savory solids: FoodBreadBun: 1 ClothingHeadHatWizard: 1 @@ -313,6 +345,7 @@ name: super bite burger recipe result: FoodBurgerSuper time: 25 + group: Savory reagents: TableSalt: 5 solids: @@ -327,6 +360,7 @@ name: tofu burger recipe result: FoodBurgerTofu time: 10 + group: Savory solids: FoodBreadBun: 1 FoodTofuSlice: 1 @@ -336,6 +370,7 @@ name: xenoburger recipe result: FoodBurgerXeno time: 10 + group: Savory solids: FoodBreadBun: 1 FoodMeatXeno: 1 @@ -344,6 +379,7 @@ id: RecipeMothRoachburger name: mothroachburger recipe result: FoodBurgerMothRoach + group: Savory solids: FoodBreadBun: 1 MobMothroach: 1 @@ -355,6 +391,7 @@ name: banana bread recipe result: FoodBreadBanana time: 15 + group: LoafCakes solids: FoodDough: 1 FoodBanana: 1 @@ -364,6 +401,7 @@ name: cornbread recipe result: FoodBreadCorn time: 10 + group: Breads solids: FoodDoughCornmeal: 1 @@ -372,6 +410,7 @@ name: cream cheese bread recipe result: FoodBreadCreamcheese time: 15 + group: Breads reagents: Milk: 5 solids: @@ -383,6 +422,7 @@ name: meat bread recipe result: FoodBreadMeat time: 15 + group: Breads solids: FoodDough: 1 FoodMeatCutlet: 2 @@ -393,6 +433,7 @@ name: mimana bread recipe result: FoodBreadMimana time: 15 + group: Breads reagents: Nothing: 5 solids: @@ -404,6 +445,7 @@ name: bread recipe result: FoodBreadPlain time: 10 + group: Breads solids: FoodDough: 1 @@ -412,6 +454,7 @@ name: cotton bread recipe result: FoodBreadCotton time: 10 + group: Moth solids: FoodDoughCotton: 1 @@ -420,6 +463,7 @@ name: sausage bread recipe result: FoodBreadSausage time: 15 + group: Breads solids: FoodDough: 1 FoodMeat: 1 #replace with sausage @@ -429,6 +473,7 @@ name: spider meat bread recipe result: FoodBreadMeatSpider time: 15 + group: Breads solids: FoodDough: 1 FoodMeatSpiderCutlet: 2 @@ -439,6 +484,7 @@ name: tofu bread recipe result: FoodBreadTofu time: 15 + group: Breads solids: FoodDough: 1 FoodTofu: 1 @@ -448,6 +494,7 @@ name: xeno meat bread recipe result: FoodBreadMeatXeno time: 15 + group: Breads solids: FoodDough: 1 FoodMeatXenoCutlet: 2 @@ -460,6 +507,7 @@ name: baguette recipe result: FoodBreadBaguette time: 15 + group: Breads reagents: TableSalt: 5 Blackpepper: 5 @@ -471,6 +519,7 @@ name: baguette recipe result: FoodBreadBaguetteCotton time: 15 + group: Moth reagents: TableSalt: 5 Blackpepper: 5 @@ -483,6 +532,7 @@ result: WeaponBaguette secretRecipe: true time: 15 + group: Secret reagents: TableSalt: 5 Blackpepper: 5 @@ -495,6 +545,7 @@ name: buttered toast recipe result: FoodBreadButteredToast time: 5 + group: Breads solids: FoodBreadPlainSlice: 1 FoodButterSlice: 1 @@ -504,6 +555,7 @@ name: french toast recipe result: FoodBreadFrenchToast time: 5 + group: Breakfast reagents: Milk: 5 Egg: 12 @@ -515,6 +567,7 @@ name: garlic bread slice recipe result: FoodBreadGarlicSlice time: 5 + group: Breads solids: FoodBreadPlainSlice: 1 FoodGarlic: 1 @@ -525,6 +578,7 @@ name: jelly toast recipe result: FoodBreadJellySlice time: 5 + group: Breads solids: FoodBreadPlainSlice: 1 FoodJellyAmanita: 1 #replace with jelly @@ -534,6 +588,7 @@ name: moldy bread slice recipe result: FoodBreadMoldySlice time: 5 + group: Breads solids: FoodBreadPlainSlice: 1 FoodFlyAmanita: 1 @@ -543,6 +598,7 @@ name: two slice recipe result: FoodBreadTwoSlice time: 5 + group: Breads reagents: Wine: 5 solids: @@ -553,6 +609,7 @@ name: onion rings recipe result: FoodOnionRings time: 15 + group: Savory solids: FoodOnionSlice: 1 @@ -562,6 +619,7 @@ name: margherita pizza recipe result: FoodPizzaMargherita time: 30 + group: Pizza solids: FoodDoughFlat: 1 FoodCheeseSlice: 1 @@ -572,6 +630,7 @@ name: mushroom pizza recipe result: FoodPizzaMushroom time: 30 + group: Pizza solids: FoodDoughFlat: 1 FoodMushroom: 5 @@ -581,6 +640,7 @@ name: meat pizza recipe result: FoodPizzaMeat time: 30 + group: Pizza solids: FoodDoughFlat: 1 FoodMeat: 3 @@ -592,6 +652,7 @@ name: vegetable pizza recipe result: FoodPizzaVegetable time: 30 + group: Pizza solids: FoodDoughFlat: 1 FoodEggplant: 1 @@ -604,6 +665,7 @@ name: Hawaiian pizza recipe result: FoodPizzaPineapple time: 30 + group: Pizza solids: FoodDoughFlat: 1 FoodMeatChickenCutlet: 3 @@ -614,6 +676,7 @@ name: dank pizza recipe result: FoodPizzaDank time: 30 + group: Pizza solids: FoodDoughFlat: 1 LeavesCannabis: 2 @@ -625,6 +688,7 @@ name: donk-pocket pizza recipe result: FoodPizzaDonkpocket time: 30 + group: Pizza solids: FoodDoughFlat: 1 FoodDonkpocketWarm: 3 @@ -636,6 +700,7 @@ name: spicy rock pizza recipe result: FoodPizzaUranium time: 30 + group: Pizza solids: FoodDoughFlat: 1 FoodChiliPepper: 2 @@ -647,6 +712,7 @@ name: cotton pizza recipe result: FoodPizzaCotton time: 30 + group: Moth solids: FoodDoughCottonFlat: 1 CottonBol: 4 @@ -657,6 +723,7 @@ name: boiled spaghetti recipe result: FoodNoodlesBoiled time: 15 + group: Pasta reagents: Flour: 15 Egg: 6 @@ -667,6 +734,7 @@ name: pasta tomato recipe result: FoodNoodles time: 10 + group: Pasta solids: FoodNoodlesBoiled: 1 FoodTomato: 2 @@ -676,6 +744,7 @@ name: spaghetti & meatballs recipe result: FoodNoodlesMeatball time: 10 + group: Pasta solids: FoodNoodlesBoiled: 1 FoodMeatMeatball: 2 @@ -685,6 +754,7 @@ name: butter noodles recipe result: FoodNoodlesButter time: 10 + group: Pasta solids: FoodNoodlesBoiled: 1 FoodButter: 1 @@ -694,6 +764,7 @@ name: chow mein recipe result: FoodNoodlesChowmein time: 10 + group: Pasta reagents: Egg: 6 solids: @@ -707,6 +778,7 @@ name: oatmeal recipe result: FoodOatmeal time: 15 + group: Savory reagents: Oats: 15 Water: 10 @@ -718,6 +790,7 @@ name: boiled rice recipe result: FoodRiceBoiled time: 15 + group: Savory reagents: Rice: 15 Water: 10 @@ -729,6 +802,7 @@ name: rice pudding recipe result: FoodRicePudding time: 15 + group: Dessert reagents: Rice: 15 Milk: 10 @@ -741,6 +815,7 @@ name: rice and pork recipe result: FoodRicePork time: 15 + group: Savory solids: FoodRiceBoiled: 1 FoodMeatCutlet: 3 @@ -750,6 +825,7 @@ name: black-eyed gumbo recipe result: FoodRiceGumbo time: 15 + group: Savory solids: FoodRiceBoiled: 1 FoodMeatCutlet: 3 @@ -760,6 +836,7 @@ name: egg-fried rice recipe result: FoodRiceEgg time: 15 + group: Savory reagents: Egg: 6 solids: @@ -771,6 +848,7 @@ name: copypasta recipe result: FoodNoodlesCopy time: 10 + group: Pasta solids: FoodNoodles: 2 @@ -780,6 +858,7 @@ name: bisque recipe result: FoodSoupBisque time: 10 + group: Soup reagents: Water: 10 solids: @@ -793,6 +872,7 @@ name: meatball soup recipe result: FoodSoupMeatball time: 10 + group: Soup reagents: Water: 10 solids: @@ -806,6 +886,7 @@ name: nettle soup recipe result: FoodSoupNettle time: 10 + group: Soup reagents: Water: 10 Egg: 6 @@ -819,6 +900,7 @@ name: eyeball soup recipe result: FoodSoupEyeball time: 10 + group: Soup reagents: Water: 10 solids: @@ -832,6 +914,7 @@ name: amanita jelly recipe result: FoodJellyAmanita time: 10 + group: Savory reagents: Water: 5 Vodka: 5 @@ -843,6 +926,7 @@ name: onion soup recipe result: FoodSoupOnion time: 10 + group: Soup reagents: Water: 10 solids: @@ -855,6 +939,7 @@ name: mushroom soup recipe result: FoodSoupMushroom time: 10 + group: Soup reagents: Water: 5 Milk: 5 @@ -867,6 +952,7 @@ name: stew recipe result: FoodSoupStew time: 10 + group: Soup reagents: Water: 10 solids: @@ -883,6 +969,7 @@ name: tomato soup recipe result: FoodSoupTomato time: 10 + group: Soup reagents: Water: 10 solids: @@ -894,6 +981,7 @@ name: tomato blood soup recipe result: FoodSoupTomatoBlood time: 10 + group: Soup reagents: Blood: 10 solids: @@ -905,6 +993,7 @@ name: wing fang chu recipe result: FoodSoupWingFangChu time: 10 + group: Soup reagents: Soysauce: 5 solids: @@ -916,6 +1005,7 @@ name: wing fang chu recipe result: FoodSoupWingFangChu time: 10 + group: Soup reagents: Soysauce: 5 solids: @@ -927,6 +1017,7 @@ name: vegetable soup recipe result: FoodSoupVegetable time: 10 + group: Soup reagents: Water: 5 solids: @@ -941,6 +1032,7 @@ name: clown tears soup recipe result: FoodSoupClown time: 10 + group: Soup reagents: Water: 10 solids: @@ -954,6 +1046,7 @@ name: monkeys delight recipe result: FoodSoupMonkey time: 10 + group: Soup reagents: Flour: 5 TableSalt: 1 @@ -968,6 +1061,7 @@ name: bungo soup recipe result: FoodSoupBungo time: 10 + group: Soup reagents: Water: 5 solids: @@ -980,6 +1074,7 @@ name: boiled snail recipe result: FoodMeatSnailCooked time: 5 + group: Savory reagents: Water: 10 solids: @@ -990,6 +1085,7 @@ name: escargot recipe result: FoodSoupEscargot time: 10 + group: Soup reagents: Water: 5 solids: @@ -1005,6 +1101,7 @@ name: amanita pie recipe result: FoodPieAmanita time: 15 + group: Pie solids: FoodDoughPie: 1 FoodFlyAmanita: 1 @@ -1015,6 +1112,7 @@ name: apple pie recipe result: FoodPieApple time: 15 + group: Pie solids: FoodDoughPie: 1 FoodApple: 3 @@ -1025,6 +1123,7 @@ name: baklava recipe result: FoodPieBaklava time: 15 + group: BarsAndCookies solids: FoodDoughPie: 1 FoodSnackPistachios: 1 #i'd rather use a botany crop but we don't have nuts yet @@ -1035,6 +1134,7 @@ name: banana cream pie recipe result: FoodPieBananaCream time: 15 + group: Pie solids: FoodDoughPie: 1 FoodBanana: 3 @@ -1045,6 +1145,7 @@ name: berry clafoutis recipe result: FoodPieClafoutis time: 15 + group: Pie solids: FoodDoughPie: 1 FoodBerries: 3 @@ -1055,6 +1156,7 @@ name: cherry pie recipe result: FoodPieCherry time: 15 + group: Pie solids: FoodDoughPie: 1 FoodCherry: 5 @@ -1065,6 +1167,7 @@ name: frosty pie recipe result: FoodPieFrosty time: 15 + group: Pie solids: FoodDoughPie: 1 FoodChillyPepper: 3 @@ -1075,6 +1178,7 @@ name: meat pie recipe result: FoodPieMeat time: 15 + group: Pie solids: FoodDoughPie: 1 FoodMeat: 3 @@ -1085,6 +1189,7 @@ name: pumpkin pie recipe result: FoodPiePumpkin time: 15 + group: Pie solids: FoodDoughPie: 1 FoodPumpkin: 1 @@ -1105,6 +1210,7 @@ name: xeno pie recipe result: FoodPieXeno time: 15 + group: Pie solids: FoodDoughPie: 1 FoodMeatXeno: 3 @@ -1117,6 +1223,7 @@ name: chocolate lava tart recipe result: FoodTartCoco time: 15 + group: Pie reagents: Sugar: 5 Milk: 5 @@ -1130,6 +1237,7 @@ name: golden apple streusel tart recipe result: FoodTartGapple time: 15 + group: Pie reagents: Gold: 10 Sugar: 5 @@ -1144,6 +1252,7 @@ name: grape tart recipe result: FoodTartGrape time: 15 + group: Pie reagents: Sugar: 5 Milk: 5 @@ -1157,6 +1266,7 @@ name: mime tart recipe result: FoodTartMime time: 15 + group: Pie reagents: Sugar: 5 Milk: 5 @@ -1172,6 +1282,7 @@ name: Cuban carp recipe result: FoodMealCubancarp time: 15 + group: Savory solids: FoodDough: 1 FoodCheeseSlice: 2 @@ -1183,6 +1294,7 @@ name: sashimi recipe result: FoodMealSashimi time: 15 + group: Savory reagents: TableSalt: 1 solids: @@ -1193,6 +1305,7 @@ name: salty sweet misocola soup recipe result: DisgustingSweptSoup time: 15 + group: Savory reagents: Cola: 5 solids: @@ -1203,6 +1316,7 @@ name: loaded baked potato recipe result: FoodMealPotatoLoaded time: 15 + group: Savory solids: FoodPotato: 1 FoodCheeseSlice: 1 @@ -1212,6 +1326,7 @@ name: space fries recipe result: FoodMealFries time: 15 + group: Savory reagents: TableSalt: 5 solids: @@ -1222,6 +1337,7 @@ name: cheesy fries recipe result: FoodMealFriesCheesy time: 15 + group: Savory reagents: TableSalt: 5 solids: @@ -1233,6 +1349,7 @@ name: carrot fries recipe result: FoodMealFriesCarrot time: 15 + group: Savory reagents: TableSalt: 5 solids: @@ -1243,6 +1360,7 @@ name: nachos recipe result: FoodMealNachos time: 10 + group: Savory reagents: TableSalt: 1 solids: @@ -1254,6 +1372,7 @@ name: cheesy nachos recipe result: FoodMealNachosCheesy time: 10 + group: Savory reagents: TableSalt: 1 solids: @@ -1266,6 +1385,7 @@ name: cuban nachos recipe result: FoodMealNachosCuban time: 10 + group: Savory reagents: Ketchup: 5 solids: @@ -1278,6 +1398,7 @@ name: popcorn recipe result: FoodSnackPopcorn time: 20 + group: Savory solids: FoodCorn: 1 @@ -1286,6 +1407,7 @@ name: pancake recipe result: FoodBakedPancake time: 5 + group: Breakfast reagents: Flour: 5 Milk: 5 @@ -1296,6 +1418,7 @@ name: blueberry pancake recipe result: FoodBakedPancakeBb time: 5 + group: Breakfast reagents: Flour: 5 Milk: 5 @@ -1308,6 +1431,7 @@ name: waffle recipe result: FoodBakedWaffle time: 10 + group: Breakfast reagents: Flour: 5 Milk: 5 @@ -1319,6 +1443,7 @@ name: soy waffle recipe result: FoodBakedWaffleSoy time: 10 + group: Breakfast reagents: Flour: 5 MilkSoy: 5 @@ -1330,6 +1455,7 @@ name: cookie recipe result: FoodBakedCookie time: 5 + group: BarsAndCookies reagents: Flour: 5 Sugar: 5 @@ -1342,6 +1468,7 @@ name: sugar cookie recipe result: FoodBakedCookieSugar time: 5 + group: BarsAndCookies reagents: Flour: 5 Sugar: 10 @@ -1353,6 +1480,7 @@ name: raisin cookie recipe result: FoodBakedCookieRaisin time: 5 + group: BarsAndCookies reagents: Flour: 5 Sugar: 5 @@ -1364,6 +1492,7 @@ name: oatmeal cookie recipe result: FoodBakedCookieOatmeal time: 5 + group: BarsAndCookies reagents: Oats: 5 Sugar: 5 @@ -1375,6 +1504,7 @@ name: chocolate chip pancake recipe result: FoodBakedPancakeCc time: 5 + group: BarsAndCookies reagents: Flour: 5 Milk: 5 @@ -1387,6 +1517,7 @@ name: apple cake recipe result: FoodCakeApple time: 5 + group: Cake solids: FoodCakePlain: 1 FoodApple: 3 @@ -1396,6 +1527,7 @@ name: carrot cake recipe result: FoodCakeCarrot time: 5 + group: Cake solids: FoodCakePlain: 1 FoodCarrot: 3 @@ -1405,6 +1537,7 @@ name: lemon cake recipe result: FoodCakeLemon time: 5 + group: Cake solids: FoodCakePlain: 1 FoodLemon: 3 @@ -1414,6 +1547,7 @@ name: lemoon cake recipe result: FoodCakeLemoon time: 5 + group: Cake solids: FoodCakePlain: 1 FoodLemoon: 2 @@ -1424,6 +1558,7 @@ name: orange cake recipe result: FoodCakeOrange time: 5 + group: Cake solids: FoodCakePlain: 1 FoodOrange: 3 @@ -1433,6 +1568,7 @@ name: blueberry cake recipe result: FoodCakeBlueberry time: 5 + group: Cake solids: FoodCakePlain: 1 FoodBerries: 3 @@ -1442,6 +1578,7 @@ name: lime cake recipe result: FoodCakeLime time: 5 + group: Cake solids: FoodCakePlain: 1 FoodLime: 3 @@ -1451,6 +1588,7 @@ name: cheese cake recipe result: FoodCakeCheese time: 5 + group: Cake reagents: Cream: 10 solids: @@ -1462,6 +1600,7 @@ name: pumpkin cake recipe result: FoodCakePumpkin time: 5 + group: Cake solids: FoodCakePlain: 1 FoodPumpkin: 1 @@ -1471,6 +1610,7 @@ name: clown cake recipe result: FoodCakeClown time: 5 + group: Cake solids: ClothingMaskClown: 1 FoodCakePlain: 1 @@ -1480,6 +1620,7 @@ name: cake recipe result: FoodCakePlain time: 15 + group: Cake solids: FoodCakeBatter: 1 @@ -1488,6 +1629,7 @@ name: birthday cake recipe result: FoodCakeBirthday time: 5 + group: Cake reagents: Cream: 5 solids: @@ -1498,6 +1640,7 @@ name: chocolate cake recipe result: FoodCakeChocolate time: 5 + group: Cake solids: FoodCakePlain: 1 FoodSnackChocolateBar: 2 @@ -1507,6 +1650,7 @@ name: brain cake recipe result: FoodCakeBrain time: 15 + group: Cake solids: FoodCakePlain: 1 OrganHumanBrain: 1 @@ -1516,6 +1660,7 @@ name: slime cake recipe result: FoodCakeSlime time: 5 + group: Cake reagents: Slime: 15 solids: @@ -1526,6 +1671,7 @@ name: cat cake recipe result: MobCatCake time: 15 + group: Cake reagents: Milk: 15 Cognizine: 5 @@ -1539,6 +1685,7 @@ name: bread dog recipe result: MobBreadDog time: 15 + group: Breads reagents: Cognizine: 5 solids: @@ -1551,6 +1698,7 @@ name: dumplings recipe result: FoodBakedDumplings time: 15 + group: Savory reagents: Water: 10 UncookedAnimalProteins: 6 @@ -1562,6 +1710,7 @@ name: brownie recipe result: FoodBakedBrownieBatch time: 25 + group: BarsAndCookies reagents: Flour: 15 Sugar: 30 @@ -1576,6 +1725,7 @@ name: warm donk pocket recipe result: FoodDonkpocketWarm time: 5 + group: Savory solids: FoodDonkpocket: 1 @@ -1584,6 +1734,7 @@ name: warm dank pocket recipe result: FoodDonkpocketDankWarm time: 5 + group: Savory solids: FoodDonkpocketDank: 1 @@ -1592,6 +1743,7 @@ name: warm spicy donk-pocket recipe result: FoodDonkpocketSpicyWarm time: 5 + group: Savory solids: FoodDonkpocketSpicy: 1 @@ -1600,6 +1752,7 @@ name: warm teriyaki-pocket recipe result: FoodDonkpocketTeriyakiWarm time: 5 + group: Savory solids: FoodDonkpocketTeriyaki: 1 @@ -1608,6 +1761,7 @@ name: warm pizza-pocket recipe result: FoodDonkpocketPizzaWarm time: 5 + group: Savory solids: FoodDonkpocketPizza: 1 @@ -1616,6 +1770,7 @@ name: warm honk-pocket recipe result: FoodDonkpocketHonkWarm time: 5 + group: Savory solids: FoodDonkpocketHonk: 1 @@ -1624,6 +1779,7 @@ name: warm berry-pocket recipe result: FoodDonkpocketBerryWarm time: 5 + group: Savory solids: FoodDonkpocketBerry: 1 @@ -1632,6 +1788,7 @@ name: warm stonk-pocket recipe result: FoodDonkpocketStonkWarm time: 5 + group: Savory solids: FoodDonkpocketStonk: 1 @@ -1640,6 +1797,7 @@ name: warm carp-pocket recipe result: FoodDonkpocketCarpWarm time: 5 + group: Savory solids: FoodDonkpocketCarp: 1 @@ -1649,6 +1807,7 @@ name: hot chili recipe result: FoodSoupChiliHot time: 20 + group: Soup solids: FoodBowlBig: 1 FoodChiliPepper: 1 @@ -1661,6 +1820,7 @@ name: cold chili recipe result: FoodSoupChiliCold time: 5 + group: Soup reagents: Nitrogen: 5 solids: @@ -1671,6 +1831,7 @@ name: clown's tears recipe result: FoodSoupClown time: 15 + group: Soup solids: FoodBowlBig: 1 FoodOnionSlice: 1 @@ -1682,6 +1843,7 @@ name: chili con carnival recipe result: FoodSoupChiliClown time: 30 + group: Soup solids: FoodBowlBig: 1 FoodChiliPepper: 1 @@ -1695,6 +1857,7 @@ name: queso recipe result: FoodMealQueso time: 15 + group: Soup #todo Add blackpepper #reagents: #blackpepper: 5 @@ -1707,6 +1870,7 @@ name: BBQ ribs recipe result: FoodMealRibs time: 15 + group: Savory reagents: BbqSauce: 5 solids: @@ -1718,6 +1882,7 @@ name: enchiladas recipe result: FoodMealEnchiladas time: 20 + group: Savory solids: FoodChiliPepper: 2 FoodMeatCutlet: 1 @@ -1729,6 +1894,7 @@ name: herb salad recipe result: FoodSaladHerb time: 5 + group: Salad solids: FoodBowlBig: 1 FoodAmbrosiaVulgaris: 3 @@ -1739,6 +1905,7 @@ name: valid salad recipe result: FoodSaladValid time: 5 + group: Salad solids: FoodBowlBig: 1 FoodAmbrosiaVulgaris: 3 @@ -1750,6 +1917,7 @@ name: coleslaw recipe result: FoodSaladColeslaw time: 5 + group: Salad reagents: Vinaigrette: 5 solids: @@ -1762,6 +1930,7 @@ name: caesar salad recipe result: FoodSaladCaesar time: 5 + group: Salad reagents: OilOlive: 5 solids: @@ -1776,6 +1945,7 @@ name: citrus salad recipe result: FoodSaladCitrus time: 5 + group: Salad solids: FoodBowlBig: 1 FoodOrange: 1 @@ -1787,6 +1957,7 @@ name: kimchi salad recipe result: FoodSaladKimchi time: 5 + group: Salad reagents: Vinegar: 5 solids: @@ -1800,6 +1971,7 @@ name: fruit salad recipe result: FoodSaladFruit time: 5 + group: Salad solids: FoodBowlBig: 1 FoodOrange: 1 @@ -1812,6 +1984,7 @@ name: jungle salad recipe result: FoodSaladJungle time: 5 + group: Salad solids: FoodBowlBig: 1 FoodBanana: 1 @@ -1824,6 +1997,7 @@ name: watermelon fruit bowl recipe result: FoodSaladWatermelonFruitBowl time: 5 + group: Salad solids: FoodWatermelon: 1 FoodApple: 1 @@ -1839,6 +2013,7 @@ name: muffin recipe result: FoodBakedMuffin time: 15 + group: Dessert solids: FoodPlateMuffinTin: 1 FoodDoughSlice: 1 @@ -1850,6 +2025,7 @@ name: chocolate muffin recipe result: FoodBakedMuffinChocolate time: 15 + group: Dessert solids: FoodPlateMuffinTin: 1 FoodDoughSlice: 1 @@ -1862,6 +2038,7 @@ name: berry muffin recipe result: FoodBakedMuffinBerry time: 15 + group: Dessert solids: FoodPlateMuffinTin: 1 FoodDoughSlice: 1 @@ -1874,6 +2051,7 @@ name: banana muffin recipe result: FoodBakedMuffinBanana time: 15 + group: Dessert solids: FoodPlateMuffinTin: 1 FoodDoughSlice: 1 @@ -1886,6 +2064,7 @@ name: cherry muffin recipe result: FoodBakedMuffinCherry time: 15 + group: Dessert solids: FoodPlateMuffinTin: 1 FoodDoughSlice: 1 @@ -1908,6 +2087,7 @@ name: dried tobacco leaves recipe result: LeavesTobaccoDried time: 10 + group: Medicinal solids: LeavesTobacco: 1 @@ -1916,6 +2096,7 @@ name: dried cannabis leaves recipe result: LeavesCannabisDried time: 10 + group: Medicinal solids: LeavesCannabis: 1 @@ -1924,6 +2105,7 @@ name: dried rainbow cannabis leaves recipe result: LeavesCannabisRainbowDried time: 10 + group: Medicinal solids: LeavesCannabisRainbow: 1 @@ -1953,6 +2135,7 @@ name: chevre chaud recipe result: FoodBakedChevreChaud time: 5 + group: Savory solids: FoodChevreSlice: 1 FoodBreadBaguetteSlice: 1 @@ -1962,6 +2145,7 @@ name: cotton chevre chaud recipe result: FoodBakedChevreChaudCotton time: 5 + group: Moth solids: FoodChevreSlice: 1 FoodBreadBaguetteCottonSlice: 1 @@ -1980,6 +2164,7 @@ name: cannabis brownie recipe result: FoodBakedCannabisBrownieBatch time: 25 + group: BarsAndCookies reagents: Flour: 15 Sugar: 30 @@ -1993,6 +2178,7 @@ name: corn in butter recipe result: FoodMealCornInButter time: 10 + group: Savory solids: FoodCorn: 1 FoodPlate: 1 @@ -2003,6 +2189,7 @@ name: pea soup recipe result: FoodSoupPea time: 10 + group: Soup solids: FoodPeaPod: 2 FoodBowlBig: 1 @@ -2014,6 +2201,7 @@ name: taco shell recipe result: FoodTacoShell time: 5 + group: Breads solids: FoodDoughTortillaFlat: 1 # one third of a standard bread dough recipe @@ -2022,6 +2210,7 @@ name: beef taco recipe result: FoodTacoBeef time: 10 + group: Savory solids: FoodTacoShell: 1 FoodMeatCutlet: 1 @@ -2032,6 +2221,7 @@ name: chicken taco recipe result: FoodTacoChicken time: 10 + group: Savory solids: FoodTacoShell: 1 FoodMeatChickenCutlet: 1 @@ -2042,6 +2232,7 @@ name: fish taco recipe result: FoodTacoFish time: 10 + group: Savory solids: FoodTacoShell: 1 FoodMeatFish: 1 @@ -2054,6 +2245,7 @@ name: rat taco recipe result: FoodTacoRat time: 10 + group: Savory solids: FoodTacoShell: 1 FoodCheeseSlice: 1 @@ -2064,6 +2256,7 @@ name: beef taco supreme recipe result: FoodTacoBeefSupreme time: 10 + group: Savory solids: FoodTacoShell: 1 FoodCheeseSlice: 1 @@ -2077,6 +2270,7 @@ name: beef taco supreme recipe result: FoodTacoChickenSupreme time: 10 + group: Savory solids: FoodTacoShell: 1 FoodCheeseSlice: 1 @@ -2090,6 +2284,7 @@ name: croissant recipe result: FoodBakedCroissant time: 5 + group: Dessert solids: FoodCroissantRaw: 1 FoodButterSlice: 1 @@ -2099,6 +2294,7 @@ name: cotton croissant recipe result: FoodBakedCroissantCotton time: 5 + group: Moth solids: FoodCroissantRawCotton: 1 FoodButterSlice: 1 @@ -2109,6 +2305,7 @@ result: WeaponCroissant secretRecipe: true time: 5 + group: Secret solids: FoodCroissantRaw: 1 FoodButterSlice: 1 @@ -2119,6 +2316,7 @@ name: inert meat anomaly recipe result: FoodMeatAnomaly time: 5 + group: Savory solids: AnomalyCoreFleshInert: 1 @@ -2127,6 +2325,7 @@ name: meat anomaly recipe result: FoodMeatAnomaly time: 5 + group: Savory solids: AnomalyCoreFlesh: 1 @@ -2135,6 +2334,7 @@ name: cooked meat anomaly recipe result: FoodMeatAnomalyCooked time: 5 + group: Savory solids: FoodMeatAnomaly: 1 diff --git a/Resources/Prototypes/Recipes/Cooking/medical_recipes.yml b/Resources/Prototypes/Recipes/Cooking/medical_recipes.yml index 9d1947f03e..206ab848f6 100644 --- a/Resources/Prototypes/Recipes/Cooking/medical_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/medical_recipes.yml @@ -3,6 +3,7 @@ name: aloe cream recipe result: AloeCream time: 10 + group: Medicinal solids: FoodAloe: 1 @@ -11,6 +12,7 @@ name: medicated suture recipe result: MedicatedSuture time: 10 + group: Medicinal solids: FoodPoppy: 1 Brutepack: 1 @@ -24,6 +26,7 @@ name: regenerative mesh recipe result: RegenerativeMesh time: 10 + group: Medicinal solids: FoodAloe: 1 Ointment: 1 diff --git a/Resources/ServerInfo/Guidebook/Service/BarsAndCookiesRecipes.xml b/Resources/ServerInfo/Guidebook/Service/BarsAndCookiesRecipes.xml new file mode 100644 index 0000000000..24284c688e --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/BarsAndCookiesRecipes.xml @@ -0,0 +1,9 @@ + + +# Bars & Cookies + +A crowd-pleaser, many of these can be made from pantry ingredients to serve to many crewmates. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/BreadRecipes.xml b/Resources/ServerInfo/Guidebook/Service/BreadRecipes.xml new file mode 100644 index 0000000000..4dd081507b --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/BreadRecipes.xml @@ -0,0 +1,9 @@ + + +# Breads + +A fresh loaf of bread is without equal, and breads are often incorporated into other recipes. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/BreakfastRecipes.xml b/Resources/ServerInfo/Guidebook/Service/BreakfastRecipes.xml new file mode 100644 index 0000000000..6f7e2f4805 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/BreakfastRecipes.xml @@ -0,0 +1,9 @@ + + +# Breakfast Recipes + +A wonderful way to start a shift! Or perhaps, to treat the crew to brunch midway through. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/CakeRecipes.xml b/Resources/ServerInfo/Guidebook/Service/CakeRecipes.xml new file mode 100644 index 0000000000..9c37cd0850 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/CakeRecipes.xml @@ -0,0 +1,9 @@ + + +# Cakes + +Cakes are a timeless classic, combining fresh ingredients and a delicious tender base to make something that can serve a lot of crewmates. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/DessertRecipes.xml b/Resources/ServerInfo/Guidebook/Service/DessertRecipes.xml new file mode 100644 index 0000000000..359ffbb396 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/DessertRecipes.xml @@ -0,0 +1,9 @@ + + +# Pastries & Desserts + +A special sweet treat can go a long way to boosting the crew's morale. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml index 98d892db82..5da4d1c94a 100644 --- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml +++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml @@ -1,94 +1,52 @@ -## Starting Out -This is not an extensive list of recipes, these listings are to showcase the basics. -Mixes are done in a Beaker, foods are cooked in a Microwave. Cook times will be listed. +# Microwave Recipes -WARNING: This is not an automatically generated list, things here may become outdated. The wiki has much more than is listed here. +This is the latest published version of NanoTrasen Central Command Kitchen de Cuisine's recipe collection for chefs upon NanoTrasen vessels to prepare. -## The Basics: Mixing +## Pizza Pies + -- Dough = 15 Flour, 10 Water -- Cornmeal Dough = 1 Egg (6u), 10 Milk, 15 Cornmeal -- Tortila Dough = 15 Cornmeal, 10 Water -- Tofu = 5 Enzyme (Catalyst), 30 Soy Milk -- Pie Dough = 2 Eggs (12u), 15 Flour, 5 Table Salt -- Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar, 5 Milk -- Vegan Cake Batter = 15 Soy Milk, 15 Flour, 5 Sugar -- Butter = 30 Milk, 5 Table Salt (Catalyst) -- Cheese Wheel = 5 Enzyme (Catalyst), 40 Milk -- Chèvre Log = 5 Enzyme (Catalyst), 10 Goat Milk -- Meatball = 1 Egg (6u), 5 Flour, 5 Uncooked Animal Proteins -- Chocolate = 6 Cocoa Powder, 2 Milk, 2 Sugar -- Uncooked Animal Protein: Grind Raw Meat +## Savory Cooking + -Buzz! Don't forget about Moth diet! -- Fiber: Juice Fabric in a Reagent Grinder, 3 Fiber per Fabric -- Cotton Dough = 5 Flour, 10 Fiber, 10 Water -- Cotton bread baked the same as default but with cotton dough instead -- Cotton Pizza: Microwave 1 Flat Cotton Dough and 4 Cotton Bolls for 30 Seconds +## Breads + - - - - - - - - - - +## Breakfast Foods + - - - - - - - +## Moth Foods + -## Secondary Products +## Pastas & Noodles + -- Dough Slice: Cut Dough -- Bun: Microwave Dough Slice for 5 Seconds -- Cutlet: Slice Raw Meat -- Cheese Wedge: Slice Cheese Wheel -- Flat Dough: Use a rolling pin or a round object (fire extinguisher, soda can, bottle) on Dough. -- Tortilla Dough Slice: cut Tortilla Dough -- Flat Tortilla Dough: Use a rolling pin or a round object (fire extinguisher, soda can, bottle) on Tortilla Dough Slice -- Taco Shell: Microwave Flat Tortilla Dough for 5 Seconds +## Pastries & Desserts + -## Food Examples +## Soups & Stews + -- Bread: Microwave Dough for 10 Seconds -- Plain Burger: Microwave 1 Bun and 1 Raw Meat for 10 Seconds -- Tomato Soup: 10u Water, 1 Bowl, and 2 Tomatoes for 10 Seconds -- Citrus Salad: 1 Bowl, 1 Lemon, 1 Lime, 1 Orange for 5 Seconds -- Margherita Pizza: Microwave 1 Flat Dough, 1 Cheese Wedge, and 4 Tomatoes for 30 Seconds -- Cake: 1 Cake Batter for 15 Seconds -- Apple Pie: 1 Pie Dough, 3 Apples, and 1 Pie Tin for 15 Seconds -- Beef Taco: Microwave 1 Taco Shell, 1 Raw Meat Cutlet, 1 Cheese Wedge for 10 Seconds -- Cuban Carp : Microwave 1 Dough, 1 Cheese Wedge, 1 Chili, 1 Carp Meat for 15 Seconds -- Banana Cream Pie : Microwave 1 Pie Dough, 3 Bananas, and 1 Pie Tin for 15 Seconds -- Carrot Fries : Microwave 1 Carrot, 15u Salt for 15 Seconds -- Pancake : Microwave 5u Flour, 5u Milk, 1 Egg (6u) for 5 Seconds +## Pies & Tarts + - - - - - - - - - - - - - - - - - +## Bars & Cookies + + +## Cakes + + +## Salads + + +## Medicinal + + +## Other + + +## Secret + diff --git a/Resources/ServerInfo/Guidebook/Service/MedicinalRecipes.xml b/Resources/ServerInfo/Guidebook/Service/MedicinalRecipes.xml new file mode 100644 index 0000000000..b6bcf4399a --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/MedicinalRecipes.xml @@ -0,0 +1,9 @@ + + +# Medicinal Recipes + +These preparations have interesting medical effects, or are just straight-up medicines. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/MothRecipes.xml b/Resources/ServerInfo/Guidebook/Service/MothRecipes.xml new file mode 100644 index 0000000000..6cdfb3a951 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/MothRecipes.xml @@ -0,0 +1,10 @@ + + +# Moth Foods + +Moths are sophonts too, and don't appreciate eating random garbage they found any more than other species do just because they eat fabrics. +Fixing them these wonderful meals is a great way to not embarass their dignity. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/OtherRecipes.xml b/Resources/ServerInfo/Guidebook/Service/OtherRecipes.xml new file mode 100644 index 0000000000..85ae524357 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/OtherRecipes.xml @@ -0,0 +1,9 @@ + + +# Other Recipes + +The NanoTrasen Central Command Kitchen de Cuisine is still deliberating on the categorization of these recipes. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/PastaRecipes.xml b/Resources/ServerInfo/Guidebook/Service/PastaRecipes.xml new file mode 100644 index 0000000000..3333cb9cf2 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/PastaRecipes.xml @@ -0,0 +1,9 @@ + + +# Pastas & Noodles + +There's nothing like a big bowl of noodles. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/PieRecipes.xml b/Resources/ServerInfo/Guidebook/Service/PieRecipes.xml new file mode 100644 index 0000000000..a4c9d9448a --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/PieRecipes.xml @@ -0,0 +1,9 @@ + + +# Pies & Bars + +Pies and bars are a great way to fix desserts for a group of people, and to make use of fresh ingredients you have. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/PizzaRecipes.xml b/Resources/ServerInfo/Guidebook/Service/PizzaRecipes.xml new file mode 100644 index 0000000000..3695b1dd6f --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/PizzaRecipes.xml @@ -0,0 +1,9 @@ + + +# Pizza Pies + +Pizzas are a great way to prepare food for a large crew, as each pizza is 8 servings. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/SaladRecipes.xml b/Resources/ServerInfo/Guidebook/Service/SaladRecipes.xml new file mode 100644 index 0000000000..0fe8755d1a --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/SaladRecipes.xml @@ -0,0 +1,9 @@ + + +# Salads + +Show off the freshness of your ingredients by serving them with just the right dressings and seasonings to bring out their best. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/SavoryRecipes.xml b/Resources/ServerInfo/Guidebook/Service/SavoryRecipes.xml new file mode 100644 index 0000000000..c09ef315dc --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/SavoryRecipes.xml @@ -0,0 +1,9 @@ + + +# Savory Recipes + +Savory meals are a favourite of meat-eating species such as reptilians and felinids, and are also usually quite nutritious. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/SecretRecipes.xml b/Resources/ServerInfo/Guidebook/Service/SecretRecipes.xml new file mode 100644 index 0000000000..73978f7d95 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/SecretRecipes.xml @@ -0,0 +1,9 @@ + + +# Secret Recipes + +Normal Nanotrasen-approved microwaves can't cook these recipes. + + + + diff --git a/Resources/ServerInfo/Guidebook/Service/SoupRecipes.xml b/Resources/ServerInfo/Guidebook/Service/SoupRecipes.xml new file mode 100644 index 0000000000..842caeaaa7 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Service/SoupRecipes.xml @@ -0,0 +1,9 @@ + + +# Soups & Stews + +A nice hearty bowl of soup is a great way to serve tough meats, or to preserve a delicate flavour. + + + + From 326bd7f93ae1cd2318f52edd6b30f9f3ad6125b4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 23 Feb 2025 15:25:51 +0000 Subject: [PATCH 147/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2288054b1e..e72366bf0a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: K-Dynamic - changes: - - message: CHIMP and APE particles should be almost as fast as before - type: Tweak - id: 7495 - time: '2024-10-08T18:29:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32690 - author: ss14nekow changes: - message: Added pumpkin pie! Can be made in the microwave with 1 pie tin, 1 pie @@ -3902,3 +3895,10 @@ id: 7994 time: '2025-02-23T13:01:06.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35354 +- author: sowelipililimute + changes: + - message: Added microwave cooking recipes to the guidebook + type: Add + id: 7995 + time: '2025-02-23T15:24:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34105 From 3192914fc532d492b6c6e396662227c0171d2c9a Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Sun, 23 Feb 2025 12:24:36 -0500 Subject: [PATCH 148/155] Fix/Addition - Wizard Survivor Antag Status (#35226) --- .../Rules/Components/SurvivorRuleComponent.cs | 8 ++ .../GameTicking/Rules/SurvivorRuleSystem.cs | 108 ++++++++++++++++++ Content.Server/Magic/MagicSystem.cs | 24 ++++ Content.Server/Roles/SurvivorRoleComponent.cs | 9 ++ .../Zombies/ZombieSystem.Transform.cs | 6 + .../Events/RandomGlobalSpawnSpellEvent.cs | 7 ++ Content.Shared/Magic/SharedMagicSystem.cs | 6 +- .../Survivor/Components/SurvivorComponent.cs | 9 ++ .../game-presets/preset-wizard.ftl | 36 ++++++ Resources/Prototypes/GameRules/survivor.yml | 5 + Resources/Prototypes/Magic/event_spells.yml | 4 +- Resources/Prototypes/Roles/Antags/wizard.yml | 8 ++ .../Prototypes/Roles/MindRoles/mind_roles.yml | 11 ++ Resources/Prototypes/Roles/role_types.yml | 1 + Resources/Prototypes/tags.yml | 6 + 15 files changed, 246 insertions(+), 2 deletions(-) create mode 100644 Content.Server/GameTicking/Rules/Components/SurvivorRuleComponent.cs create mode 100644 Content.Server/GameTicking/Rules/SurvivorRuleSystem.cs create mode 100644 Content.Server/Roles/SurvivorRoleComponent.cs create mode 100644 Content.Shared/Survivor/Components/SurvivorComponent.cs create mode 100644 Resources/Locale/en-US/game-ticking/game-presets/preset-wizard.ftl create mode 100644 Resources/Prototypes/GameRules/survivor.yml create mode 100644 Resources/Prototypes/Roles/Antags/wizard.yml diff --git a/Content.Server/GameTicking/Rules/Components/SurvivorRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/SurvivorRuleComponent.cs new file mode 100644 index 0000000000..5e6cc203d2 --- /dev/null +++ b/Content.Server/GameTicking/Rules/Components/SurvivorRuleComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Server.GameTicking.Rules.Components; + +/// +/// Component for the SurvivorRuleSystem. Game rule that turns everyone into a survivor and gives them the objective to escape centcom alive. +/// Started by Wizard Summon Guns/Magic spells. +/// +[RegisterComponent, Access(typeof(SurvivorRuleSystem))] +public sealed partial class SurvivorRuleComponent : Component; diff --git a/Content.Server/GameTicking/Rules/SurvivorRuleSystem.cs b/Content.Server/GameTicking/Rules/SurvivorRuleSystem.cs new file mode 100644 index 0000000000..00f652b6c6 --- /dev/null +++ b/Content.Server/GameTicking/Rules/SurvivorRuleSystem.cs @@ -0,0 +1,108 @@ +using Content.Server.Antag; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Mind; +using Content.Server.Roles; +using Content.Server.Shuttles.Systems; +using Content.Shared.GameTicking.Components; +using Content.Shared.Mind; +using Content.Shared.Mobs.Systems; +using Content.Shared.Survivor.Components; +using Content.Shared.Tag; +using Robust.Server.GameObjects; + +namespace Content.Server.GameTicking.Rules; + +public sealed class SurvivorRuleSystem : GameRuleSystem +{ + [Dependency] private readonly RoleSystem _role = default!; + [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly AntagSelectionSystem _antag = default!; + [Dependency] private readonly TransformSystem _xform = default!; + [Dependency] private readonly EmergencyShuttleSystem _eShuttle = default!; + [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetBriefing); + } + + // TODO: Planned rework post wizard release when RandomGlobalSpawnSpell becomes a gamerule + protected override void Started(EntityUid uid, SurvivorRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + var allAliveHumanMinds = _mind.GetAliveHumans(); + + foreach (var humanMind in allAliveHumanMinds) + { + if (!humanMind.Comp.OwnedEntity.HasValue) + continue; + + var mind = humanMind.Owner; + var ent = humanMind.Comp.OwnedEntity.Value; + + if (HasComp(mind) || _tag.HasTag(mind, "InvalidForSurvivorAntag")) + continue; + + EnsureComp(mind); + _role.MindAddRole(mind, "MindRoleSurvivor"); + _antag.SendBriefing(ent, Loc.GetString("survivor-role-greeting"), Color.Olive, null); + } + } + + private void OnGetBriefing(Entity ent, ref GetBriefingEvent args) + { + args.Append(Loc.GetString("survivor-role-greeting")); + } + + protected override void AppendRoundEndText(EntityUid uid, + SurvivorRuleComponent component, + GameRuleComponent gameRule, + ref RoundEndTextAppendEvent args) + { + base.AppendRoundEndText(uid, component, gameRule, ref args); + + // Using this instead of alive antagonists to make checking for shuttle & if the ent is alive easier + var existingSurvivors = AllEntityQuery(); + + var deadSurvivors = 0; + var aliveMarooned = 0; + var aliveOnShuttle = 0; + var eShuttle = _eShuttle.GetShuttle(); + + while (existingSurvivors.MoveNext(out _, out _, out var mindComp)) + { + // If their brain is gone or they respawned/became a ghost role + if (mindComp.CurrentEntity is null) + { + deadSurvivors++; + continue; + } + + var survivor = mindComp.CurrentEntity.Value; + + if (!_mobState.IsAlive(survivor)) + { + deadSurvivors++; + continue; + } + + if (eShuttle != null && eShuttle.Value.IsValid() && (Transform(eShuttle.Value).MapID == _xform.GetMapCoordinates(survivor).MapId)) + { + aliveOnShuttle++; + continue; + } + + aliveMarooned++; + } + + args.AddLine(Loc.GetString("survivor-round-end-dead-count", ("deadCount", deadSurvivors))); + args.AddLine(Loc.GetString("survivor-round-end-alive-count", ("aliveCount", aliveMarooned))); + args.AddLine(Loc.GetString("survivor-round-end-alive-on-shuttle-count", ("aliveCount", aliveOnShuttle))); + + // Player manifest at EOR shows who's a survivor so no need for extra info here. + } +} diff --git a/Content.Server/Magic/MagicSystem.cs b/Content.Server/Magic/MagicSystem.cs index a7e5e96786..34c12954c6 100644 --- a/Content.Server/Magic/MagicSystem.cs +++ b/Content.Server/Magic/MagicSystem.cs @@ -1,12 +1,20 @@ using Content.Server.Chat.Systems; +using Content.Server.GameTicking; +using Content.Server.GameTicking.Rules.Components; using Content.Shared.Magic; using Content.Shared.Magic.Events; +using Content.Shared.Mind; +using Content.Shared.Tag; +using Robust.Shared.Prototypes; namespace Content.Server.Magic; public sealed class MagicSystem : SharedMagicSystem { [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; public override void Initialize() { @@ -32,4 +40,20 @@ public sealed class MagicSystem : SharedMagicSystem Spawn(ev.Effect, perfXForm.Coordinates); Spawn(ev.Effect, targetXForm.Coordinates); } + + protected override void OnRandomGlobalSpawnSpell(RandomGlobalSpawnSpellEvent ev) + { + base.OnRandomGlobalSpawnSpell(ev); + + if (!ev.MakeSurvivorAntagonist) + return; + + if (_mind.TryGetMind(ev.Performer, out var mind, out _) && !_tag.HasTag(mind, "InvalidForSurvivorAntag")) + _tag.AddTag(mind, "InvalidForSurvivorAntag"); + + EntProtoId survivorRule = "Survivor"; + + if (!_gameTicker.IsGameRuleActive()) + _gameTicker.StartGameRule(survivorRule); + } } diff --git a/Content.Server/Roles/SurvivorRoleComponent.cs b/Content.Server/Roles/SurvivorRoleComponent.cs new file mode 100644 index 0000000000..e5e6dd9f87 --- /dev/null +++ b/Content.Server/Roles/SurvivorRoleComponent.cs @@ -0,0 +1,9 @@ +using Content.Shared.Roles; + +namespace Content.Server.Roles; + +/// +/// Adds to a mind role ent to tag they're a Survivor +/// +[RegisterComponent] +public sealed partial class SurvivorRoleComponent : BaseMindRoleComponent; diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index 7acfe9dbbd..82c9e2dacc 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -35,6 +35,7 @@ using Content.Shared.Prying.Components; using Content.Shared.Traits.Assorted; using Robust.Shared.Audio.Systems; using Content.Shared.Ghost.Roles.Components; +using Content.Shared.Tag; namespace Content.Server.Zombies; @@ -58,6 +59,7 @@ public sealed partial class ZombieSystem [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; [Dependency] private readonly NPCSystem _npc = default!; [Dependency] private readonly SharedRoleSystem _roles = default!; + [Dependency] private readonly TagSystem _tag = default!; /// /// Handles an entity turning into a zombie when they die or go into crit @@ -275,5 +277,9 @@ public sealed partial class ZombieSystem RaiseLocalEvent(target, ref ev, true); //zombies get slowdown once they convert _movementSpeedModifier.RefreshMovementSpeedModifiers(target); + + //Need to prevent them from getting an item, they have no hands. + // Also prevents them from becoming a Survivor. They're undead. + _tag.AddTag(target, "InvalidForGlobalSpawnSpell"); } } diff --git a/Content.Shared/Magic/Events/RandomGlobalSpawnSpellEvent.cs b/Content.Shared/Magic/Events/RandomGlobalSpawnSpellEvent.cs index c77607562a..eb39c0cd08 100644 --- a/Content.Shared/Magic/Events/RandomGlobalSpawnSpellEvent.cs +++ b/Content.Shared/Magic/Events/RandomGlobalSpawnSpellEvent.cs @@ -20,4 +20,11 @@ public sealed partial class RandomGlobalSpawnSpellEvent : InstantActionEvent, IS [DataField] public string? Speech { get; private set; } + + /// + /// Should this Global spawn spell turn its targets into a Survivor Antagonist? + /// Ignores the caster for this. + /// + [DataField] + public bool MakeSurvivorAntagonist = false; } diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs index 0be5646f4b..49f0825ddf 100644 --- a/Content.Shared/Magic/SharedMagicSystem.cs +++ b/Content.Shared/Magic/SharedMagicSystem.cs @@ -469,7 +469,8 @@ public abstract class SharedMagicSystem : EntitySystem #endregion #region Global Spells - private void OnRandomGlobalSpawnSpell(RandomGlobalSpawnSpellEvent ev) + // TODO: Change this into a "StartRuleAction" when actions with multiple events are supported + protected virtual void OnRandomGlobalSpawnSpell(RandomGlobalSpawnSpellEvent ev) { if (!_net.IsServer || ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer) || ev.Spawns is not { } spawns) return; @@ -486,6 +487,9 @@ public abstract class SharedMagicSystem : EntitySystem var ent = human.Comp.OwnedEntity.Value; + if (_tag.HasTag(ent, "InvalidForGlobalSpawnSpell")) + continue; + var mapCoords = _transform.GetMapCoordinates(ent); foreach (var spawn in EntitySpawnCollection.GetSpawns(spawns, _random)) { diff --git a/Content.Shared/Survivor/Components/SurvivorComponent.cs b/Content.Shared/Survivor/Components/SurvivorComponent.cs new file mode 100644 index 0000000000..140f688077 --- /dev/null +++ b/Content.Shared/Survivor/Components/SurvivorComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Survivor.Components; + +/// +/// Component to keep track of which entities are a Survivor antag. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SurvivorComponent : Component; diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-wizard.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-wizard.ftl new file mode 100644 index 0000000000..c355f4b9b0 --- /dev/null +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-wizard.ftl @@ -0,0 +1,36 @@ +## Survivor + +roles-antag-survivor-name = Survivor +# It's a Halo reference +roles-antag-survivor-objective = Current Objective: Survive + +survivor-role-greeting = + You are a Survivor. + Above all you need to make it back to CentComm alive. + Collect as much firepower as needed to guarantee your survival. + Trust no one. + +survivor-round-end-dead-count = +{ + $deadCount -> + [one] [color=red]{$deadCount}[/color] survivor died. + *[other] [color=red]{$deadCount}[/color] survivors died. +} + +survivor-round-end-alive-count = +{ + $aliveCount -> + [one] [color=yellow]{$aliveCount}[/color] survivor was marooned on the station. + *[other] [color=yellow]{$aliveCount}[/color] survivors were marooned on the station. +} + +survivor-round-end-alive-on-shuttle-count = +{ + $aliveCount -> + [one] [color=green]{$aliveCount}[/color] survivor made it out alive. + *[other] [color=green]{$aliveCount}[/color] survivors made it out alive. +} + +## TODO: Wizard + +## TODO: Wizard Apprentice (Coming sometime post-wizard release) diff --git a/Resources/Prototypes/GameRules/survivor.yml b/Resources/Prototypes/GameRules/survivor.yml new file mode 100644 index 0000000000..e8f73a2e27 --- /dev/null +++ b/Resources/Prototypes/GameRules/survivor.yml @@ -0,0 +1,5 @@ +- type: entity + id: Survivor + parent: BaseGameRule + components: + - type: SurvivorRule diff --git a/Resources/Prototypes/Magic/event_spells.yml b/Resources/Prototypes/Magic/event_spells.yml index 87b3a57107..a72dc8b217 100644 --- a/Resources/Prototypes/Magic/event_spells.yml +++ b/Resources/Prototypes/Magic/event_spells.yml @@ -26,6 +26,7 @@ sprite: Objects/Weapons/Guns/Rifles/ak.rsi state: base event: !type:RandomGlobalSpawnSpellEvent + makeSurvivorAntagonist: true spawns: - id: WeaponPistolViper orGroup: Guns @@ -158,7 +159,7 @@ - id: RevolverCapGunFake orGroup: Guns speech: action-speech-spell-summon-guns - + - type: entity id: ActionSummonMagic name: Summon Magic @@ -172,6 +173,7 @@ sprite: Objects/Magic/magicactions.rsi state: magicmissile event: !type:RandomGlobalSpawnSpellEvent + makeSurvivorAntagonist: true spawns: - id: SpawnSpellbook orGroup: Magics diff --git a/Resources/Prototypes/Roles/Antags/wizard.yml b/Resources/Prototypes/Roles/Antags/wizard.yml new file mode 100644 index 0000000000..e8ffe649e7 --- /dev/null +++ b/Resources/Prototypes/Roles/Antags/wizard.yml @@ -0,0 +1,8 @@ +# TODO: Actual wizard coming later, this is just for the survival antags + +- type: antag + id: Survivor + name: roles-antag-survivor-name + antagonist: true + objective: roles-antag-survivor-objective + # guides: [ ] diff --git a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml index e32c173870..ded64895f0 100644 --- a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml +++ b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml @@ -196,6 +196,17 @@ - type: MindRole antagPrototype: Rev +# Survivors (Wizard) +- type: entity + parent: BaseMindRoleAntag + id: MindRoleSurvivor + name: Survivor Role + components: + - type: MindRole + antagPrototype: Survivor + roleType: FreeAgent + - type: SurvivorRole + # Thief - type: entity parent: BaseMindRoleAntag diff --git a/Resources/Prototypes/Roles/role_types.yml b/Resources/Prototypes/Roles/role_types.yml index 326abe4ee4..97e11d80b2 100644 --- a/Resources/Prototypes/Roles/role_types.yml +++ b/Resources/Prototypes/Roles/role_types.yml @@ -35,3 +35,4 @@ id: SiliconAntagonist name: role-type-silicon-antagonist-name color: '#c832e6' + diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 958caccfe7..f5eba41c70 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -752,6 +752,12 @@ - type: Tag id: IntercomElectronics +- type: Tag + id: InvalidForGlobalSpawnSpell + +- type: Tag + id: InvalidForSurvivorAntag + - type: Tag id: JawsOfLife From cbecc4cc4b3413f507d3c8612ea3394a783d5dd9 Mon Sep 17 00:00:00 2001 From: pathetic meowmeow Date: Sun, 23 Feb 2025 12:47:13 -0500 Subject: [PATCH 149/155] Use new engine APIs for setting the scroll target of views (#35401) --- .../AtmosAlertsComputerWindow.xaml.cs | 28 ++----------------- .../AtmosMonitoringConsoleWindow.xaml.cs | 24 ++-------------- .../CrewMonitoringWindow.xaml.cs | 23 ++------------- .../PowerMonitoringWindow.xaml.Widgets.cs | 28 ++----------------- 4 files changed, 8 insertions(+), 95 deletions(-) diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs index 81c9a409a3..1268433cab 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs @@ -512,39 +512,15 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow if (scroll == null) return; - if (!TryGetVerticalScrollbar(scroll, out var vScrollbar)) - return; - if (!TryGetNextScrollPosition(out float? nextScrollPosition)) return; - vScrollbar.ValueTarget = nextScrollPosition.Value; + scroll.VScrollTarget = nextScrollPosition.Value; - if (MathHelper.CloseToPercent(vScrollbar.Value, vScrollbar.ValueTarget)) + if (MathHelper.CloseToPercent(scroll.VScroll, scroll.VScrollTarget)) _autoScrollActive = false; } - private bool TryGetVerticalScrollbar(ScrollContainer scroll, [NotNullWhen(true)] out VScrollBar? vScrollBar) - { - vScrollBar = null; - - foreach (var child in scroll.Children) - { - if (child is not VScrollBar) - continue; - - var castChild = child as VScrollBar; - - if (castChild != null) - { - vScrollBar = castChild; - return true; - } - } - - return false; - } - private bool TryGetNextScrollPosition([NotNullWhen(true)] out float? nextScrollPosition) { nextScrollPosition = null; diff --git a/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleWindow.xaml.cs b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleWindow.xaml.cs index 515f91790f..e25c3af9e9 100644 --- a/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleWindow.xaml.cs +++ b/Content.Client/Atmos/Consoles/AtmosMonitoringConsoleWindow.xaml.cs @@ -350,35 +350,15 @@ public sealed partial class AtmosMonitoringConsoleWindow : FancyWindow if (scroll == null) return; - if (!TryGetVerticalScrollbar(scroll, out var vScrollbar)) - return; - if (!TryGetNextScrollPosition(out float? nextScrollPosition)) return; - vScrollbar.ValueTarget = nextScrollPosition.Value; + scroll.VScrollTarget = nextScrollPosition.Value; - if (MathHelper.CloseToPercent(vScrollbar.Value, vScrollbar.ValueTarget)) + if (MathHelper.CloseToPercent(scroll.VScroll, scroll.VScrollTarget)) _autoScrollActive = false; } - private bool TryGetVerticalScrollbar(ScrollContainer scroll, [NotNullWhen(true)] out VScrollBar? vScrollBar) - { - vScrollBar = null; - - foreach (var control in scroll.Children) - { - if (control is not VScrollBar) - continue; - - vScrollBar = (VScrollBar)control; - - return true; - } - - return false; - } - private bool TryGetNextScrollPosition([NotNullWhen(true)] out float? nextScrollPosition) { nextScrollPosition = null; diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs index ac23e8216b..18c54cd231 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs @@ -372,14 +372,11 @@ public sealed partial class CrewMonitoringWindow : FancyWindow if (!_tryToScrollToListFocus) return; - if (!TryGetVerticalScrollbar(SensorScroller, out var vScrollbar)) - return; - if (TryGetNextScrollPosition(out float? nextScrollPosition)) { - vScrollbar.ValueTarget = nextScrollPosition.Value; + SensorScroller.VScrollTarget = nextScrollPosition.Value; - if (MathHelper.CloseToPercent(vScrollbar.Value, vScrollbar.ValueTarget)) + if (MathHelper.CloseToPercent(SensorScroller.VScroll, SensorScroller.VScrollTarget)) { _tryToScrollToListFocus = false; return; @@ -387,22 +384,6 @@ public sealed partial class CrewMonitoringWindow : FancyWindow } } - private bool TryGetVerticalScrollbar(ScrollContainer scroll, [NotNullWhen(true)] out VScrollBar? vScrollBar) - { - vScrollBar = null; - - foreach (var child in scroll.Children) - { - if (child is not VScrollBar) - continue; - - vScrollBar = (VScrollBar) child; - return true; - } - - return false; - } - private bool TryGetNextScrollPosition([NotNullWhen(true)] out float? nextScrollPosition) { nextScrollPosition = 0; diff --git a/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs b/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs index 87b252e9d5..d3671e265a 100644 --- a/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs +++ b/Content.Client/Power/PowerMonitoringWindow.xaml.Widgets.cs @@ -269,27 +269,6 @@ public sealed partial class PowerMonitoringWindow return false; } - private bool TryGetVerticalScrollbar(ScrollContainer scroll, [NotNullWhen(true)] out VScrollBar? vScrollBar) - { - vScrollBar = null; - - foreach (var child in scroll.Children) - { - if (child is not VScrollBar) - continue; - - var castChild = child as VScrollBar; - - if (castChild != null) - { - vScrollBar = castChild; - return true; - } - } - - return false; - } - private void AutoScrollToFocus() { if (!_autoScrollActive) @@ -299,15 +278,12 @@ public sealed partial class PowerMonitoringWindow if (scroll == null) return; - if (!TryGetVerticalScrollbar(scroll, out var vScrollbar)) - return; - if (!TryGetNextScrollPosition(out float? nextScrollPosition)) return; - vScrollbar.ValueTarget = nextScrollPosition.Value; + scroll.VScrollTarget = nextScrollPosition.Value; - if (MathHelper.CloseToPercent(vScrollbar.Value, vScrollbar.ValueTarget)) + if (MathHelper.CloseToPercent(scroll.VScroll, scroll.VScrollTarget)) _autoScrollActive = false; } From fdf19c6a903bab544f5789abfe25d15dddbb042d Mon Sep 17 00:00:00 2001 From: pathetic meowmeow Date: Sun, 23 Feb 2025 13:48:38 -0500 Subject: [PATCH 150/155] Add a tertiary header parser to the guidebook document parser (#35315) --- .../Guidebook/DocumentParsingManager.static.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Content.Client/Guidebook/DocumentParsingManager.static.cs b/Content.Client/Guidebook/DocumentParsingManager.static.cs index 5d25d8f645..3e37942381 100644 --- a/Content.Client/Guidebook/DocumentParsingManager.static.cs +++ b/Content.Client/Guidebook/DocumentParsingManager.static.cs @@ -109,7 +109,17 @@ public sealed partial class DocumentParsingManager .Cast())) .Labelled("subheader"); - private static readonly Parser TryHeaderControl = OneOf(SubHeaderControlParser, HeaderControlParser); + private static readonly Parser TertiaryHeaderControlParser = Try(String("###")) + .Then(SkipWhitespaces.Then(Map(text => new Label + { + Text = text, + StyleClasses = { "LabelKeyText" } + }, + AnyCharExcept('\n').AtLeastOnceString()) + .Cast())) + .Labelled("tertiaryheader"); + + private static readonly Parser TryHeaderControl = OneOf(TertiaryHeaderControlParser, SubHeaderControlParser, HeaderControlParser); private static readonly Parser ListControlParser = Try(Char('-')) .Then(SkipWhitespaces) From 40fbbe3ae4f823fc44fafbb90592cf10c10af1db Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 23 Feb 2025 18:49:44 +0000 Subject: [PATCH 151/155] Automatic changelog update --- Resources/Changelog/Admin.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 674a4cb995..f881848439 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -805,5 +805,12 @@ Entries: id: 100 time: '2025-02-22T17:45:51.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35283 +- author: sowelipililimute + changes: + - message: Added the ability to use tertiary headers in the guidebook + type: Add + id: 101 + time: '2025-02-23T18:48:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35315 Name: Admin Order: 1 From cc74880061a35abbaa5d107edf4d4079434eef5c Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Sun, 23 Feb 2025 20:01:17 +0100 Subject: [PATCH 152/155] version watermark (#35284) * version watermark * force version watermarks on vulture --- Content.Client/Changelog/ChangelogManager.cs | 22 ++++++++++++++++ .../Changelog/ChangelogWindow.xaml.cs | 17 +------------ Content.Client/Gameplay/GameplayState.cs | 25 ++++++++++++++++++- Content.Shared/CCVar/CCVars.Hud.cs | 9 +++++++ Content.Shared/CCVar/CCVars.Server.cs | 6 +++++ .../ConfigPresets/WizardsDen/vulture.toml | 3 ++- 6 files changed, 64 insertions(+), 18 deletions(-) diff --git a/Content.Client/Changelog/ChangelogManager.cs b/Content.Client/Changelog/ChangelogManager.cs index 4383f46617..657d0cb3ac 100644 --- a/Content.Client/Changelog/ChangelogManager.cs +++ b/Content.Client/Changelog/ChangelogManager.cs @@ -1,6 +1,7 @@ using System.Linq; using System.Threading.Tasks; using Content.Shared.CCVar; +using Robust.Shared; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; using Robust.Shared.Serialization.Manager; @@ -125,6 +126,27 @@ namespace Content.Client.Changelog _sawmill = _logManager.GetSawmill(SawmillName); } + /// + /// Tries to return a human-readable version number from the build.json file + /// + public string GetClientVersion() + { + var fork = _configManager.GetCVar(CVars.BuildForkId); + var version = _configManager.GetCVar(CVars.BuildVersion); + + // This trimming might become annoying if down the line some codebases want to switch to a real + // version format like "104.11.3" while others are still using the git hashes + if (version.Length > 7) + version = version[..7]; + + if (string.IsNullOrEmpty(version) || string.IsNullOrEmpty(fork)) + return Loc.GetString("changelog-version-unknown"); + + return Loc.GetString("changelog-version-tag", + ("fork", fork), + ("version", version)); + } + [DataDefinition] public sealed partial class Changelog { diff --git a/Content.Client/Changelog/ChangelogWindow.xaml.cs b/Content.Client/Changelog/ChangelogWindow.xaml.cs index cb07e16a9c..0b1afcbb0a 100644 --- a/Content.Client/Changelog/ChangelogWindow.xaml.cs +++ b/Content.Client/Changelog/ChangelogWindow.xaml.cs @@ -70,22 +70,7 @@ namespace Content.Client.Changelog Tabs.SetTabTitle(i++, Loc.GetString($"changelog-tab-title-{changelog.Name}")); } - // Try to get the current version from the build.json file - var version = _cfg.GetCVar(CVars.BuildVersion); - var forkId = _cfg.GetCVar(CVars.BuildForkId); - - var versionText = Loc.GetString("changelog-version-unknown"); - - // Make sure these aren't empty, like in a dev env - if (!string.IsNullOrEmpty(version) && !string.IsNullOrEmpty(forkId)) - { - versionText = Loc.GetString("changelog-version-tag", - ("fork", forkId), - ("version", version[..7])); // Only show the first 7 characters - } - - // if else statements are ugly, shut up - VersionLabel.Text = versionText; + VersionLabel.Text = _changelog.GetClientVersion(); TabsUpdated(); } diff --git a/Content.Client/Gameplay/GameplayState.cs b/Content.Client/Gameplay/GameplayState.cs index 1efee978f3..427dd5c071 100644 --- a/Content.Client/Gameplay/GameplayState.cs +++ b/Content.Client/Gameplay/GameplayState.cs @@ -1,3 +1,5 @@ +using System.Numerics; +using Content.Client.Changelog; using Content.Client.Hands; using Content.Client.UserInterface.Controls; using Content.Client.UserInterface.Screens; @@ -7,6 +9,7 @@ using Content.Shared.CCVar; using Robust.Client.Graphics; using Robust.Client.Input; using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Shared.Configuration; using Robust.Shared.Timing; @@ -20,9 +23,11 @@ namespace Content.Client.Gameplay [Dependency] private readonly IOverlayManager _overlayManager = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IUserInterfaceManager _uiManager = default!; + [Dependency] private readonly ChangelogManager _changelog = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; private FpsCounter _fpsCounter = default!; + private Label _version = default!; public MainViewport Viewport => _uiManager.ActiveScreen!.GetWidget()!; @@ -40,6 +45,7 @@ namespace Content.Client.Gameplay base.Startup(); LoadMainScreen(); + _configurationManager.OnValueChanged(CCVars.UILayout, ReloadMainScreenValueChange); // Add the hand-item overlay. _overlayManager.AddOverlay(new ShowHandItemOverlay()); @@ -50,7 +56,24 @@ namespace Content.Client.Gameplay UserInterfaceManager.PopupRoot.AddChild(_fpsCounter); _fpsCounter.Visible = _configurationManager.GetCVar(CCVars.HudFpsCounterVisible); _configurationManager.OnValueChanged(CCVars.HudFpsCounterVisible, (show) => { _fpsCounter.Visible = show; }); - _configurationManager.OnValueChanged(CCVars.UILayout, ReloadMainScreenValueChange); + + // Version number watermark. + _version = new Label(); + _version.Text = _changelog.GetClientVersion(); + _version.Visible = VersionVisible(); + UserInterfaceManager.PopupRoot.AddChild(_version); + _configurationManager.OnValueChanged(CCVars.HudVersionWatermark, (show) => { _version.Visible = VersionVisible(); }); + _configurationManager.OnValueChanged(CCVars.ForceClientHudVersionWatermark, (show) => { _version.Visible = VersionVisible(); }); + // TODO make this centered or something + LayoutContainer.SetPosition(_version, new Vector2(800, 0)); + } + + // This allows servers to force the watermark on clients + private bool VersionVisible() + { + var client = _configurationManager.GetCVar(CCVars.HudVersionWatermark); + var server = _configurationManager.GetCVar(CCVars.ForceClientHudVersionWatermark); + return client || server; } protected override void Shutdown() diff --git a/Content.Shared/CCVar/CCVars.Hud.cs b/Content.Shared/CCVar/CCVars.Hud.cs index f96924b349..c435f07cbe 100644 --- a/Content.Shared/CCVar/CCVars.Hud.cs +++ b/Content.Shared/CCVar/CCVars.Hud.cs @@ -19,6 +19,15 @@ public sealed partial class CCVars public static readonly CVarDef HudHeldItemOffset = CVarDef.Create("hud.held_item_offset", 28f, CVar.ARCHIVE | CVar.CLIENTONLY); + /// + /// Displays framerate counter + /// public static readonly CVarDef HudFpsCounterVisible = CVarDef.Create("hud.fps_counter_visible", false, CVar.CLIENTONLY | CVar.ARCHIVE); + + /// + /// Displays the fork ID and version number + /// + public static readonly CVarDef HudVersionWatermark = + CVarDef.Create("hud.version_watermark", false, CVar.CLIENTONLY | CVar.ARCHIVE); } diff --git a/Content.Shared/CCVar/CCVars.Server.cs b/Content.Shared/CCVar/CCVars.Server.cs index 88e7b251ba..aad6d0a808 100644 --- a/Content.Shared/CCVar/CCVars.Server.cs +++ b/Content.Shared/CCVar/CCVars.Server.cs @@ -53,4 +53,10 @@ public sealed partial class CCVars /// public static readonly CVarDef ServerLobbyRightPanelWidth = CVarDef.Create("server.lobby_right_panel_width", 650, CVar.REPLICATED | CVar.SERVER); + + /// + /// Forces clients to display version watermark, as if HudVersionWatermark was true + /// + public static readonly CVarDef ForceClientHudVersionWatermark = + CVarDef.Create("server.force_client_hud_version_watermark", false, CVar.REPLICATED | CVar.SERVER); } diff --git a/Resources/ConfigPresets/WizardsDen/vulture.toml b/Resources/ConfigPresets/WizardsDen/vulture.toml index ab1d8459f3..8eccfa48e1 100644 --- a/Resources/ConfigPresets/WizardsDen/vulture.toml +++ b/Resources/ConfigPresets/WizardsDen/vulture.toml @@ -10,6 +10,7 @@ tags = "lang:en,region:am_n_e,rp:low" [server] # This needs to be specified even though it's identical to the hostname, because fallback lobby name is "Lobby " which would be too long and go out of bounds lobby_name = "[EN][Testing] Wizard's Den Vulture [US East 2]" +force_client_hud_version_watermark = true [chat] -motd = "\n########################################################\n\n[font size=17]This is a test server. You can play with the newest changes to the game, but these [color=red]changes may not be final or stable[/color], and may be reverted. Please report bugs via our GitHub, forum, or community Discord.[/font]\n\n########################################################\n" \ No newline at end of file +motd = "\n########################################################\n\n[font size=17]This is a test server. You can play with the newest changes to the game, but these [color=red]changes may not be final or stable[/color], and may be reverted. Please report bugs via our GitHub, forum, or community Discord.[/font]\n\n########################################################\n" From 9f4d6abd308976469250db4071c52c4789479aa5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 23 Feb 2025 19:02:23 +0000 Subject: [PATCH 153/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e72366bf0a..99558f2205 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ss14nekow - changes: - - message: Added pumpkin pie! Can be made in the microwave with 1 pie tin, 1 pie - dough, and 1 pumpkin. - type: Add - id: 7496 - time: '2024-10-08T23:29:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32623 - author: Beck Thompson changes: - message: The radio jammers price has been decreased from 4 -> 3 TC. @@ -3902,3 +3894,11 @@ id: 7995 time: '2025-02-23T15:24:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34105 +- author: Errant + changes: + - message: The game version can now be displayed as an optional watermark on the + hud. Servers can force this watermark to be displayed. + type: Add + id: 7996 + time: '2025-02-23T19:01:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35284 From 3e7450802b22c2b777845ccc2a00c3adbec6591f Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sun, 23 Feb 2025 19:29:15 +0000 Subject: [PATCH 154/155] fix chameleon projector ripley bug (#35070) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Systems/SharedChameleonProjectorSystem.cs | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs index 99737996b0..d8f0fc022f 100644 --- a/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs +++ b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs @@ -44,6 +44,8 @@ public abstract class SharedChameleonProjectorSystem : EntitySystem SubscribeLocalEvent(OnDisguiseInsertAttempt); SubscribeLocalEvent(OnDisguiseShutdown); + SubscribeLocalEvent(OnDisguisedInserted); + SubscribeLocalEvent(OnInteract); SubscribeLocalEvent>(OnGetVerbs); SubscribeLocalEvent(OnToggleNoRot); @@ -72,6 +74,7 @@ public abstract class SharedChameleonProjectorSystem : EntitySystem { // stay parented to the user, not the storage args.Cancelled = true; + TryReveal(ent.Comp.User); } private void OnDisguiseShutdown(Entity ent, ref ComponentShutdown args) @@ -81,6 +84,16 @@ public abstract class SharedChameleonProjectorSystem : EntitySystem #endregion + #region Disguised player + + private void OnDisguisedInserted(Entity ent, ref EntGotInsertedIntoContainerMessage args) + { + // prevent player going into locker/mech/etc while disguised + TryReveal((ent, ent)); + } + + #endregion + #region Projector private void OnInteract(Entity ent, ref AfterInteractEvent args) @@ -111,7 +124,7 @@ public abstract class SharedChameleonProjectorSystem : EntitySystem public bool TryDisguise(Entity ent, EntityUid user, EntityUid target) { - if (_container.IsEntityInContainer(target)) + if (_container.IsEntityInContainer(target) || _container.IsEntityInContainer(user)) { _popup.PopupClient(Loc.GetString("chameleon-projector-inside-container"), target, user); return false; From 408c6ab443d2fcd6b14efcd4a8fe1af4364331df Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 23 Feb 2025 19:30:21 +0000 Subject: [PATCH 155/155] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 99558f2205..ebe02e5f17 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Beck Thompson - changes: - - message: The radio jammers price has been decreased from 4 -> 3 TC. - type: Tweak - id: 7497 - time: '2024-10-09T12:44:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32472 - author: beck-thompson, Moomoobeef changes: - message: Plushies now can have small items stuffed inside of them! To open, click @@ -3902,3 +3895,10 @@ id: 7996 time: '2025-02-23T19:01:17.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35284 +- author: deltanedas + changes: + - message: Entering a mech or other container now ends chameleon projections. + type: Fix + id: 7997 + time: '2025-02-23T19:29:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35070